Module comline

Expand source code
#!/usr/bin/env python

import os, sys, string, time,  traceback, getopt
import random, glob, warnings

VERSION = 1.0

#warnings.simplefilter("ignore")
#warnings.simplefilter("default")
#warnings.simplefilter("always")

# ------------------------------------------------------------------------

glargs = "" ; glhead = "";  glfoot = ""

glprog = os.path.basename(sys.argv[0])
gloptarr = []
glsoptarr = []

def pversion(ver):

    print(os.path.basename(sys.argv[0]) + ":", "Version", ver)

    #if sys.stdout.isatty():
    #    sys.exit(0)

def setargs(args):
    global glargs
    glargs = args

def setfoot(args):
    global glfoot
    glfoot = args

def sethead(args):
    global glhead
    glhead = args

def setprog(args):
    global glprog
    glprog = args

# ------------------------------------------------------------------------

def dupoptcheck(optarr):
        optdup = {}
        for bb in range(len(optarr)):
            kkk = optarr[bb][0][0]
            try:
                optdup[kkk] += 1
            except KeyError:
                optdup[kkk] = 1
            except:
                print(sys.exc_info())
        #print(optdup)
        found = False
        for cc in optdup.keys():
            if optdup[cc] > 1:
                #print("found dup", cc)
                found = cc
        return found

def phelp():

    if glhead:
        print("head", glhead)
    print( "Usage: " + os.path.basename(sys.argv[0]), "[options]", glargs)
    print( "options:")

    for aa in optarr:
        pad = " " * (9 - len(aa[1]))
        print("        ", "-" + aa[0][0], " ", aa[1], pad, " - ", aa[4])

    print()
    if glfoot:
        print("s", glfoot)

    if sys.stdout.isatty():
        sys.exit(0)

# ------------------------------------------------------------------------
# option [:],  var_name, initial_val, function, helpstr
# Add colon ':' to option with argument.

optarr = [\
 ["d:",  "pgdebug",  0,      None,       "Debug level 0-10" ], \
 ["p:",  "port",     6666,   None,       "Listen on port"],    \
 ["v",   "verbose",  0,      None,       "Verbose. . More info on screen."],           \
 ["q",   "quiet",    0,      None,       "Quiet. Less info on screen."],             \
 ["V",   "version",  None,   pversion,   "Print Version."],     \
 ["h",   "help",     None,   phelp,      "Show Help. (this screen)"]          \
]

# ------------------------------------------------------------------------
# Handle command line. Interpret optarray and decorate the class
# This allows a lot of sub utils to have a common set of options.

class Config:

    #warnings.warn("Config Class obsolete, use ConfigLong", DeprecationWarning)

    def __init__(self, optarr):


        ddd = dupoptcheck(optarr)
        if ddd:
            raise ValueError("Duplicate options on comline.", ddd)

        global glsoptarr
        glsoptarr = optarr

        self.optarr = optarr
        self.verbose = False
        self.debug = False
        self.sess_key = ""

    def comline(self, argv):
        #warnings.warn("Config Class obsolete, use ConfigLong")

        optletters = ""
        for aa in self.optarr:
            optletters += aa[0]
        #print( optletters    )
        # Create defaults:
        err = 0
        for bb in range(len(self.optarr)):
            if self.optarr[bb][1]:
                # Coerse type
                if type(self.optarr[bb][2]) == type(0):
                    self.__dict__[self.optarr[bb][1]] = int(self.optarr[bb][2])
                if type(self.optarr[bb][2]) == type(.0):
                    self.__dict__[self.optarr[bb][1]] = float(self.optarr[bb][2])
                if type(self.optarr[bb][2]) == type(""):
                    self.__dict__[self.optarr[bb][1]] = str(self.optarr[bb][2])
        try:
            opts, args = getopt.getopt(argv, optletters)
        except getopt.GetoptError as err:
            print( "Invalid option(s) on command line:", err)
            raise
            return ()
        except:
            print(sys.exc_info())

        #print( "opts", opts, "args", args)
        for aa in opts:
            for bb in range(len(self.optarr)):
                if aa[0][1] == self.optarr[bb][0][0]:
                    #print( "match", aa, self.optarr[bb])
                    if len(self.optarr[bb][0]) > 1:
                        #print( "arg", self.optarr[bb][1], aa[1])
                        if self.optarr[bb][2] != None:
                            if type(self.optarr[bb][2]) == type(0):
                                self.__dict__[self.optarr[bb][1]] = int(aa[1])
                            if type(self.optarr[bb][2]) == type(.0):
                                self.__dict__[self.optarr[bb][1]] = float(aa[1])
                            if type(self.optarr[bb][2]) == type(""):
                                self.__dict__[self.optarr[bb][1]] = str(aa[1])
                    else:
                        #print( "set", self.optarr[bb][1], self.optarr[bb][2])
                        if self.optarr[bb][2] != None:
                            self.__dict__[self.optarr[bb][1]] = 1
                        #print( "call", self.optarr[bb][3])
                        if self.optarr[bb][3] != None:
                            self.optarr[bb][3]()
        return args

