commands/flags.go (123 lines of code) (raw):

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package commands import ( "os" ) /////////// // Flags // /////////// const ( MEMORY_FLAG = "memory" LOG_SIZE_FLAG = "logsize" CONCURRENCY_FLAG = "concurrency" TIMEOUT_FLAG = "timeout" WEB_FLAG = "web" WEB_SECURE_FLAG = "web-secure" SAVE_FLAG = "save" SAVE_AS_FLAG = "save-as" ) var cliDebug = os.Getenv("WSK_CLI_DEBUG") // Useful for tracing init() code var Flags FlagsStruct type FlagsStruct struct { Global struct { Verbose bool Debug bool Cert string Key string Auth string Apihost string Apiversion string Insecure bool } common struct { blocking bool annotation []string annotFile string param []string paramFile string shared string // AKA "public" or "publish" skip int // skip first N records limit int // return max N records full bool // return full records (docs=true for client request) summary bool feed string // name of feed detail bool format string nameSort bool // sorts list alphabetically by entity name overwrite bool } property struct { cert bool key bool auth bool apihost bool apiversion bool namespace bool cliversion bool apibuild bool apibuildno bool insecure bool all bool apihostSet string apiversionSet string namespaceSet string output string } action ActionFlags activation struct { action string // retrieve results for this action upto int64 // retrieve results up to certain time since int64 // retrieve results after certain time seconds int // stop polling for activation upda sinceSeconds int sinceMinutes int sinceHours int sinceDays int exit int last bool strip bool logs bool } // rule rule struct { disable bool summary bool } // trigger trigger struct { summary bool feedParam []string triggerParam []string } //sdk sdk struct { stdout bool } // api api struct { action string path string verb string basepath string apiname string configfile string resptype string } } type ActionFlags struct { docker string native bool copy bool web string websecure string sequence bool timeout int memory int logsize int concurrency int result bool kind string main string url bool save bool saveAs string delAnnotation []string } func IsVerbose() bool { return Flags.Global.Verbose || IsDebug() } func IsDebug() bool { return len(cliDebug) > 0 || Flags.Global.Debug }