summaryrefslogtreecommitdiffstats
path: root/client/bcfg2
blob: c8607a58a0813ea6bf09f7aac92d67ecfb27505c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/usr/bin/env python
from getopt import getopt, GetoptError
from os import popen, chmod, unlink
from sys import argv, exit
from string import join
from tempfile import mktemp

from elementtree.ElementTree import Element, XML, tostring

from sss.ssslib import comm_lib

from Debian import Debian

def RunProbe(probe):
    ret = Element("probe-data", name=probe.attrib['name'], source=probe.attrib['source'])
    script = open(mktemp(), 'w+')
    script.write("#!%s\n"%(probe.attrib.get('interpreter', '/bin/sh')))
    script.write(probe.text)
    script.close()
    chmod(script.name, 0755)             
    ret.text = popen(script.name).read()
    unlink(script.name)
    return ret

def dgetopt(arglist, opt, vopt):
    r = {}
    for o in opt.values() + vopt.values():
        r[o] = False
    gstr = join(opt.keys()) + join([x+':' for x in vopt.keys()])
    try:
        (o, a) = getopt(arglist, gstr)
    except GetoptError, g:
        print g
        print "bcfg2 Usage:"
        for (k,v) in opt.iteritems():
            print " -%s %s"%(k,v)
        for (k,v) in  vopt.iteritems():
            print " -%s <%s>"%(k,v)
        exit(1)
    for (gopt,garg) in o:
        option = gopt[1:]
        if opt.has_key(option):
            r[opt[option]] = True
        else:
            r[vopt[option]] = garg
    return r

if __name__ == '__main__':
    # parse command line options
    options =  {'v':'verbose','q':'quick', 'd':'debug', 'n':'dryrun', 'B':'build'}
    doptions = {'b':'bundle', 'f':'file', 'c':'cache'}
    setup = dgetopt(argv[1:], options, doptions)
    print setup

    # connect to bcfg2d
    comm = comm_lib()
    h = comm.ClientInit("bcfg2")

    # get probes
    comm.SendMessage(h, "<get-probes/>")
    data = comm.RecvMessage(h)
    if setup['verbose']: print data
    probes = XML(data)
    # execute probes
    probedata = map(RunProbe, probes.findall(".//probe"))
    
    # upload probe responses
    cpd = Element("probe-data")
    map(lambda x:cpd.append(x), probedata)

    if setup['verbose'] : print tostring(cpd)
    comm.SendMessage(h, tostring(cpd))
    r = comm.RecvMessage(h)
    # get config
    comm.SendMessage(h, "<get-config/>")
    r = comm.RecvMessage(h)
    if setup['cache']:
        try:
            open(setup['cache'], 'w').write(r)
        except:
            print "failed to write config cache file %s"%(setup['cache'])

    cfg = XML(r)
    if cfg.tag == 'error':
        print "got error from server"
        exit(1)

    # initialize toolset stuff
    toolset = Debian(cfg, setup)
    
    # verify state
    unexamined = cfg.getchildren()
    structurestate = {}
    entrystate = {}
    while unexamined:
        r = unexamined.pop()
        unexamined += r.getchildren()
        if r.tag in ['Bundle', 'Image']:
            structurestate[r] = False
            continue
        try:
            method = getattr(toolset, "Verify%s"%(r.tag))
        except:
            print ":failed: for %s :failed:"%(tostring(r))
            continue
        # verify state and stash value in state
        entrystate[r] = method(r)
        if setup['debug']:
            print r.attrib['name'], entrystate[r]

    # now we go back to check structures
    for structure in cfg.getchildren():
        for child in structure.getchildren():
            if not entrystate[child]:
                break
        structurestate[structure] = True

    for entry in [k for (k,v) in entrystate.iteritems() if not v]:
        method = getattr(toolset, "Install%s"%(entry.tag))
        entrystate[entry] = method(entry)

    for structure in structurestate.keys():
        if structurestate[structure]:
            continue
        for entry in structure.getchildren():
            entrystate[entry] = getattr(toolset, "Verify%s"%(entry.tag))
        states = map(lambda x:entrystate[x], structure.getchildren())
        if False not in states:
            structurestate[structure] = True

    #print entrystate
    print "good:",
    for k,v in entrystate.iteritems():
        if v:
            print k.attrib['name'],
            
    # install config
    # upload statistics
    comm.ClientClose(h)