# ------------------------------------------------------------------------
# Long form help

def phelplong():

    if glhead:
        print(glhead)

    print( "Usage:", glprog, glargs)
    print( "  options:")
    try:
        for aa in gloptarr:
            longop = aa[1].replace("=", "")
            if "=" in aa[1]:
                arg = aa[2]
            else:
                arg = " "

            pad  = " " * (8 - len(longop))
            pad2 = " " * (8 - len(arg))

            print("   ", "-" + aa[0][0], " ",
                            "--" + longop, pad, arg, pad2,"- ", aa[5])
        if glfoot:
            print(glfoot)
    except:
        pass

     # Sat 11.May.2024 only exit if real stdout
    if sys.stdout.isatty():
        sys.exit(0)

# ------------------------------------------------------------------------
# Handle command line. Interpret optarray and decorate the class;
# Uses UNIX getopt for compatibility;
#
# Option parameters:
#
# option, long_option,  var_name,   initial_value, function
#
# Option with parameters:   add trailing colon (:)
# Long opt with parameters: add training equal sign (=)
#
# Example:
#
#optarrlong = [\
#    ["d:",    "debug=",      "pgdebug",  0,              None],      \
#    ["p:",    "port",        "port",     9999,           None],      \
#    ["v",     "verbose",     "verbose",  0,              None],      \
#    ["t",     "test",        "test",     "x",            None],      \
#    ["V",     "version",     None,       None,           pversion],  \
#    ["h",     "help",        None,       None,           phelp],     \
#    ["i:",    "input=",      "input",      "-",          None],      \
#    ]

# option [:], long_option[=],  var_name,   initial_value, function, helpstr
optarrlong = [\
 ["d:",  "debug=",  "pgdebug",  0,      None,       "Debug level. 0=none 10=noisy. Default: 0" ],
 ["p:",  "port=",   "port",     6666,   None,       "Listen on port. Default: 6666"],
 ["v",   "verbose", "verbose",  0,      None,       "Verbose. Show more info."],
 ["q",   "quiet",   "quiet",    0,      None,       "Quiet. Show less info."],
 ["V",   "version", "version",  None,   pversion,   "Print Version string."],
 ["h",   "help",    "help",     None,   phelplong,  "Show Help. (this screen)"]
]

