aboutsummaryrefslogblamecommitdiffstats
path: root/libbe/cmdutil.py
blob: 752f0e64bc0f9dfdafc7185fc0d47929396d3a39 (plain) (tree)
1
2
3
4
5
6
7
8
9
                           






                                                          
 


                                     

                           
                

                               







                                                                       









                                                                            





                           

                                                           


                                                                       
def unique_name(bug, bugs):
    chars = 1
    for some_bug in bugs:
        if bug.uuid == some_bug.uuid:
            continue
        while (bug.uuid[:chars] == some_bug.uuid[:chars]):
            chars+=1
    return bug.uuid[:chars]

class UserError(Exception):
    def __init__(self, msg):
        Exception.__init__(self, msg)

def get_bug(spec, bug_dir):
    matches = []
    bugs = list(bug_dir.list())
    for bug in bugs:
        if bug.uuid.startswith(spec):
            matches.append(bug)
    if len(matches) > 1:
        raise UserError("More than one bug matches %s.  Please be more"
                        " specific." % spec)
    if len(matches) == 1:
        return matches[0]
        
    matches = []
    for bug in bugs:
        if bug.name == spec:
            matches.append(bug)
    if len(matches) > 1:
        raise UserError("More than one bug has the name %s.  Please use the"
                        " uuid." % spec)
    if len(matches) == 0:
        raise UserError("No bug has the name %s" % spec)
    return matches[0]

def bug_summary(bug, bugs):
    target = bug.target
    if target is None:
        target = ""
    else:
        target = "  target: %s" % target
    return "Id: %s  Severity: %s%s  Creator: %s \n%s\n" % \
            (unique_name(bug, bugs), bug.severity, target, bug.creator,
             bug.summary)