Compare commits
8 Commits
f79de85d43
...
master
Author | SHA1 | Date | |
---|---|---|---|
dd1ea7c276
|
|||
8c9af693e7
|
|||
23210af0c3
|
|||
8133953bb1
|
|||
8cc556024f
|
|||
c01c342945
|
|||
8b232c5ef5
|
|||
d6ca2d7921
|
21
Makefile
21
Makefile
@ -4,12 +4,16 @@ BINDIR=$(CURDIR)/bin
|
|||||||
PREFIX=/usr
|
PREFIX=/usr
|
||||||
DESTDIR=bin
|
DESTDIR=bin
|
||||||
BUILDDIR=$(CURDIR)/build
|
BUILDDIR=$(CURDIR)/build
|
||||||
|
MANDIR=$(PREFIX)/share/man/man1
|
||||||
|
|
||||||
|
PKGREVISION=1
|
||||||
|
|
||||||
DEBBUILDDIR=$(BUILDDIR)/deb
|
DEBBUILDDIR=$(BUILDDIR)/deb
|
||||||
DEBTMPLDIR=$(CURDIR)/packaging/debian
|
DEBTMPLDIR=$(CURDIR)/packaging/debian
|
||||||
DEBDATE=$(shell date -R)
|
DEBDATE=$(shell date -R)
|
||||||
DEBORIGSRC=lume_$(DEBVERSION).orig.tar.xz
|
DEBORIGSRC=lume_$(DEBVERSION).orig.tar.xz
|
||||||
DEBORIGSRCDIR=lume-$(DEBVERSION)
|
DEBORIGSRCDIR=lume-$(DEBVERSION)
|
||||||
|
DEBREVISION=$(PKGREVISION)
|
||||||
|
|
||||||
RPMVERSION=$(subst -,_,$(LUME_VERSION))
|
RPMVERSION=$(subst -,_,$(LUME_VERSION))
|
||||||
RPMBUILDDIR=$(BUILDDIR)/rpm
|
RPMBUILDDIR=$(BUILDDIR)/rpm
|
||||||
@ -17,6 +21,7 @@ RPMTMPLDIR=$(CURDIR)/packaging/rpm
|
|||||||
RPMDATE=$(shell date "+%a %b %d %Y")
|
RPMDATE=$(shell date "+%a %b %d %Y")
|
||||||
RPMORIGSRC=lume-$(RPMVERSION).tar.xz
|
RPMORIGSRC=lume-$(RPMVERSION).tar.xz
|
||||||
RPMORIGSRCDIR=lume-$(RPMVERSION)
|
RPMORIGSRCDIR=lume-$(RPMVERSION)
|
||||||
|
RPMREVISION=$(PKGREVISION)
|
||||||
|
|
||||||
ifeq ($(OS), Windows_NT)
|
ifeq ($(OS), Windows_NT)
|
||||||
EXE=$(BINDIR)/lume.exe
|
EXE=$(BINDIR)/lume.exe
|
||||||
@ -50,25 +55,29 @@ build:
|
|||||||
clean: deb-clean rpm-clean
|
clean: deb-clean rpm-clean
|
||||||
$(Q) $(RM) $(EXE)
|
$(Q) $(RM) $(EXE)
|
||||||
|
|
||||||
|
install-man:
|
||||||
|
install -p -D -m 0644 lume.1 $(DESTDIR)$(MANDIR)/lume.1
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install:
|
install: install-man
|
||||||
$(Q) install -p -D -m 0755 $(EXE) $(DESTDIR)${PREFIX}/bin/lume
|
$(Q) install -p -D -m 0755 $(EXE) $(DESTDIR)${PREFIX}/bin/lume
|
||||||
$(Q) install -p -D -m 0644 .lumerc.sample $(DESTDIR)${PREFIX}/share/lume/lumerc
|
$(Q) install -p -D -m 0644 .lumerc.sample $(DESTDIR)${PREFIX}/share/lume/lumerc
|
||||||
|
|
||||||
.PHONY: deb
|
.PHONY: deb
|
||||||
deb:
|
deb: deb-clean
|
||||||
$(Q) mkdir -p $(DEBBUILDDIR)
|
$(Q) mkdir -p $(DEBBUILDDIR)
|
||||||
$(Q) git archive --format tar --prefix lume-$(DEBVERSION)/ $(LUME_VERSION) | xz > $(DEBBUILDDIR)/$(DEBORIGSRC)
|
$(Q) git archive --format tar --prefix lume-$(DEBVERSION)/ $(LUME_VERSION) | xz > $(DEBBUILDDIR)/$(DEBORIGSRC)
|
||||||
$(Q) tar xf $(DEBBUILDDIR)/$(DEBORIGSRC) -C $(DEBBUILDDIR)
|
$(Q) tar xf $(DEBBUILDDIR)/$(DEBORIGSRC) -C $(DEBBUILDDIR)
|
||||||
$(Q) mkdir $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian
|
$(Q) mkdir $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian
|
||||||
$(Q) mkdir $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/source
|
$(Q) mkdir $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/source
|
||||||
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' $(DEBTMPLDIR)/rules > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/rules
|
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' -e 's/__REVISION__/$(DEBREVISION)/g' $(DEBTMPLDIR)/rules > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/rules
|
||||||
$(Q) chmod 0755 $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/rules
|
$(Q) chmod 0755 $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/rules
|
||||||
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' -e 's/__DATE__/$(DEBDATE)/g' $(DEBTMPLDIR)/changelog > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/changelog
|
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' -e 's/__DATE__/$(DEBDATE)/g' -e 's/__REVISION__/$(DEBREVISION)/g' $(DEBTMPLDIR)/changelog > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/changelog
|
||||||
$(Q) echo 10 > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/compat
|
$(Q) echo 10 > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/compat
|
||||||
$(Q) echo "3.0 (quilt)" > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/source/format
|
$(Q) echo "3.0 (quilt)" > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/source/format
|
||||||
$(Q) cp $(DEBTMPLDIR)/control $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/control
|
$(Q) cp $(DEBTMPLDIR)/control $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/control
|
||||||
$(Q) cp $(DEBTMPLDIR)/copyright $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/copyright
|
$(Q) cp $(DEBTMPLDIR)/copyright $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/copyright
|
||||||
|
$(Q) cp $(DEBTMPLDIR)/lume.manpages $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/lume.manpages
|
||||||
$(Q) cd $(DEBBUILDDIR)/$(DEBORIGSRCDIR) && dpkg-buildpackage -us -uc
|
$(Q) cd $(DEBBUILDDIR)/$(DEBORIGSRCDIR) && dpkg-buildpackage -us -uc
|
||||||
$(Q) mv $(DEBBUILDDIR)/*.dsc $(BUILDDIR)
|
$(Q) mv $(DEBBUILDDIR)/*.dsc $(BUILDDIR)
|
||||||
$(Q) mv $(DEBBUILDDIR)/*.changes $(BUILDDIR)
|
$(Q) mv $(DEBBUILDDIR)/*.changes $(BUILDDIR)
|
||||||
@ -77,10 +86,10 @@ deb:
|
|||||||
$(Q) mv $(DEBBUILDDIR)/*.tar.* $(BUILDDIR)
|
$(Q) mv $(DEBBUILDDIR)/*.tar.* $(BUILDDIR)
|
||||||
|
|
||||||
.PHONY: rpm
|
.PHONY: rpm
|
||||||
rpm:
|
rpm: rpm-clean
|
||||||
$(Q) mkdir -p $(RPMBUILDDIR)/SPECS
|
$(Q) mkdir -p $(RPMBUILDDIR)/SPECS
|
||||||
$(Q) mkdir -p $(RPMBUILDDIR)/SOURCES
|
$(Q) mkdir -p $(RPMBUILDDIR)/SOURCES
|
||||||
$(Q) sed -e 's/__VERSION__/$(RPMVERSION)/g' -e 's/__DATE__/$(RPMDATE)/g' $(RPMTMPLDIR)/lume.spec > $(RPMBUILDDIR)/SPECS/lume.spec
|
$(Q) sed -e 's/__VERSION__/$(RPMVERSION)/g' -e 's/__DATE__/$(RPMDATE)/g' -e 's/__REVISION__/$(RPMREVISION)/g' $(RPMTMPLDIR)/lume.spec > $(RPMBUILDDIR)/SPECS/lume.spec
|
||||||
$(Q) git archive --format tar --prefix $(RPMORIGSRCDIR)/ $(LUME_VERSION) | xz > $(RPMBUILDDIR)/SOURCES/$(RPMORIGSRC)
|
$(Q) git archive --format tar --prefix $(RPMORIGSRCDIR)/ $(LUME_VERSION) | xz > $(RPMBUILDDIR)/SOURCES/$(RPMORIGSRC)
|
||||||
$(Q) rpmbuild --define "_topdir $(RPMBUILDDIR)" -ba $(RPMBUILDDIR)/SPECS/lume.spec
|
$(Q) rpmbuild --define "_topdir $(RPMBUILDDIR)" -ba $(RPMBUILDDIR)/SPECS/lume.spec
|
||||||
$(Q) mv $(RPMBUILDDIR)/RPMS/*/*.rpm $(BUILDDIR)
|
$(Q) mv $(RPMBUILDDIR)/RPMS/*/*.rpm $(BUILDDIR)
|
||||||
|
@ -2,6 +2,7 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"git.kill0.net/chill9/lifx-go"
|
"git.kill0.net/chill9/lifx-go"
|
||||||
)
|
)
|
||||||
@ -16,7 +17,8 @@ func NewCmdBreathe() Command {
|
|||||||
selector := fs.String("selector", defaultSelector, "Set the selector")
|
selector := fs.String("selector", defaultSelector, "Set the selector")
|
||||||
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
|
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
|
||||||
|
|
||||||
fs.String("color", defaultColor, "The color to use for the breathe effect")
|
color := fs.String("color", defaultColor, "The color to use for the breathe effect")
|
||||||
|
fs.StringVar(color, "c", defaultColor, "The color to use for the breathe effect")
|
||||||
|
|
||||||
fs.String("from-color", defaultColor, "The color to start the effect from")
|
fs.String("from-color", defaultColor, "The color to start the effect from")
|
||||||
|
|
||||||
@ -101,7 +103,7 @@ func BreatheCmd(ctx Context) (int, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Results(r.Results)
|
fmt.Print(p.Results(r.Results))
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
48
cmd/help.go
48
cmd/help.go
@ -3,6 +3,7 @@ package lumecmd
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"sort"
|
"sort"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewCmdHelp() Command {
|
func NewCmdHelp() Command {
|
||||||
@ -16,15 +17,21 @@ func NewCmdHelp() Command {
|
|||||||
|
|
||||||
func HelpCmd(ctx Context) (int, error) {
|
func HelpCmd(ctx Context) (int, error) {
|
||||||
if len(ctx.Args) == 0 {
|
if len(ctx.Args) == 0 {
|
||||||
printHelp(commandRegistry)
|
fmt.Print(printHelp(commandRegistry))
|
||||||
} else if len(ctx.Args) >= 1 {
|
} else if len(ctx.Args) >= 1 {
|
||||||
printCmdHelp(ctx.Args[0])
|
if cmdHelp, err := printCmdHelp(ctx.Args[0]); err == nil {
|
||||||
|
fmt.Print(cmdHelp)
|
||||||
|
} else {
|
||||||
|
fmt.Print(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func printHelp(commands map[string]Command) {
|
func printHelp(commands map[string]Command) string {
|
||||||
|
var b strings.Builder
|
||||||
|
|
||||||
var maxLen, cmdLen int
|
var maxLen, cmdLen int
|
||||||
var keys []string
|
var keys []string
|
||||||
|
|
||||||
@ -36,34 +43,45 @@ func printHelp(commands map[string]Command) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("usage:\n lume <command> [<args...>]")
|
fmt.Fprintf(&b, "usage:\n lume <command> [<args...>]")
|
||||||
fmt.Println()
|
fmt.Fprintln(&b)
|
||||||
fmt.Println("\ncommands:")
|
fmt.Fprintln(&b, "\ncommands:")
|
||||||
|
|
||||||
sort.Strings(keys)
|
sort.Strings(keys)
|
||||||
|
|
||||||
for _, k := range keys {
|
for _, k := range keys {
|
||||||
c := commands[k]
|
c := commands[k]
|
||||||
fmt.Printf(" %-*s %s\n", maxLen, c.Name, c.Short)
|
fmt.Fprintf(&b, " %-*s %s\n", maxLen, c.Name, c.Short)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func printCmdHelp(name string) error {
|
return b.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
func printCmdHelp(name string) (string, error) {
|
||||||
|
var b strings.Builder
|
||||||
|
|
||||||
subCmd, ok := commandRegistry[name]
|
subCmd, ok := commandRegistry[name]
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return fmt.Errorf("unknown commnnd: %s\n", name)
|
return "", fmt.Errorf("unknown commnnd: %s\n", name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if subCmd.Use != "" {
|
if subCmd.Use != "" {
|
||||||
fmt.Printf("usage:\n lume %s %s\n", subCmd.Name, subCmd.Use)
|
fmt.Fprintf(&b, "usage:\n lume %s %s\n", subCmd.Name, subCmd.Use)
|
||||||
} else {
|
} else {
|
||||||
fmt.Printf("usage:\n lume %s\n", subCmd.Name)
|
fmt.Fprintf(&b, "usage:\n lume %s\n", subCmd.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if subCmd.Flags != nil {
|
if subCmd.Flags != nil {
|
||||||
fmt.Println()
|
out := subCmd.Flags.Output()
|
||||||
fmt.Print("flags:\n")
|
defer subCmd.Flags.SetOutput(out)
|
||||||
|
|
||||||
|
fmt.Fprintln(&b)
|
||||||
|
fmt.Fprint(&b, "flags:\n")
|
||||||
|
|
||||||
|
subCmd.Flags.SetOutput(&b)
|
||||||
subCmd.Flags.PrintDefaults()
|
subCmd.Flags.PrintDefaults()
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return b.String(), nil
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewCmdLs() Command {
|
func NewCmdLs() Command {
|
||||||
@ -42,7 +43,7 @@ func LsCmd(ctx Context) (int, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Lights(lights)
|
fmt.Print(p.Lights(lights))
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@ func init() {
|
|||||||
RegisterCommand(NewCmdToggle())
|
RegisterCommand(NewCmdToggle())
|
||||||
RegisterCommand(NewCmdVersion())
|
RegisterCommand(NewCmdVersion())
|
||||||
RegisterCommand(NewCmdBreathe())
|
RegisterCommand(NewCmdBreathe())
|
||||||
|
RegisterCommand(NewCmdValidate())
|
||||||
}
|
}
|
||||||
|
|
||||||
var Version string
|
var Version string
|
||||||
|
@ -2,6 +2,7 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"git.kill0.net/chill9/lifx-go"
|
"git.kill0.net/chill9/lifx-go"
|
||||||
)
|
)
|
||||||
@ -48,7 +49,7 @@ func PoweroffCmd(ctx Context) (int, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Results(r.Results)
|
fmt.Print(p.Results(r.Results))
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"git.kill0.net/chill9/lifx-go"
|
"git.kill0.net/chill9/lifx-go"
|
||||||
)
|
)
|
||||||
@ -48,7 +49,7 @@ func PoweronCmd(ctx Context) (int, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Results(r.Results)
|
fmt.Print(p.Results(r.Results))
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
48
cmd/print.go
48
cmd/print.go
@ -2,7 +2,8 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"io"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.kill0.net/chill9/lifx-go"
|
"git.kill0.net/chill9/lifx-go"
|
||||||
@ -11,8 +12,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Printer interface {
|
type Printer interface {
|
||||||
Results(results []lifx.Result)
|
Results(results []lifx.Result) string
|
||||||
Lights(lights []lifx.Light)
|
Lights(lights []lifx.Light) string
|
||||||
}
|
}
|
||||||
|
|
||||||
type defaultPrinter struct{}
|
type defaultPrinter struct{}
|
||||||
@ -28,17 +29,19 @@ func NewPrinter(format string) Printer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (dp *defaultPrinter) Results(results []lifx.Result) {
|
func (dp *defaultPrinter) Results(results []lifx.Result) string {
|
||||||
|
var b strings.Builder
|
||||||
|
|
||||||
sortResults(results)
|
sortResults(results)
|
||||||
|
|
||||||
table := tablewriter.NewWriter(os.Stdout)
|
table := tablewriter.NewWriter(&b)
|
||||||
_, rows := makeResultsTable(results)
|
_, rows := makeResultsTable(results)
|
||||||
|
|
||||||
for _, v := range rows {
|
for _, v := range rows {
|
||||||
table.Append(v)
|
table.Append(v)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("total %d\n", len(results))
|
fmt.Fprintf(&b, "total %d\n", len(results))
|
||||||
table.SetAlignment(tablewriter.ALIGN_LEFT)
|
table.SetAlignment(tablewriter.ALIGN_LEFT)
|
||||||
table.SetAutoWrapText(false)
|
table.SetAutoWrapText(false)
|
||||||
table.SetBorder(false)
|
table.SetBorder(false)
|
||||||
@ -49,12 +52,16 @@ func (dp *defaultPrinter) Results(results []lifx.Result) {
|
|||||||
table.SetRowSeparator("")
|
table.SetRowSeparator("")
|
||||||
table.SetTablePadding(" ")
|
table.SetTablePadding(" ")
|
||||||
table.Render()
|
table.Render()
|
||||||
|
|
||||||
|
return b.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tp *tablePrinter) Results(results []lifx.Result) {
|
func (tp *tablePrinter) Results(results []lifx.Result) string {
|
||||||
|
var b strings.Builder
|
||||||
|
|
||||||
sortResults(results)
|
sortResults(results)
|
||||||
|
|
||||||
table := tablewriter.NewWriter(os.Stdout)
|
table := tablewriter.NewWriter(&b)
|
||||||
hdr, rows := makeResultsTable(results)
|
hdr, rows := makeResultsTable(results)
|
||||||
|
|
||||||
for _, v := range rows {
|
for _, v := range rows {
|
||||||
@ -63,19 +70,23 @@ func (tp *tablePrinter) Results(results []lifx.Result) {
|
|||||||
|
|
||||||
table.SetHeader(hdr)
|
table.SetHeader(hdr)
|
||||||
table.Render()
|
table.Render()
|
||||||
|
|
||||||
|
return b.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (dp *defaultPrinter) Lights(lights []lifx.Light) {
|
func (dp *defaultPrinter) Lights(lights []lifx.Light) string {
|
||||||
|
var b strings.Builder
|
||||||
|
|
||||||
sortLights(lights)
|
sortLights(lights)
|
||||||
|
|
||||||
table := tablewriter.NewWriter(os.Stdout)
|
table := tablewriter.NewWriter(&b)
|
||||||
_, rows := makeLightsTable(lights)
|
_, rows := makeLightsTable(lights)
|
||||||
|
|
||||||
for _, v := range rows {
|
for _, v := range rows {
|
||||||
table.Append(v)
|
table.Append(v)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("total %d\n", len(lights))
|
fmt.Fprintf(&b, "total %d\n", len(lights))
|
||||||
table.SetAlignment(tablewriter.ALIGN_LEFT)
|
table.SetAlignment(tablewriter.ALIGN_LEFT)
|
||||||
table.SetAutoWrapText(false)
|
table.SetAutoWrapText(false)
|
||||||
table.SetBorder(false)
|
table.SetBorder(false)
|
||||||
@ -86,12 +97,16 @@ func (dp *defaultPrinter) Lights(lights []lifx.Light) {
|
|||||||
table.SetRowSeparator("")
|
table.SetRowSeparator("")
|
||||||
table.SetTablePadding(" ")
|
table.SetTablePadding(" ")
|
||||||
table.Render()
|
table.Render()
|
||||||
|
|
||||||
|
return b.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tp *tablePrinter) Lights(lights []lifx.Light) {
|
func (tp *tablePrinter) Lights(lights []lifx.Light) string {
|
||||||
|
var b strings.Builder
|
||||||
|
|
||||||
sortLights(lights)
|
sortLights(lights)
|
||||||
|
|
||||||
table := tablewriter.NewWriter(os.Stdout)
|
table := tablewriter.NewWriter(&b)
|
||||||
hdr, rows := makeLightsTable(lights)
|
hdr, rows := makeLightsTable(lights)
|
||||||
|
|
||||||
for _, v := range rows {
|
for _, v := range rows {
|
||||||
@ -100,6 +115,8 @@ func (tp *tablePrinter) Lights(lights []lifx.Light) {
|
|||||||
|
|
||||||
table.SetHeader(hdr)
|
table.SetHeader(hdr)
|
||||||
table.Render()
|
table.Render()
|
||||||
|
|
||||||
|
return b.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func ColorizeIndicator(s string) string {
|
func ColorizeIndicator(s string) string {
|
||||||
@ -138,6 +155,11 @@ func PrintfWithIndent(indent int, format string, a ...interface{}) (n int, err e
|
|||||||
return fmt.Printf(format, a...)
|
return fmt.Printf(format, a...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func FprintfWithIndent(w io.Writer, indent int, format string, a ...interface{}) (n int, err error) {
|
||||||
|
format = fmt.Sprintf("%*s%s", indent, "", format)
|
||||||
|
return fmt.Fprintf(w, format, a...)
|
||||||
|
}
|
||||||
|
|
||||||
func makeLightsTable(lights []lifx.Light) (hdr []string, rows [][]string) {
|
func makeLightsTable(lights []lifx.Light) (hdr []string, rows [][]string) {
|
||||||
hdr = []string{"", "ID", "Location", "Group", "Label", "Last Seen", "Power"}
|
hdr = []string{"", "ID", "Location", "Group", "Label", "Last Seen", "Power"}
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ func SetColorCmd(ctx Context) (int, error) {
|
|||||||
|
|
||||||
if !fast {
|
if !fast {
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Results(r.Results)
|
fmt.Print(p.Results(r.Results))
|
||||||
}
|
}
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
|
@ -2,6 +2,7 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"git.kill0.net/chill9/lifx-go"
|
"git.kill0.net/chill9/lifx-go"
|
||||||
)
|
)
|
||||||
@ -96,7 +97,7 @@ func SetStateCmd(ctx Context) (int, error) {
|
|||||||
|
|
||||||
if !fast {
|
if !fast {
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Results(r.Results)
|
fmt.Print(p.Results(r.Results))
|
||||||
}
|
}
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
|
@ -2,6 +2,7 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"git.kill0.net/chill9/lifx-go"
|
"git.kill0.net/chill9/lifx-go"
|
||||||
)
|
)
|
||||||
@ -114,7 +115,7 @@ func SetWhiteCmd(ctx Context) (int, error) {
|
|||||||
|
|
||||||
if !fast {
|
if !fast {
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Results(r.Results)
|
fmt.Print(p.Results(r.Results))
|
||||||
}
|
}
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
|
60
cmd/show.go
60
cmd/show.go
@ -3,6 +3,7 @@ package lumecmd
|
|||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const Tabstop int = 2
|
const Tabstop int = 2
|
||||||
@ -26,6 +27,8 @@ func NewCmdShow() Command {
|
|||||||
|
|
||||||
func ShowCmd(ctx Context) (int, error) {
|
func ShowCmd(ctx Context) (int, error) {
|
||||||
var indent int
|
var indent int
|
||||||
|
var b strings.Builder
|
||||||
|
|
||||||
c := ctx.Client
|
c := ctx.Client
|
||||||
selector := ctx.Flags.String("selector")
|
selector := ctx.Flags.String("selector")
|
||||||
lights, err := c.ListLights(selector)
|
lights, err := c.ListLights(selector)
|
||||||
@ -38,7 +41,8 @@ func ShowCmd(ctx Context) (int, error) {
|
|||||||
|
|
||||||
for i, l := range lights {
|
for i, l := range lights {
|
||||||
indent = 0
|
indent = 0
|
||||||
fmt.Printf(
|
fmt.Fprintf(
|
||||||
|
&b,
|
||||||
"%s Light ID: %s, %s, Power: %s\n",
|
"%s Light ID: %s, %s, Power: %s\n",
|
||||||
ColorizeIndicator(l.Power),
|
ColorizeIndicator(l.Power),
|
||||||
l.Id,
|
l.Id,
|
||||||
@ -46,41 +50,43 @@ func ShowCmd(ctx Context) (int, error) {
|
|||||||
ColorizePower(l.Power),
|
ColorizePower(l.Power),
|
||||||
)
|
)
|
||||||
indent += Tabstop + 2
|
indent += Tabstop + 2
|
||||||
PrintfWithIndent(indent, "Label: %s, ID: %s\n", l.Label, l.Id)
|
FprintfWithIndent(&b, indent, "Label: %s, ID: %s\n", l.Label, l.Id)
|
||||||
PrintfWithIndent(indent, "UUID: %s\n", l.UUID)
|
FprintfWithIndent(&b, indent, "UUID: %s\n", l.UUID)
|
||||||
PrintfWithIndent(indent, "Location: %s, ID: %s\n", l.Location.Name, l.Location.Id)
|
FprintfWithIndent(&b, indent, "Location: %s, ID: %s\n", l.Location.Name, l.Location.Id)
|
||||||
PrintfWithIndent(indent, "Group: %s, ID: %s\n", l.Group.Name, l.Group.Id)
|
FprintfWithIndent(&b, indent, "Group: %s, ID: %s\n", l.Group.Name, l.Group.Id)
|
||||||
PrintfWithIndent(indent, "Color: Hue: %.1f, Saturation: %.1f%%, Kelvin: %d\n",
|
FprintfWithIndent(&b, indent, "Color: Hue: %.1f, Saturation: %.1f%%, Kelvin: %d\n",
|
||||||
*l.Color.H, *l.Color.S, *l.Color.K)
|
*l.Color.H, *l.Color.S, *l.Color.K)
|
||||||
PrintfWithIndent(indent, "Brightness: %.1f%%\n", l.Brightness*100)
|
FprintfWithIndent(&b, indent, "Brightness: %.1f%%\n", l.Brightness*100)
|
||||||
if l.Effect != "" {
|
if l.Effect != "" {
|
||||||
PrintfWithIndent(indent, "Effect: %s\n", l.Effect)
|
FprintfWithIndent(&b, indent, "Effect: %s\n", l.Effect)
|
||||||
}
|
}
|
||||||
PrintfWithIndent(indent, "Product: %s\n", l.Product.Name)
|
FprintfWithIndent(&b, indent, "Product: %s\n", l.Product.Name)
|
||||||
PrintfWithIndent(indent, "Capabilities: ")
|
FprintfWithIndent(&b, indent, "Capabilities: ")
|
||||||
fmt.Printf("Color: %s, ", YesNo(l.Product.Capabilities.HasColor))
|
fmt.Fprintf(&b, "Color: %s, ", YesNo(l.Product.Capabilities.HasColor))
|
||||||
fmt.Printf("Variable Color Temp: %s, ", YesNo(l.Product.Capabilities.HasVariableColorTemp))
|
fmt.Fprintf(&b, "Variable Color Temp: %s, ", YesNo(l.Product.Capabilities.HasVariableColorTemp))
|
||||||
fmt.Printf("IR: %s, ", YesNo(l.Product.Capabilities.HasIR))
|
fmt.Fprintf(&b, "IR: %s, ", YesNo(l.Product.Capabilities.HasIR))
|
||||||
fmt.Printf("Chain: %s, ", YesNo(l.Product.Capabilities.HasChain))
|
fmt.Fprintf(&b, "Chain: %s, ", YesNo(l.Product.Capabilities.HasChain))
|
||||||
fmt.Printf("Multizone: %s, ", YesNo(l.Product.Capabilities.HasMultizone))
|
fmt.Fprintf(&b, "Multizone: %s, ", YesNo(l.Product.Capabilities.HasMultizone))
|
||||||
fmt.Printf("Min Kelvin: %.1f, ", l.Product.Capabilities.MinKelvin)
|
fmt.Fprintf(&b, "Min Kelvin: %.1f, ", l.Product.Capabilities.MinKelvin)
|
||||||
fmt.Printf("Max Kelvin: %.1f ", l.Product.Capabilities.MaxKelvin)
|
fmt.Fprintf(&b, "Max Kelvin: %.1f ", l.Product.Capabilities.MaxKelvin)
|
||||||
fmt.Println()
|
fmt.Fprintln(&b)
|
||||||
// List applicable selectors (most to least specific)
|
// List applicable selectors (most to least specific)
|
||||||
PrintfWithIndent(indent, "Selectors:\n")
|
FprintfWithIndent(&b, indent, "Selectors:\n")
|
||||||
indent += Tabstop
|
indent += Tabstop
|
||||||
PrintfWithIndent(indent, "id:%s\n", l.Id)
|
FprintfWithIndent(&b, indent, "id:%s\n", l.Id)
|
||||||
PrintfWithIndent(indent, "label:%s\n", l.Label)
|
FprintfWithIndent(&b, indent, "label:%s\n", l.Label)
|
||||||
PrintfWithIndent(indent, "group_id:%s\n", l.Group.Id)
|
FprintfWithIndent(&b, indent, "group_id:%s\n", l.Group.Id)
|
||||||
PrintfWithIndent(indent, "group:%s\n", l.Group.Name)
|
FprintfWithIndent(&b, indent, "group:%s\n", l.Group.Name)
|
||||||
PrintfWithIndent(indent, "location_id:%s\n", l.Location.Id)
|
FprintfWithIndent(&b, indent, "location_id:%s\n", l.Location.Id)
|
||||||
PrintfWithIndent(indent, "location:%s\n", l.Location.Name)
|
FprintfWithIndent(&b, indent, "location:%s\n", l.Location.Name)
|
||||||
indent -= Tabstop
|
indent -= Tabstop
|
||||||
PrintfWithIndent(indent, "Last Seen: %s (%.1fs ago)\n", l.LastSeen, l.SecondsLastSeen)
|
FprintfWithIndent(&b, indent, "Last Seen: %s (%.1fs ago)\n", l.LastSeen, l.SecondsLastSeen)
|
||||||
|
|
||||||
if i < len(lights)-1 {
|
if i < len(lights)-1 {
|
||||||
fmt.Println()
|
fmt.Fprintln(&b)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fmt.Print(b.String())
|
||||||
}
|
}
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package lumecmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewCmdToggle() Command {
|
func NewCmdToggle() Command {
|
||||||
@ -45,7 +46,7 @@ func ToggleCmd(ctx Context) (int, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p = NewPrinter(format)
|
p = NewPrinter(format)
|
||||||
p.Results(r.Results)
|
fmt.Print(p.Results(r.Results))
|
||||||
|
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
51
cmd/validate.go
Normal file
51
cmd/validate.go
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
package lumecmd
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.kill0.net/chill9/lifx-go"
|
||||||
|
)
|
||||||
|
|
||||||
|
func NewCmdValidate() Command {
|
||||||
|
return Command{
|
||||||
|
Name: "validate",
|
||||||
|
Func: ValidateCmd,
|
||||||
|
Flags: func() *flag.FlagSet {
|
||||||
|
fs := flag.NewFlagSet("validate", flag.ExitOnError)
|
||||||
|
|
||||||
|
return fs
|
||||||
|
}(),
|
||||||
|
Use: "<command>",
|
||||||
|
Short: "Validate a color string",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func ValidateCmd(ctx Context) (int, error) {
|
||||||
|
var b strings.Builder
|
||||||
|
c := ctx.Client
|
||||||
|
|
||||||
|
if len(ctx.Args) != 1 {
|
||||||
|
fmt.Print(printCmdHelp(ctx.Name))
|
||||||
|
return ExitFailure, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
color := lifx.NamedColor(ctx.Args[0])
|
||||||
|
|
||||||
|
i, err := c.ValidateColor(color)
|
||||||
|
if err != nil {
|
||||||
|
return ExitFailure, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if validColor, ok := i.(*lifx.HSBKColor); ok {
|
||||||
|
fmt.Fprintln(&b, validColor)
|
||||||
|
} else {
|
||||||
|
return ExitFailure, errors.New("go type %T but wanted *HSBKColor")
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Print(b.String())
|
||||||
|
|
||||||
|
return ExitSuccess, nil
|
||||||
|
}
|
2
go.mod
2
go.mod
@ -3,7 +3,7 @@ module git.kill0.net/chill9/lume
|
|||||||
go 1.15
|
go 1.15
|
||||||
|
|
||||||
require (
|
require (
|
||||||
git.kill0.net/chill9/lifx-go v0.0.0-20210329222320-2107a0586447
|
git.kill0.net/chill9/lifx-go v0.0.0-20210418161634-4c1678b62c73
|
||||||
github.com/BurntSushi/toml v0.3.1
|
github.com/BurntSushi/toml v0.3.1
|
||||||
github.com/fatih/color v1.10.0
|
github.com/fatih/color v1.10.0
|
||||||
github.com/mattn/go-runewidth v0.0.10 // indirect
|
github.com/mattn/go-runewidth v0.0.10 // indirect
|
||||||
|
2
go.sum
2
go.sum
@ -4,6 +4,8 @@ git.kill0.net/chill9/lifx-go v0.0.0-20210323044657-dbe1c40e1621 h1:koWq2W08Hjmvs
|
|||||||
git.kill0.net/chill9/lifx-go v0.0.0-20210323044657-dbe1c40e1621/go.mod h1:jInpjEqTBhrFpQKk7zPIWISvgjjfS2djXeKB3yB/8dY=
|
git.kill0.net/chill9/lifx-go v0.0.0-20210323044657-dbe1c40e1621/go.mod h1:jInpjEqTBhrFpQKk7zPIWISvgjjfS2djXeKB3yB/8dY=
|
||||||
git.kill0.net/chill9/lifx-go v0.0.0-20210329222320-2107a0586447 h1:tN+zR5aszesrZRrhS3uOqAIWLcADCIH7GFJ6SOQS9r0=
|
git.kill0.net/chill9/lifx-go v0.0.0-20210329222320-2107a0586447 h1:tN+zR5aszesrZRrhS3uOqAIWLcADCIH7GFJ6SOQS9r0=
|
||||||
git.kill0.net/chill9/lifx-go v0.0.0-20210329222320-2107a0586447/go.mod h1:jInpjEqTBhrFpQKk7zPIWISvgjjfS2djXeKB3yB/8dY=
|
git.kill0.net/chill9/lifx-go v0.0.0-20210329222320-2107a0586447/go.mod h1:jInpjEqTBhrFpQKk7zPIWISvgjjfS2djXeKB3yB/8dY=
|
||||||
|
git.kill0.net/chill9/lifx-go v0.0.0-20210418161634-4c1678b62c73 h1:fteCAelwAcfam2Q8eeJFyK4+sXGOpR6Me5YMKBi+MYY=
|
||||||
|
git.kill0.net/chill9/lifx-go v0.0.0-20210418161634-4c1678b62c73/go.mod h1:jInpjEqTBhrFpQKk7zPIWISvgjjfS2djXeKB3yB/8dY=
|
||||||
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
|
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
|
||||||
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
|
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
|
||||||
github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg=
|
github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg=
|
||||||
|
12
lume.1
12
lume.1
@ -15,7 +15,7 @@
|
|||||||
.Bl -tag -width Ds
|
.Bl -tag -width Ds
|
||||||
.It Xo Ic breathe
|
.It Xo Ic breathe
|
||||||
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
||||||
.Fl Fl color Ns = Ns Ar color
|
.Fl c | Fl Fl color
|
||||||
.Op Fl Fl from-color Ns = Ns Ar color
|
.Op Fl Fl from-color Ns = Ns Ar color
|
||||||
.Op Fl Fl cycles Ns = Ns Ar cycles
|
.Op Fl Fl cycles Ns = Ns Ar cycles
|
||||||
.Op Fl Fl peak Ns = Ns Ar peak
|
.Op Fl Fl peak Ns = Ns Ar peak
|
||||||
@ -35,13 +35,13 @@ List the lights and their basic state
|
|||||||
.It Xo Ic poweroff
|
.It Xo Ic poweroff
|
||||||
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
||||||
.Op Fl Fl simple | Fl Fl table
|
.Op Fl Fl simple | Fl Fl table
|
||||||
.Op Fl Fl d | Fl Fl duration
|
.Op Fl d | Fl Fl duration
|
||||||
.Xc
|
.Xc
|
||||||
Power off lights
|
Power off lights
|
||||||
.It Xo Ic poweron
|
.It Xo Ic poweron
|
||||||
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
||||||
.Op Fl Fl simple | Fl Fl table
|
.Op Fl Fl simple | Fl Fl table
|
||||||
.Op Fl Fl d | Fl Fl duration
|
.Op Fl d | Fl Fl duration
|
||||||
.Xc
|
.Xc
|
||||||
Power off lights
|
Power off lights
|
||||||
.It Xo Ic set-color
|
.It Xo Ic set-color
|
||||||
@ -85,11 +85,15 @@ Set light white levels
|
|||||||
.Xc
|
.Xc
|
||||||
Show extended details about the lights
|
Show extended details about the lights
|
||||||
.It Xo Ic toggle
|
.It Xo Ic toggle
|
||||||
.Op Fl Fl d | Fl Fl duration
|
.Op Fl d | Fl Fl duration
|
||||||
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
.Op Fl s Ar selector | Fl Fl selector Ns = Ns Ar selector
|
||||||
.Op Fl Fl simple | Fl Fl table
|
.Op Fl Fl simple | Fl Fl table
|
||||||
.Xc
|
.Xc
|
||||||
Toggle the power
|
Toggle the power
|
||||||
|
.It Xo Ic validate
|
||||||
|
.Ar color_string
|
||||||
|
.Xc
|
||||||
|
Validate a color string
|
||||||
.It Xo Ic version
|
.It Xo Ic version
|
||||||
.Xc
|
.Xc
|
||||||
Print the version
|
Print the version
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
lume (__VERSION__) unstable; urgency=medium
|
lume (__VERSION__-__REVISION__) unstable; urgency=medium
|
||||||
|
|
||||||
* Package generated with make deb
|
* Package generated with make deb
|
||||||
|
|
||||||
|
1
packaging/debian/lume.manpages
Normal file
1
packaging/debian/lume.manpages
Normal file
@ -0,0 +1 @@
|
|||||||
|
lume.1
|
@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
DISTRIBUTION = $(shell lsb_release -sr)
|
DISTRIBUTION = $(shell lsb_release -sr)
|
||||||
VERSION = __VERSION__
|
VERSION = __VERSION__
|
||||||
PACKAGEVERSION = $(VERSION)
|
REVISION = __REVISION__
|
||||||
|
PACKAGEVERSION = $(VERSION)-$(REVISION)
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@
|
dh $@
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: lume
|
Name: lume
|
||||||
Version: __VERSION__
|
Version: __VERSION__
|
||||||
Release: 1%{?dist}
|
Release: __REVISION__%{?dist}
|
||||||
Summary: A CLI tool for the LIFX HTTP API
|
Summary: A CLI tool for the LIFX HTTP API
|
||||||
|
|
||||||
License: MPL
|
License: MPL
|
||||||
@ -25,6 +25,7 @@ Source: %{name}-%{version}.tar.xz
|
|||||||
%{_bindir}/lume
|
%{_bindir}/lume
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
/usr/share/lume/lumerc
|
/usr/share/lume/lumerc
|
||||||
|
%doc %{_mandir}/man1/lume.1.*
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user