Changeset 4ec7caa for server/lib/ipprequest.py
- Timestamp:
- Nov 6, 2010, 4:27:10 PM (14 years ago)
- Branches:
- no-cups
- Children:
- d56a0bc
- Parents:
- 84e8137
- git-author:
- Jessica B. Hamrick <jhamrick@…> (11/06/10 16:27:10)
- git-committer:
- Jessica B. Hamrick <jhamrick@…> (11/06/10 16:27:10)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
server/lib/ipprequest.py
r84e8137 r4ec7caa 1 1 #!/usr/bin/python 2 2 3 import sys 4 5 # various tags 6 zero_name_length = 0x00 7 operation_attributes_tag = 0x01 8 job_attributes_tag = 0x02 9 end_of_attributes_tag = 0x03 10 printer_attributes_tag = 0x04 11 unsupported_attributes_tag = 0x05 12 13 # "out of band" value tags 14 oob_unsupported_value_tag = 0x10 15 oob_default_value_tag = 0x11 16 oob_unknown_value_tag = 0x12 17 oob_no_value_tag = 0x13 18 19 # integer value tags 20 generic_integer_value_tag = 0x20 21 integer_value_tag = 0x21 22 boolean_value_tag = 0x22 23 enum_value_tag = 0x23 24 25 # octetString value tags 26 unspecified_octetString_value_tag = 0x30 27 dateTime_value_tag = 0x31 28 resolution_value_tag = 0x32 29 rangeOfInteger_value_tag = 0x33 30 collection_value_tag = 0x34 31 textWithLanguage_value_tag = 0x35 32 nameWithLanguage_value_tag = 0x36 33 34 # character-string value tags 35 generic_char_string_value_tag = 0x40 36 textWithoutLanguage_value_tag = 0x41 37 nameWithoutLanguage_value_tag = 0x42 38 keyword_value_tag = 0x44 39 uri_value_tag = 0x45 40 uriScheme_value_tag = 0x46 41 charset_value_tag = 0x47 42 naturalLanguage_value_tag = 0x48 43 mimeMediaType_value_tag = 0x49 3 import sys, struct 4 5 class IPPTags(): 6 """ 7 Contains constants for the various IPP tags, as defined by RFC 8 2565. 9 """ 10 11 # various tags 12 ZERO_NAME_LENGTH = 0X00 13 OPERATION_ATTRIBUTES_TAG = 0X01 14 JOB_ATTRIBUTES_TAG = 0X02 15 END_OF_ATTRIBUTES_TAG = 0X03 16 PRINTER_ATTRIBUTES_TAG = 0X04 17 UNSUPPORTED_ATTRIBUTES_TAG = 0X05 18 19 # "out of band" value tags 20 UNSUPPORTED = 0X10 21 DEFAULT = 0X11 22 UNKNOWN = 0X12 23 NO_VALUE = 0X13 24 25 # integer value tags 26 GENERIC_INTEGER = 0X20 27 INTEGER = 0X21 28 BOOLEAN = 0X22 29 ENUM = 0X23 30 31 # octetstring value tags 32 UNSPECIFIED_OCTETSTRING = 0X30 33 DATETIME = 0X31 34 RESOLUTION = 0X32 35 RANGEOFINTEGER = 0X33 36 COLLECTION = 0X34 37 TEXTWITHLANGUAGE = 0X35 38 NAMEWITHLANGUAGE = 0X36 39 40 # character-string value tags 41 GENERIC_CHAR_STRING = 0X40 42 TEXTWITHOUTLANGUAGE = 0X41 43 NAMEWITHOUTLANGUAGE = 0X42 44 KEYWORD = 0X44 45 URI = 0X45 46 URISCHEME = 0X46 47 CHARSET = 0X47 48 NATURALLANGUAGE = 0X48 49 MIMEMEDIATYPE = 0X49 44 50 45 51 class IPPValue(): … … 69 75 assert value is not None 70 76 71 self.value_tag = value_tag72 self.name = name73 self.value = value77 self.value_tag = hex(value_tag) 78 self.name = str(name) 79 self.value = str(value) 74 80 75 81 class IPPAttribute(): 76 82 """ 83 In addition to what the RFC reports, an attribute has an 84 'attribute tag', which specifies what type of attribute it is. 85 It is 1 bytes long, and comes before the list of values. 86 77 87 From RFC 2565: 78 88 … … 123 133 for value in values: assert isinstance(value, IPPValue) 124 134 125 self.attribute_tag = attribute_tag135 self.attribute_tag = hex(attribute_tag) 126 136 self.values = values 127 137 … … 162 172 Keyword arguments for passing in the segments of the request: 163 173 164 version -- two bytes, identifying the version number of 165 the request 174 version -- a tuple of two signed chars, identifying the 175 major version and minor version numbers of the 176 request 166 177 167 operation_id -- two bytes, identifying the id of the178 operation_id -- a signed short, identifying the id of the 168 179 requested operation 169 180 170 request_id -- four bytes, identifying the id of the181 request_id -- a signed int, identifying the id of the 171 182 request itself. 172 183 173 attributes -- a list of IPPAttributes. May be empty.184 attributes -- (optional) a list of IPPAttributes 174 185 175 186 data -- (optional) variable length, containing the actual … … 185 196 # make sure the version number isn't empty 186 197 assert version is not None 187 # make sure the version number is two bytes long 188 assert sys.getsizeof(version) == 2 198 # make sure verison is a tuple of length 2 199 assert isinstance(version, tuple) 200 assert len(version) == 2 201 # make sure the major version number is one byte long 202 assert sys.getsizeof(version[0]) == 1 203 # make sure the minor version number is one byte long 204 assert sys.getsizeof(version[1]) == 1 189 205 # make sure the operation id isn't empty 190 206 assert operation_id is not None … … 199 215 # that file handle 200 216 if request is not None: 201 # read the version-number (two bytes)202 self.version = request.read(2)217 # read the version-number (two signed chars) 218 self.version = struct.unpack('bb', request.read(2)) 203 219 204 220 # read the operation-id (or status-code, but that's only 205 # for a response) ( two bytes)206 self.operation_id = request.read(2)207 208 # read the request-id ( 4 bytes)209 self.request_id = request.read(4)221 # for a response) (signed short) 222 self.operation_id = struct.unpack('h', request.read(2)) 223 224 # read the request-id (signed int) 225 self.request_id = struct.unpack('i', request.read(4)) 210 226 211 227 # now we have to read in the attributes. Each attribute … … 214 230 215 231 # read in the next byte 216 next_byte = request.read(1)232 next_byte = struct.unpack('b', request.read(1)) 217 233 218 234 # as long as the next byte isn't signaling the end of the 219 235 # attributes, keep looping and parsing attributes 220 while next_byte != end_of_attributes_tag:236 while next_byte != IPPTags.END_OF_ATTRIBUTES_TAG: 221 237 222 238 # if the next byte is an attribute tag, then we're at … … 225 241 226 242 attribute_tag = next_byte 227 # read in the value tag ( one byte)228 value_tag = request.read(1)229 # read in the length of the name ( two bytes)230 name_length = request.read(2)231 # read the name ( name_length bytes)232 name = request.read(name_length)233 # read in the length of the value ( two bytes)234 value_length = request.read(2)235 # read in the value ( value_length bytes)236 value = request.read(value_length)243 # read in the value tag (signed char) 244 value_tag = struct.unpack('b', request.read(1)) 245 # read in the length of the name (signed short) 246 name_length = struct.unpack('h', request.read(2)) 247 # read the name (a string of name_length bytes) 248 name = struct.unpack('s', request.read(name_length)) 249 # read in the length of the value (signed short) 250 value_length = struct.unpack('h', request.read(2)) 251 # read in the value (string of value_length bytes) 252 value = struct.unpack('b'*value_length, request.read(value_length)) 237 253 238 254 # create a new IPPAttribute from the data we just … … 249 265 # read in the length of the name (two bytes) -- 250 266 # this should be 0x0 251 name_length = request.read(2)267 name_length = struct.unpack('h', request.read(2)) 252 268 assert name_length == zero_name_length 253 269 # name should be empty 254 name = None270 name = '' 255 271 # read in the length of the value (two bytes) 256 value_length = request.read(2)272 value_length = struct.unpack('h', request.read(2)) 257 273 # read in the value (value_length bytes) 258 value = request.read(value_length)274 value = struct.unpack('b'*value_length, request.read(value_length)) 259 275 260 276 # add another value to the last attribute … … 262 278 263 279 # read another byte 264 next_byte = request.read(1)280 next_byte = struct.unpack('b', request.read(1)) 265 281 266 282 # once we hit the end-of-attributes tag, the only thing 267 283 # left is the data, so go ahead and read all of it 268 self.data = request.read() 284 buff = request.read() 285 self.data = struct.unpack('b'*len(buff), sys.getsizeof(buff)) 269 286 270 287 # otherwise, just set the class variables to the keyword 271 288 # arguments passed in 272 289 else: 273 self.version = version274 self.operation_id = operation_id275 self.request_id = request_id290 self.version = int(version) 291 self.operation_id = int(operation_id) 292 self.request_id = int(request_id) 276 293 self.attributes = attributes 277 294 self.data = data
Note: See TracChangeset
for help on using the changeset viewer.