view mercurial/fancyopts.py @ 562:be6233a2bfdd

hg clone: only use the absolute path for .hg/hgrc -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hg clone: only use the absolute path for .hg/hgrc manifest hash: 7fb6a265249a3c910c0321eb1efc61c38429ac91 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxZ5mywK+sNU5EO8RApIwAJwKdex+GwoflS8vKY9h7qA1F4/Z8wCgjkWH VsKsuPsM97sluArdDZLZsbs= =0g6X -----END PGP SIGNATURE-----
author mpm@selenic.com
date Fri, 01 Jul 2005 11:49:58 -0800
parents f9ad1a2c72eb
children 9a8daeff0ffa
line wrap: on
line source

import os, getopt

def fancyopts(args, options, state, syntax='', minlen = 0):
    long=[]
    short=''
    map={}
    dt={}

    for s, l, d, c in options:
        map['-'+s] = map['--'+l]=l
        state[l] = d
        dt[l] = type(d)
        if not d is None and not callable(d): s, l=s+':', l+'='
        if s: short = short + s
        if l: long.append(l)

    if os.environ.has_key("HG_OPTS"):
        args = os.environ["HG_OPTS"].split() + args

    opts, args = getopt.getopt(args, short, long)

    for opt, arg in opts:
        if dt[map[opt]] is type(fancyopts): state[map[opt]](state,map[opt],arg)
        elif dt[map[opt]] is type(1): state[map[opt]] = int(arg)
        elif dt[map[opt]] is type(''): state[map[opt]] = arg
        elif dt[map[opt]] is type([]): state[map[opt]].append(arg)
        elif dt[map[opt]] is type(None): state[map[opt]] = 1

    return args