~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/console.py

  • Committer: William Grant
  • Date: 2009-07-05 12:23:11 UTC
  • mto: (1294.4.2 ui-the-third)
  • mto: This revision was merged to the branch mainline in revision 1353.
  • Revision ID: grantw@unimelb.edu.au-20090705122311-wfyih6snxs4c144p
Recenter the breadcrumb text.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
import cjson
34
34
 
35
 
from ivle import chat, interpret
 
35
from ivle import chat
36
36
 
37
37
class ConsoleError(Exception):
38
38
    """ The console failed in some way. This is bad. """
39
 
    pass
 
39
    def __init__(self, value):
 
40
        self.value = value
 
41
    def __str__(self):
 
42
        return repr(self.value)
40
43
 
41
44
class ConsoleException(Exception):
42
45
    """ The code being exectuted on the console returned an exception. 
43
46
    """
44
 
    pass
 
47
    def __init__(self, value):
 
48
        self.value = value
 
49
    def __str__(self):
 
50
        return repr(self.value)
45
51
 
46
52
class TruncateStringIO(StringIO.StringIO):
47
53
    """ A class that wraps around StringIO and truncates the buffer when the 
108
114
class Console(object):
109
115
    """ Provides a nice python interface to the console
110
116
    """
111
 
    def __init__(self, config, user, jail_path, working_dir):
 
117
    def __init__(self, config, uid, jail_path, working_dir):
112
118
        """Starts up a console service for user uid, inside chroot jail 
113
119
        jail_path with work directory of working_dir
114
120
        """
115
121
        super(Console, self).__init__()
116
122
 
117
123
        self.config = config
118
 
        self.user = user
 
124
        self.uid = uid
119
125
        self.jail_path = jail_path
120
126
        self.working_dir = working_dir
121
127
 
152
158
        # is (k / N) ** t (e.g. 3.2*10e-9).
153
159
 
154
160
        tries = 0
155
 
        error = None
156
161
        while tries < 5:
157
162
            self.port = int(random.uniform(3000, 8000))
158
163
 
159
 
            python_console = os.path.join(self.config['paths']['share'],
160
 
                        'services/python-console')
161
 
            args = [python_console, str(self.port), str(self.magic)]
162
 
 
163
 
            try:
164
 
                interpret.execute_raw(self.config, self.user, self.jail_path,
165
 
                        self.working_dir, "/usr/bin/python", args)
 
164
            trampoline_path = os.path.join(self.config['paths']['lib'],
 
165
                                           "trampoline")
 
166
 
 
167
            # Start the console server (port, magic)
 
168
            # trampoline usage: tramp uid jail_dir working_dir script_path args
 
169
            # console usage:    python-console port magic
 
170
            res = os.spawnv(os.P_WAIT, trampoline_path, [
 
171
                trampoline_path,
 
172
                str(self.uid),
 
173
                self.config['paths']['jails']['mounts'],
 
174
                self.config['paths']['jails']['src'],
 
175
                self.config['paths']['jails']['template'],
 
176
                self.jail_path,
 
177
                os.path.join(self.config['paths']['share'], 'services'),
 
178
                "/usr/bin/python",
 
179
                os.path.join(self.config['paths']['share'],
 
180
                             'services/python-console'),
 
181
                str(self.port),
 
182
                str(self.magic),
 
183
                self.working_dir
 
184
                ])
 
185
 
 
186
            if res == 0:
166
187
                # success
167
 
                break
168
 
            except interpret.ExecutionError, e:
169
 
                tries += 1
170
 
                error = e.message
171
 
 
172
 
        # If we can't start the console after 5 attemps (can't find a free 
173
 
        # port during random probing, syntax errors, segfaults) throw an 
174
 
        # exception.
 
188
                break;
 
189
 
 
190
            tries += 1
 
191
 
 
192
        # If we can't start the console after 5 attemps (can't find a free port 
 
193
        # during random probing, syntax errors, segfaults) throw an exception.
175
194
        if tries == 5:
176
 
            raise ConsoleError('Unable to start console service: %s'%error)
 
195
            raise ConsoleError("Unable to start console service!")
177
196
 
178
197
    def __chat(self, cmd, args):
179
198
        """ A wrapper around chat.chat to comunicate directly with the 
194
213
            # Couldn't decode the JSON
195
214
            raise ConsoleError(
196
215
                "Could not understand the python console response")
197
 
        except chat.ProtocolError, e:
198
 
            raise ConsoleError(*e.args)
199
216
 
200
217
        return response
201
218
 
280
297
              
281
298
        # Unpickle any exceptions
282
299
        if 'exception' in execute:
283
 
            execute['exception'] = cPickle.loads(execute['exception'])
284
 
        return execute
 
300
            return cPickle.loads(execute['exception'])
 
301
        else:
 
302
            return execute
285
303
 
286
304
 
287
305
    def set_vars(self, variables):