class ConfigLong:

    def __init__(self, optarr):

        ddd = dupoptcheck(optarr)
        if ddd:
            raise ValueError("Duplicate options on comline.", ddd)

        global gloptarr
        gloptarr = optarr
        self._optarr = optarr
        self.err = None

        # Create defaults:
        for bb in range(len(self._optarr)):
            if self._optarr[bb][2]:
                #print("init", self._optarr[bb][2],
                #            self._optarr[bb][3], type(self._optarr[bb][3]))
                # Coerse type
                if  self._optarr[bb][3] == None:
                    self.__dict__[self._optarr[bb][2]] = None
                elif type(self._optarr[bb][3]) == type(0):
                    self.__dict__[self._optarr[bb][2]] = int(self._optarr[bb][3])
                elif type(self._optarr[bb][3]) == type(0.):
                    self.__dict__[self._optarr[bb][2]] = float(self._optarr[bb][3])
                elif type(self._optarr[bb][3]) == type(""):
                    self.__dict__[self._optarr[bb][2]] = str(self._optarr[bb][3])
                else:
                    print("Can only have int and str type; not", type(self._optarr[bb][3]))
                    raise ValueError("Can only None, int, float and string type - not %s" \
                                             % (type(self._optarr[bb][3])))

    def printvars(self):
        print("Variables -----")
        for aa in dir(self):
            try:
                if aa[:2] == "__" :
                    continue
                if  aa != "_optarr" and  aa != "comline" and \
                            aa != "printvars" :
                    ff = getattr(self, aa)
                    if type(ff) == type(self.printvars):
                        fff = "function"
                    else:
                        fff = type(ff)
                    print(aa, ff, fff)
            except:
                pass
        print("End Variables -----")

    def comline(self, argv, pgdebug = 0):

        ''' Parse what is comong from the command line '''

        optletters = "";  longopt = []
        for aa in self._optarr:
            if aa[0] in optletters:
                print ("Warning: duplicate option", "'" + aa[0] + "'")
            #if len(aa[0]) > 1 and aa[0][1] != ':':
            optletters += aa[0]
            longopt.append(aa[1])

        #print("optleters", optletters, "longopt", longopt)

        try:
            opts, args = getopt.getopt(argv, optletters, longopt)
        #except getopt.GetoptError, err:
        except getopt.GetoptError as err:
            print("Invalid option(s) on command line: %s" % err)
            raise

        if pgdebug:
            print ("opts", opts, "args", args)
        for aa in opts:
            for bb in range(len(self._optarr)):
                ddd = None
                if aa[0][1] == "-":
                    ddd = "--" + self._optarr[bb][0]
                    eee = "--" + self._optarr[bb][1]
                elif aa[0][0] == "-":
                    ddd = "-" + self._optarr[bb][0]
                    eee = "-" + self._optarr[bb][1]
                else:
                    ddd = self._optarr[bb]

                if ddd[-1:] == "=":
                    ddd = ddd[:-1]
                    eee = eee[:-1]
                if ddd[-1:] == ":":
                    ddd = ddd[:-1]
                    eee = eee[:-1]

                if pgdebug:
                        print ("aa",  aa, "bb", bb, "one opt =", self._optarr[bb][:-1], ddd, eee)
                if aa[0] == ddd or aa[0] == eee:
                    #print ("match", aa, ddd)
                    if len(self._optarr[bb][0]) > 1:
                        if pgdebug:
                            print ("arg", self._optarr[bb][2], self._optarr[bb][3], aa)
                        if self._optarr[bb][3] != None:
                            if type(self._optarr[bb][3]) == type(0):
                                if aa[1][:2] == "0x" or aa[1][:2] == "0X":
                                    self.__dict__[self._optarr[bb][2]] = int(aa[1][2:], 16)
                                else:
                                    self.__dict__[self._optarr[bb][2]] = int(aa[1])
                                    pass

                            elif type(self._optarr[bb][2]) == type(""):
                                self.__dict__[self._optarr[bb][2]] = str(aa[1])
                    else:
                        if pgdebug:
                            print ("set 1",
                                self._optarr[bb][1], "set 2", self._optarr[bb][2],
                                    "set 3", self._optarr[bb][3])
                        if self._optarr[bb][3] != None:
                            self.__dict__[self._optarr[bb][2]] += 1
                        #print ("call", self.optarr[bb][3])
                        if self._optarr[bb][4] != None:
                            self._optarr[bb][4]()
        return args

# ------------------------------------------------------------------------
# Print an exception as the system would print it

def print_exception(xstr, fp=sys.stdout):

    cumm = xstr + " "
    a,b,c = sys.exc_info()
    if a != None:
        cumm += str(a) + " " + str(b) + "\n"
        try:
            #cumm += str(traceback.format_tb(c, 10))
            ttt = traceback.extract_tb(c)
            for aa in ttt:
                cumm += "File: " + os.path.basename(aa[0]) + \
                        " Line: " + str(aa[1]) + "\n" +  \
                    "   Context: " + aa[2] + " -> " + aa[3] + "\n"
        except:
            print ("Could not print trace stack. ", sys.exc_info())
    print (cumm, file=fp)

from io import StringIO

def  test_exc():
    try:
        raise ValueError("Test")
    except:
        fp = StringIO()
        print_exception("Hello", fp)
        fp.seek(0)
        txt = fp.read()
        print(txt)
        fp.close()
        ret = txt.find("Hello <class 'ValueError'> Test")
        assert 0 == ret

