summaryrefslogtreecommitdiff
path: root/morphlib/buildworker.py
blob: 3353b5521f35bf28492a94d4e530a2882de40ddb (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# Copyright (C) 2012  Codethink Limited
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import datetime
from multiprocessing import Manager, Process

import morphlib


class BuildWorker(object):

    def __init__(self, name, ident, app):
        self.name = name
        self.ident = ident
        self.settings = app.settings
        self.real_msg = app.msg
        self.indent = 2
        self.idle_since = datetime.datetime.now()
        self.manager = Manager()
        self.reset()

    def indent_more(self):
        self.indent += 1

    def indent_less(self):
        self.indent -= 1

    def msg(self, text):
        spaces = '  ' * self.indent
        self.real_msg('%s%s' % (spaces, text))

    def reset(self):
        self.process = None
        self.blob = None
        self._output = self.manager.list()
        self._error = self.manager.dict()

    def build(self, blob):
        raise NotImplementedError

    def check_complete(self, timeout):
        if self.process:
            self.process.join(timeout)
            if self.process.is_alive():
                return False
            else:
                self.idle_since = datetime.datetime.now()
                return True
        else:
            return True

    @property
    def output(self):
        try:
            return self._output[0]
        except IndexError:
            return None

    @property
    def error(self):
        return self._error

    def options(self):
        '''Returns an array of command line options for the settings.
        
        NOTE: This is just a hack that uses internals of the cliapp.Settings
        class. We need to merge this kind of functionality into cliapp and
        remove this hack!
        
        '''

        # use the canonical names of the settings to generate cmdline options
        names = list(self.settings._canonical_names)

        # internal function to combine an option name and a value into string
        def combine(name, value):
            if name.startswith('--'):
                if isinstance(value, bool):
                    if value:
                        return '%s' % name
                else:
                    return '%s=%s' % (name, value)
            else:
                if isinstance(value, bool):
                    if value:
                        return '%s' % name
                else:
                    return '%s %s' % (name, value)

        # generate a list of (setting name, option name) pairs
        options_list = []
        options = self.settings._option_names(names)
        name_pairs = [(names[i], options[i]) for i in xrange(0, len(names))]

        # convert all settings into command line arguments; drop absent
        # settings and make sure to convert all values correctly
        for name, option in name_pairs:
            value = self.settings[name]
            if isinstance(value, list):
                for listval in value:
                    if isinstance(listval, str):
                        if len(listval) > 0:
                            string = combine(option, listval)
                            if string:
                                options_list.append(string)
                    else:
                        string = combine(option, listval)
                        if string:
                            options_list.append(string)
            else:
                if isinstance(value, str):
                    if len(value) > 0:
                        string = combine(option, value)
                        if string:
                            options_list.append(string)
                else:
                    string = combine(option, value)
                    if string:
                        options_list.append(string)
        return options_list

    def __str__(self):
        return self.name


class LocalBuildWorker(BuildWorker):

    def __init__(self, name, ident, app):
        BuildWorker.__init__(self, name, ident, app)

    def run(self, repo, ref, filename, output, error):
        ex = morphlib.execute.Execute('.', self.msg)

        # generate command line options
        args = self.options()
        cmdline = ['morph', 'build', repo, ref, filename]
        cmdline.extend(args)

        # run morph locally in a child process
        try:
            stdout = ex.runv(cmdline)
            output.append(stdout)
        except OSError, e:
            error['error'] = str(e)
            error['command'] = ' '.join(cmdline)
        except morphlib.execute.CommandFailure, e:
            error['error'] = str(e)
            error['command'] = ' '.join(cmdline)
        
    def build(self, blob):
        self.reset()
        self.blob = blob
        args = (blob.morph.treeish.original_repo,
                blob.morph.treeish.ref,
                blob.morph.filename,
                self._output,
                self._error)
        self.process = Process(group=None, target=self.run, args=args)
        self.process.start()


class RemoteBuildWorker(BuildWorker):

    def __init__(self, name, ident, app):
        BuildWorker.__init__(self, name, ident, app)
        self.hostname = ident

    def run(self, repo, ref, filename, sudo, output, error):
        ex = morphlib.execute.Execute('.', self.msg)

        # generate command line options
        args = self.options()
        cmdline = ['ssh']
        if sudo:
            cmdline.extend(['-t', '-t', '-t', self.hostname, 'sudo', '-S'])
        else:
            cmdline.extend([self.hostname, 'fakeroot'])
        cmdline.extend(['morph', 'build', repo, ref, filename])
        cmdline.extend(args)

        # run morph on the other machine
        try:
            stdout = ex.runv(cmdline)
            output.append(stdout)
        except OSError, e:
            error['error'] = str(e)
            error['command'] = ' '.join(cmdline)
        except morphlib.execute.CommandFailure, e:
            error['error'] = str(e)
            error['command'] = ' '.join(cmdline)
        
    def build(self, blob):
        self.reset()
        self.blob = blob
        args = (blob.morph.treeish.original_repo,
                blob.morph.treeish.ref,
                blob.morph.filename,
                blob.morph.kind == 'system',
                self._output,
                self._error)
        self.process = Process(group=None, target=self.run, args=args)
        self.process.start()