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
|
# IVLE - Informatics Virtual Learning Environment
# Copyright (C) 2007-2008 The University of Melbourne
#
# 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
# Module: util
# Author: Matt Giuca
# Date: 12/12/2007
# Contains common utility functions.
import os
class IVLEError(Exception):
"""Legacy general IVLE exception.
This is the old "standard" exception class for IVLE errors. It is only
used in fileservice, and should not be used in any new code.
"""
def __init__(self, httpcode, message=None):
self.httpcode = httpcode
self.message = message
self.args = (httpcode, message)
class IVLEJailError(Exception):
"""Exception proxying an in-jail error.
This exception indicates an error that occurred inside an IVLE CGI script
inside the jail. It should never be raised directly - only by the
interpreter.
Information will be retrieved from it, and then treated as a normal
error.
"""
def __init__(self, type_str, message, info):
self.type_str = type_str
self.message = message
self.info = info
class FakeObject(object):
""" A representation of an object that can't be Pickled """
def __init__(self, type, name, attrib={}):
self.type = type
self.name = name
self.attrib = attrib
def __repr__(self):
return "<Fake %s %s>"%(self.type, self.name)
def split_path(path):
"""Given a path, returns a tuple consisting of the top-level directory in
the path, and the rest of the path. Note that both items in the tuple will
NOT begin with a slash, regardless of whether the original path did. Also
normalises the path.
Always returns a pair of strings, except for one special case, in which
the path is completely empty (or just a single slash). In this case the
return value will be (None, ''). But still always returns a pair.
Examples:
>>> split_path("")
(None, '')
>>> split_path("/")
(None, '')
>>> split_path("home")
('home', '')
>>> split_path("home/docs/files")
('home', 'docs/files')
>>> split_path("//home/docs/files")
('', 'home/docs/files')
"""
path = os.path.normpath(path)
# Ignore the opening slash
if path.startswith(os.sep):
path = path[len(os.sep):]
if path == '' or path == '.':
return (None, '')
splitpath = path.split(os.sep, 1)
if len(splitpath) == 1:
return (splitpath[0], '')
else:
return tuple(splitpath)
def incomplete_utf8_sequence(byteseq):
"""Calculate the completeness of a UTF-8 encoded string.
Given a UTF-8-encoded byte sequence (str), returns the number of bytes at
the end of the string which comprise an incomplete UTF-8 character
sequence.
If the string is empty or ends with a complete character OR INVALID
sequence, returns 0.
Otherwise, returns 1-3 indicating the number of bytes in the final
incomplete (but valid) character sequence.
Does not check any bytes before the final sequence for correctness.
>>> incomplete_utf8_sequence("")
0
>>> incomplete_utf8_sequence("xy")
0
>>> incomplete_utf8_sequence("xy\xc3\xbc")
0
>>> incomplete_utf8_sequence("\xc3")
1
>>> incomplete_utf8_sequence("\xbc\xc3")
1
>>> incomplete_utf8_sequence("xy\xbc\xc3")
1
>>> incomplete_utf8_sequence("xy\xe0\xa0")
2
>>> incomplete_utf8_sequence("xy\xf4")
1
>>> incomplete_utf8_sequence("xy\xf4\x8f")
2
>>> incomplete_utf8_sequence("xy\xf4\x8f\xa0")
3
"""
count = 0
expect = None
for b in byteseq[::-1]:
b = ord(b)
count += 1
if b & 0x80 == 0x0:
# 0xxxxxxx (single-byte character)
expect = 1
break
elif b & 0xc0 == 0x80:
# 10xxxxxx (subsequent byte)
pass
elif b & 0xe0 == 0xc0:
# 110xxxxx (start of 2-byte sequence)
expect = 2
break
elif b & 0xf0 == 0xe0:
# 1110xxxx (start of 3-byte sequence)
expect = 3
break
elif b & 0xf8 == 0xf0:
# 11110xxx (start of 4-byte sequence)
expect = 4
break
else:
# Invalid byte
return 0
if count >= 4:
# Seen too many "subsequent bytes", invalid
return 0
if expect is None:
# We never saw a "first byte", invalid
return 0
# We now know expect and count
if count >= expect:
# Complete, or we saw an invalid sequence
return 0
elif count < expect:
# Incomplete
return count
def object_to_dict(attrnames, obj):
"""Convert an object into a dictionary.
This takes a shallow copy of the object.
@param attrnames: Set (or iterable) of names of attributes to be copied
into the dictionary. (We don't auto-lookup, because this
function needs to be used on magical objects).
"""
return dict((k, getattr(obj, k))
for k in attrnames if not k.startswith('_'))
|