def  test_long():
    optarr = [\
    ["d:",  "debug=",   "pgdebug",  0,      None,     "Debug level. 0=none 10=noisy. Default: 0" ],
    ]
    conf = ConfigLong(optarr)
    args = conf.comline(( "-d 1", "hello",))
    #print("args:", args)
    #print("vars:", end = " ")
    #conf.printvars()
    assert conf.pgdebug == 1

    fp = StringIO()
    oldfp = sys.stdout
    sys.stdout = fp
    phelplong()
    sys.stdout = oldfp
    fp.seek(0)
    txt = fp.read()
    #print(txt)

    ref = '''Usage: pytest \n\
  options:
    -d   --debug     pgdebug   -  Debug level. 0=none 10=noisy. Default: 0
'''
    assert txt == ref

# EOF

Functions

def dupoptcheck(optarr)
Expand source code
def dupoptcheck(optarr):
        optdup = {}
        for bb in range(len(optarr)):
            kkk = optarr[bb][0][0]
            try:
                optdup[kkk] += 1
            except KeyError:
                optdup[kkk] = 1
            except:
                print(sys.exc_info())
        #print(optdup)
        found = False
        for cc in optdup.keys():
            if optdup[cc] > 1:
                #print("found dup", cc)
                found = cc
        return found
def phelp()
Expand source code
def phelp():

    if glhead:
        print("head", glhead)
    print( "Usage: " + os.path.basename(sys.argv[0]), "[options]", glargs)
    print( "options:")

    for aa in optarr:
        pad = " " * (9 - len(aa[1]))
        print("        ", "-" + aa[0][0], " ", aa[1], pad, " - ", aa[4])

    print()
    if glfoot:
        print("s", glfoot)

    if sys.stdout.isatty():
        sys.exit(0)
def phelplong()
Expand source code
def phelplong():

    if glhead:
        print(glhead)

    print( "Usage:", glprog, glargs)
    print( "  options:")
    try:
        for aa in gloptarr:
            longop = aa[1].replace("=", "")
            if "=" in aa[1]:
                arg = aa[2]
            else:
                arg = " "

            pad  = " " * (8 - len(longop))
            pad2 = " " * (8 - len(arg))

            print("   ", "-" + aa[0][0], " ",
                            "--" + longop, pad, arg, pad2,"- ", aa[5])
        if glfoot:
            print(glfoot)
    except:
        pass

     # Sat 11.May.2024 only exit if real stdout
    if sys.stdout.isatty():
        sys.exit(0)
def print_exception(xstr, fp=sys.stdout)
Expand source code
def print_exception(xstr, fp=sys.stdout):

    cumm = xstr + " "
    a,b,c = sys.exc_info()
    if a != None:
        cumm += str(a) + " " + str(b) + "\n"
        try:
            #cumm += str(traceback.format_tb(c, 10))
            ttt = traceback.extract_tb(c)
            for aa in ttt:
                cumm += "File: " + os.path.basename(aa[0]) + \
                        " Line: " + str(aa[1]) + "\n" +  \
                    "   Context: " + aa[2] + " -> " + aa[3] + "\n"
        except:
            print ("Could not print trace stack. ", sys.exc_info())
    print (cumm, file=fp)
def pversion(ver)
Expand source code
def pversion(ver):

    print(os.path.basename(sys.argv[0]) + ":", "Version", ver)

    #if sys.stdout.isatty():
    #    sys.exit(0)
def setargs(args)
Expand source code
def setargs(args):
    global glargs
    glargs = args
def setfoot(args)
Expand source code
def setfoot(args):
    global glfoot
    glfoot = args
def sethead(args)
Expand source code
def sethead(args):
    global glhead
    glhead = args
def setprog(args)
Expand source code
def setprog(args):
    global glprog
    glprog = args
def test_exc()
Expand source code
def  test_exc():
    try:
        raise ValueError("Test")
    except:
        fp = StringIO()
        print_exception("Hello", fp)
        fp.seek(0)
        txt = fp.read()
        print(txt)
        fp.close()
        ret = txt.find("Hello <class 'ValueError'> Test")
        assert 0 == ret
