zenity/cmd/zenity/main.go

329 lines
7.8 KiB
Go
Raw Normal View History

2020-01-06 19:57:00 -05:00
package main
import (
2020-01-08 13:12:29 -05:00
"flag"
2020-01-06 19:57:00 -05:00
"os"
2020-01-17 07:28:44 -05:00
"os/exec"
"path/filepath"
"runtime"
2020-01-08 13:12:29 -05:00
"strings"
2020-01-06 19:57:00 -05:00
"github.com/ncruces/zenity"
"github.com/ncruces/zenity/internal/cmd"
)
2020-01-08 19:54:34 -05:00
//go:generate go run github.com/josephspurrier/goversioninfo/cmd/goversioninfo -platform-specific -manifest=win.manifest
2020-01-08 13:12:29 -05:00
var (
// Application Options
errorDlg bool
infoDlg bool
warningDlg bool
questionDlg bool
fileSelectionDlg bool
// General options
title string
// Message options
text string
iconName string
okLabel string
cancelLabel string
extraButton string
noWrap bool
ellipsize bool
defaultCancel bool
// File selection options
save bool
multiple bool
directory bool
confirmOverwrite bool
confirmCreate bool
showHidden bool
2020-01-08 13:12:29 -05:00
filename string
separator string
fileFilters FileFilters
2020-01-17 07:28:44 -05:00
// Windows specific options
cygpath bool
wslpath bool
2020-01-08 13:12:29 -05:00
)
2020-01-06 19:57:00 -05:00
func main() {
2020-01-08 13:12:29 -05:00
setupFlags()
2020-01-08 22:00:22 -05:00
flag.Parse()
2020-01-08 13:12:29 -05:00
validateFlags()
opts := loadFlags()
2020-01-06 19:57:00 -05:00
cmd.Command = true
2020-01-08 13:12:29 -05:00
switch {
case errorDlg:
msgResult(zenity.Error(text, opts...))
case infoDlg:
msgResult(zenity.Info(text, opts...))
case warningDlg:
msgResult(zenity.Warning(text, opts...))
case questionDlg:
msgResult(zenity.Question(text, opts...))
2020-01-08 19:54:34 -05:00
case fileSelectionDlg:
switch {
default:
2020-01-17 07:28:44 -05:00
strResult(egestPath(zenity.SelectFile(opts...)))
2020-01-08 19:54:34 -05:00
case save:
2020-01-17 07:28:44 -05:00
strResult(egestPath(zenity.SelectFileSave(opts...)))
2020-01-08 19:54:34 -05:00
case multiple:
2020-01-17 07:28:44 -05:00
lstResult(egestPaths(zenity.SelectFileMutiple(opts...)))
2020-01-08 19:54:34 -05:00
}
2020-01-08 13:12:29 -05:00
}
flag.Usage()
os.Exit(-1)
}
func setupFlags() {
// Application Options
flag.BoolVar(&errorDlg, "error", false, "Display error dialog")
flag.BoolVar(&infoDlg, "info", false, "Display info dialog")
flag.BoolVar(&warningDlg, "warning", false, "Display warning dialog")
flag.BoolVar(&questionDlg, "question", false, "Display question dialog")
flag.BoolVar(&fileSelectionDlg, "file-selection", false, "Display file selection dialog")
// General options
flag.StringVar(&title, "title", "", "Set the dialog title")
// Message options
flag.StringVar(&text, "text", "", "Set the dialog text")
2020-01-10 07:00:38 -05:00
flag.StringVar(&iconName, "icon-name", "", "Set the dialog icon (error, info, question, warning)")
2020-01-08 13:12:29 -05:00
flag.StringVar(&okLabel, "ok-label", "", "Set the label of the OK button")
flag.StringVar(&cancelLabel, "cancel-label", "", "Set the label of the Cancel button")
flag.StringVar(&extraButton, "extra-button", "", "Add an extra button")
flag.BoolVar(&noWrap, "no-wrap", false, "Do not enable text wrapping")
flag.BoolVar(&ellipsize, "ellipsize", false, "Enable ellipsizing in the dialog text")
flag.BoolVar(&defaultCancel, "default-cancel", false, "Give Cancel button focus by default")
// File selection options
flag.BoolVar(&save, "save", false, "Activate save mode")
flag.BoolVar(&multiple, "multiple", false, "Allow multiple files to be selected")
flag.BoolVar(&directory, "directory", false, "Activate directory-only selection")
flag.BoolVar(&confirmOverwrite, "confirm-overwrite", false, "Confirm file selection if filename already exists")
flag.BoolVar(&confirmCreate, "confirm-create", false, "Confirm file selection if filename does not yet exist (Windows only)")
flag.BoolVar(&showHidden, "show-hidden", false, "Show hidden files (Windows and macOS only)")
2020-01-08 13:12:29 -05:00
flag.StringVar(&filename, "filename", "", "Set the filename")
2020-01-08 19:54:34 -05:00
flag.StringVar(&separator, "separator", "|", "Set output separator character")
2020-01-08 13:12:29 -05:00
flag.Var(&fileFilters, "file-filter", "Set a filename filter (NAME | PATTERN1 PATTERN2 ...)")
2020-01-17 07:28:44 -05:00
// Windows specific options
if runtime.GOOS == "windows" {
flag.BoolVar(&cygpath, "cygpath", false, "Use cygpath for path translation (Windows only)")
flag.BoolVar(&wslpath, "wslpath", false, "Use wslpath for path translation (Windows only)")
}
2020-01-08 13:12:29 -05:00
}
func validateFlags() {
var n int
if errorDlg {
n++
}
if infoDlg {
n++
}
if warningDlg {
n++
}
if questionDlg {
n++
}
if fileSelectionDlg {
n++
}
if n != 1 {
flag.Usage()
os.Exit(-1)
}
}
func loadFlags() []zenity.Option {
var options []zenity.Option
// General options
options = append(options, zenity.Title(title))
// Message options
var icon zenity.MessageIcon
switch iconName {
case "error", "dialog-error":
icon = zenity.ErrorIcon
case "info", "dialog-information":
icon = zenity.InfoIcon
case "question", "dialog-question":
icon = zenity.QuestionIcon
case "warning", "dialog-warning":
icon = zenity.WarningIcon
}
options = append(options, zenity.Icon(icon))
options = append(options, zenity.OKLabel(okLabel))
options = append(options, zenity.CancelLabel(cancelLabel))
options = append(options, zenity.ExtraButton(extraButton))
if noWrap {
options = append(options, zenity.NoWrap())
2020-01-08 13:12:29 -05:00
}
if ellipsize {
options = append(options, zenity.Ellipsize())
2020-01-08 13:12:29 -05:00
}
if defaultCancel {
options = append(options, zenity.DefaultCancel())
2020-01-08 13:12:29 -05:00
}
2020-01-08 19:54:34 -05:00
// File selection options
options = append(options, fileFilters.Build())
2020-01-17 07:28:44 -05:00
options = append(options, zenity.Filename(ingestPath(filename)))
2020-01-09 20:46:53 -05:00
if directory {
options = append(options, zenity.Directory())
2020-01-09 20:46:53 -05:00
}
2020-01-08 19:54:34 -05:00
if confirmOverwrite {
options = append(options, zenity.ConfirmOverwrite())
}
if confirmCreate {
options = append(options, zenity.ConfirmCreate())
}
if showHidden {
options = append(options, zenity.ShowHidden())
2020-01-08 19:54:34 -05:00
}
cmd.Separator = separator
2020-01-08 13:12:29 -05:00
return options
}
func msgResult(ok bool, err error) {
if err == zenity.ErrExtraButton {
os.Stdout.WriteString(extraButton)
os.Stdout.WriteString(cmd.LineBreak)
os.Exit(1)
}
2020-01-06 19:57:00 -05:00
if err != nil {
os.Stderr.WriteString(err.Error())
2020-01-08 13:12:29 -05:00
os.Stderr.WriteString(cmd.LineBreak)
os.Exit(-1)
2020-01-06 19:57:00 -05:00
}
2020-01-08 13:12:29 -05:00
if ok {
os.Exit(0)
2020-01-06 19:57:00 -05:00
}
2020-01-08 13:12:29 -05:00
os.Exit(1)
}
2020-01-08 19:54:34 -05:00
func strResult(s string, err error) {
if err != nil {
os.Stderr.WriteString(err.Error())
os.Stderr.WriteString(cmd.LineBreak)
os.Exit(-1)
}
if s == "" {
os.Exit(1)
}
os.Stdout.WriteString(s)
os.Stdout.WriteString(cmd.LineBreak)
os.Exit(0)
}
func lstResult(l []string, err error) {
if err != nil {
os.Stderr.WriteString(err.Error())
os.Stderr.WriteString(cmd.LineBreak)
os.Exit(-1)
}
os.Stdout.WriteString(strings.Join(l, separator))
os.Stdout.WriteString(cmd.LineBreak)
if l == nil {
os.Exit(1)
}
os.Exit(0)
}
2020-01-17 07:28:44 -05:00
func ingestPath(path string) string {
if runtime.GOOS == "windows" && path != "" {
var args []string
switch {
case wslpath:
args = []string{"wsl", "wslpath", "-m"}
case cygpath:
args = []string{"cygpath", "-C", "UTF8", "-m"}
}
if args != nil {
args = append(args, path)
out, err := exec.Command(args[0], args[1:]...).Output()
if len(out) > 0 && err == nil {
path = string(out[:len(out)-1])
}
}
}
return path
}
func egestPath(path string, err error) (string, error) {
if runtime.GOOS == "windows" && path != "" && err == nil {
var args []string
switch {
case wslpath:
args = []string{"wsl", "wslpath", "-u"}
case cygpath:
args = []string{"cygpath", "-C", "UTF8", "-u"}
}
if args != nil {
var out []byte
args = append(args, filepath.ToSlash(path))
out, err = exec.Command(args[0], args[1:]...).Output()
if len(out) > 0 && err == nil {
path = string(out[:len(out)-1])
}
}
}
return path, err
}
func egestPaths(paths []string, err error) ([]string, error) {
if runtime.GOOS == "windows" && err == nil && (wslpath || cygpath) {
paths = append(paths[:0:0], paths...)
for i, p := range paths {
paths[i], err = egestPath(p, nil)
if err != nil {
break
}
}
}
return paths, err
}
2020-01-08 13:12:29 -05:00
type FileFilters struct {
2020-01-08 19:54:34 -05:00
zenity.FileFilters
2020-01-08 13:12:29 -05:00
}
func (f *FileFilters) String() string {
2020-01-17 07:28:44 -05:00
return "zenity.FileFilters"
2020-01-08 13:12:29 -05:00
}
func (f *FileFilters) Set(s string) error {
var filter zenity.FileFilter
2020-01-08 21:38:10 -05:00
if split := strings.SplitN(s, "|", 2); len(split) > 1 {
2020-01-08 13:12:29 -05:00
filter.Name = split[0]
s = split[1]
}
2020-01-08 19:54:34 -05:00
filter.Patterns = strings.Split(s, " ")
f.FileFilters = append(f.FileFilters, filter)
2020-01-08 13:12:29 -05:00
return nil
2020-01-06 19:57:00 -05:00
}