def test_long()
Expand source code
def  test_long():
    optarr = [\
    ["d:",  "debug=",   "pgdebug",  0,      None,     "Debug level. 0=none 10=noisy. Default: 0" ],
    ]
    conf = ConfigLong(optarr)
    args = conf.comline(( "-d 1", "hello",))
    #print("args:", args)
    #print("vars:", end = " ")
    #conf.printvars()
    assert conf.pgdebug == 1

    fp = StringIO()
    oldfp = sys.stdout
    sys.stdout = fp
    phelplong()
    sys.stdout = oldfp
    fp.seek(0)
    txt = fp.read()
    #print(txt)

    ref = '''Usage: pytest \n\
  options:
    -d   --debug     pgdebug   -  Debug level. 0=none 10=noisy. Default: 0
'''
    assert txt == ref

Classes

class Config (optarr)
Expand source code
class Config:

    #warnings.warn("Config Class obsolete, use ConfigLong", DeprecationWarning)

    def __init__(self, optarr):


        ddd = dupoptcheck(optarr)
        if ddd:
            raise ValueError("Duplicate options on comline.", ddd)

        global glsoptarr
        glsoptarr = optarr

        self.optarr = optarr
        self.verbose = False
        self.debug = False
        self.sess_key = ""

    def comline(self, argv):
        #warnings.warn("Config Class obsolete, use ConfigLong")

        optletters = ""
        for aa in self.optarr:
            optletters += aa[0]
        #print( optletters    )
        # Create defaults:
        err = 0
        for bb in range(len(self.optarr)):
            if self.optarr[bb][1]:
                # Coerse type
                if type(self.optarr[bb][2]) == type(0):
                    self.__dict__[self.optarr[bb][1]] = int(self.optarr[bb][2])
                if type(self.optarr[bb][2]) == type(.0):
                    self.__dict__[self.optarr[bb][1]] = float(self.optarr[bb][2])
                if type(self.optarr[bb][2]) == type(""):
                    self.__dict__[self.optarr[bb][1]] = str(self.optarr[bb][2])
        try:
            opts, args = getopt.getopt(argv, optletters)
        except getopt.GetoptError as err:
            print( "Invalid option(s) on command line:", err)
            raise
            return ()
        except:
            print(sys.exc_info())

        #print( "opts", opts, "args", args)
        for aa in opts:
            for bb in range(len(self.optarr)):
                if aa[0][1] == self.optarr[bb][0][0]:
                    #print( "match", aa, self.optarr[bb])
                    if len(self.optarr[bb][0]) > 1:
                        #print( "arg", self.optarr[bb][1], aa[1])
                        if self.optarr[bb][2] != None:
                            if type(self.optarr[bb][2]) == type(0):
                                self.__dict__[self.optarr[bb][1]] = int(aa[1])
                            if type(self.optarr[bb][2]) == type(.0):
                                self.__dict__[self.optarr[bb][1]] = float(aa[1])
                            if type(self.optarr[bb][2]) == type(""):
                                self.__dict__[self.optarr[bb][1]] = str(aa[1])
                    else:
                        #print( "set", self.optarr[bb][1], self.optarr[bb][2])
                        if self.optarr[bb][2] != None:
                            self.__dict__[self.optarr[bb][1]] = 1
                        #print( "call", self.optarr[bb][3])
                        if self.optarr[bb][3] != None:
                            self.optarr[bb][3]()
        return args

Methods

def comline(self, argv)
Expand source code
def comline(self, argv):
    #warnings.warn("Config Class obsolete, use ConfigLong")

    optletters = ""
    for aa in self.optarr:
        optletters += aa[0]
    #print( optletters    )
    # Create defaults:
    err = 0
    for bb in range(len(self.optarr)):
        if self.optarr[bb][1]:
            # Coerse type
            if type(self.optarr[bb][2]) == type(0):
                self.__dict__[self.optarr[bb][1]] = int(self.optarr[bb][2])
            if type(self.optarr[bb][2]) == type(.0):
                self.__dict__[self.optarr[bb][1]] = float(self.optarr[bb][2])
            if type(self.optarr[bb][2]) == type(""):
                self.__dict__[self.optarr[bb][1]] = str(self.optarr[bb][2])
    try:
        opts, args = getopt.getopt(argv, optletters)
    except getopt.GetoptError as err:
        print( "Invalid option(s) on command line:", err)
        raise
        return ()
    except:
        print(sys.exc_info())

    #print( "opts", opts, "args", args)
    for aa in opts:
        for bb in range(len(self.optarr)):
            if aa[0][1] == self.optarr[bb][0][0]:
                #print( "match", aa, self.optarr[bb])
                if len(self.optarr[bb][0]) > 1:
                    #print( "arg", self.optarr[bb][1], aa[1])
                    if self.optarr[bb][2] != None:
                        if type(self.optarr[bb][2]) == type(0):
                            self.__dict__[self.optarr[bb][1]] = int(aa[1])
                        if type(self.optarr[bb][2]) == type(.0):
                            self.__dict__[self.optarr[bb][1]] = float(aa[1])
                        if type(self.optarr[bb][2]) == type(""):
                            self.__dict__[self.optarr[bb][1]] = str(aa[1])
                else:
                    #print( "set", self.optarr[bb][1], self.optarr[bb][2])
                    if self.optarr[bb][2] != None:
                        self.__dict__[self.optarr[bb][1]] = 1
                    #print( "call", self.optarr[bb][3])
                    if self.optarr[bb][3] != None:
                        self.optarr[bb][3]()
    return args
class ConfigLong (optarr)
Expand source code
class ConfigLong:

    def __init__(self, optarr):

        ddd = dupoptcheck(optarr)
        if ddd:
            raise ValueError("Duplicate options on comline.", ddd)

        global gloptarr
        gloptarr = optarr
        self._optarr = optarr
        self.err = None

        # Create defaults:
        for bb in range(len(self._optarr)):
            if self._optarr[bb][2]:
                #print("init", self._optarr[bb][2],
                #            self._optarr[bb][3], type(self._optarr[bb][3]))
                # Coerse type
                if  self._optarr[bb][3] == None:
                    self.__dict__[self._optarr[bb][2]] = None
                elif type(self._optarr[bb][3]) == type(0):
                    self.__dict__[self._optarr[bb][2]] = int(self._optarr[bb][3])
                elif type(self._optarr[bb][3]) == type(0.):
                    self.__dict__[self._optarr[bb][2]] = float(self._optarr[bb][3])
                elif type(self._optarr[bb][3]) == type(""):
                    self.__dict__[self._optarr[bb][2]] = str(self._optarr[bb][3])
                else:
                    print("Can only have int and str type; not", type(self._optarr[bb][3]))
                    raise ValueError("Can only None, int, float and string type - not %s" \
                                             % (type(self._optarr[bb][3])))

    def printvars(self):
        print("Variables -----")
        for aa in dir(self):
            try:
                if aa[:2] == "__" :
                    continue
                if  aa != "_optarr" and  aa != "comline" and \
                            aa != "printvars" :
                    ff = getattr(self, aa)
                    if type(ff) == type(self.printvars):
                        fff = "function"
                    else:
                        fff = type(ff)
                    print(aa, ff, fff)
            except:
                pass
        print("End Variables -----")

    def comline(self, argv, pgdebug = 0):

        ''' Parse what is comong from the command line '''

        optletters = "";  longopt = []
        for aa in self._optarr:
            if aa[0] in optletters:
                print ("Warning: duplicate option", "'" + aa[0] + "'")
            #if len(aa[0]) > 1 and aa[0][1] != ':':
            optletters += aa[0]
            longopt.append(aa[1])

        #print("optleters", optletters, "longopt", longopt)

        try:
            opts, args = getopt.getopt(argv, optletters, longopt)
        #except getopt.GetoptError, err:
        except getopt.GetoptError as err:
            print("Invalid option(s) on command line: %s" % err)
            raise

        if pgdebug:
            print ("opts", opts, "args", args)
        for aa in opts:
            for bb in range(len(self._optarr)):
                ddd = None
                if aa[0][1] == "-":
                    ddd = "--" + self._optarr[bb][0]
                    eee = "--" + self._optarr[bb][1]
                elif aa[0][0] == "-":
                    ddd = "-" + self._optarr[bb][0]
                    eee = "-" + self._optarr[bb][1]
                else:
                    ddd = self._optarr[bb]

                if ddd[-1:] == "=":
                    ddd = ddd[:-1]
                    eee = eee[:-1]
                if ddd[-1:] == ":":
                    ddd = ddd[:-1]
                    eee = eee[:-1]

                if pgdebug:
                        print ("aa",  aa, "bb", bb, "one opt =", self._optarr[bb][:-1], ddd, eee)
                if aa[0] == ddd or aa[0] == eee:
                    #print ("match", aa, ddd)
                    if len(self._optarr[bb][0]) > 1:
                        if pgdebug:
                            print ("arg", self._optarr[bb][2], self._optarr[bb][3], aa)
                        if self._optarr[bb][3] != None:
                            if type(self._optarr[bb][3]) == type(0):
                                if aa[1][:2] == "0x" or aa[1][:2] == "0X":
                                    self.__dict__[self._optarr[bb][2]] = int(aa[1][2:], 16)
                                else:
                                    self.__dict__[self._optarr[bb][2]] = int(aa[1])
                                    pass

                            elif type(self._optarr[bb][2]) == type(""):
                                self.__dict__[self._optarr[bb][2]] = str(aa[1])
                    else:
                        if pgdebug:
                            print ("set 1",
                                self._optarr[bb][1], "set 2", self._optarr[bb][2],
                                    "set 3", self._optarr[bb][3])
                        if self._optarr[bb][3] != None:
                            self.__dict__[self._optarr[bb][2]] += 1
                        #print ("call", self.optarr[bb][3])
                        if self._optarr[bb][4] != None:
                            self._optarr[bb][4]()
        return args

Methods

def comline(self, argv, pgdebug=0)

Parse what is comong from the command line

Expand source code
def comline(self, argv, pgdebug = 0):

    ''' Parse what is comong from the command line '''

    optletters = "";  longopt = []
    for aa in self._optarr:
        if aa[0] in optletters:
            print ("Warning: duplicate option", "'" + aa[0] + "'")
        #if len(aa[0]) > 1 and aa[0][1] != ':':
        optletters += aa[0]
        longopt.append(aa[1])

    #print("optleters", optletters, "longopt", longopt)

    try:
        opts, args = getopt.getopt(argv, optletters, longopt)
    #except getopt.GetoptError, err:
    except getopt.GetoptError as err:
        print("Invalid option(s) on command line: %s" % err)
        raise

    if pgdebug:
        print ("opts", opts, "args", args)
    for aa in opts:
        for bb in range(len(self._optarr)):
            ddd = None
            if aa[0][1] == "-":
                ddd = "--" + self._optarr[bb][0]
                eee = "--" + self._optarr[bb][1]
            elif aa[0][0] == "-":
                ddd = "-" + self._optarr[bb][0]
                eee = "-" + self._optarr[bb][1]
            else:
                ddd = self._optarr[bb]

            if ddd[-1:] == "=":
                ddd = ddd[:-1]
                eee = eee[:-1]
            if ddd[-1:] == ":":
                ddd = ddd[:-1]
                eee = eee[:-1]

            if pgdebug:
                    print ("aa",  aa, "bb", bb, "one opt =", self._optarr[bb][:-1], ddd, eee)
            if aa[0] == ddd or aa[0] == eee:
                #print ("match", aa, ddd)
                if len(self._optarr[bb][0]) > 1:
                    if pgdebug:
                        print ("arg", self._optarr[bb][2], self._optarr[bb][3], aa)
                    if self._optarr[bb][3] != None:
                        if type(self._optarr[bb][3]) == type(0):
                            if aa[1][:2] == "0x" or aa[1][:2] == "0X":
                                self.__dict__[self._optarr[bb][2]] = int(aa[1][2:], 16)
                            else:
                                self.__dict__[self._optarr[bb][2]] = int(aa[1])
                                pass

                        elif type(self._optarr[bb][2]) == type(""):
                            self.__dict__[self._optarr[bb][2]] = str(aa[1])
                else:
                    if pgdebug:
                        print ("set 1",
                            self._optarr[bb][1], "set 2", self._optarr[bb][2],
                                "set 3", self._optarr[bb][3])
                    if self._optarr[bb][3] != None:
                        self.__dict__[self._optarr[bb][2]] += 1
                    #print ("call", self.optarr[bb][3])
                    if self._optarr[bb][4] != None:
                        self._optarr[bb][4]()
    return args
def printvars(self)
Expand source code
def printvars(self):
    print("Variables -----")
    for aa in dir(self):
        try:
            if aa[:2] == "__" :
                continue
            if  aa != "_optarr" and  aa != "comline" and \
                        aa != "printvars" :
                ff = getattr(self, aa)
                if type(ff) == type(self.printvars):
                    fff = "function"
                else:
                    fff = type(ff)
                print(aa, ff, fff)
        except:
            pass
    print("End Variables -----")