/usr/bin/dctrl2xml is in dctrl2xml 0.19.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | #!/usr/bin/python
# -*- coding: utf-8 -*-
#
# dctrl2xml - Debian control data to XML converter
# Copyright © 2005-2010 by Frank S. Thomas <fst@debian.org>
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
import bz2, gzip, zipfile
import json
import optparse
import re
import sys
import time
import types
from xml.etree.cElementTree import Element, tostring
from debian import deb822
__author__ = 'Frank S. Thomas'
__version__ = '0.18'
class DebianControlParser:
def __init__(self):
self.pkg = {}
self.contacts = ['changed-by', 'maintainer', 'uploaders',
'xsbc-original-maintainer', 'original-maintainer', 'drivers']
self.relations = ['breaks', 'build-conflicts', 'build-conflicts-indep',
'build-depends', 'build-depends-indep', 'conflicts', 'depends',
'enhances', 'pre-depends', 'provides', 'recommends', 'replaces',
'suggests']
def parse_package_string(self, pkg_str):
self.pkg = deb822.Deb822(pkg_str)
pkg = {}
for orig_field in self.pkg:
field = orig_field.lower()
if field in self.contacts:
pkg[field] = self.parse_contacts(self.pkg[field])
elif field in self.relations:
pkg[field] = self.parse_relations(self.pkg[field])
elif field == 'package':
pkg['name'] = self.pkg[field]
elif field == 'date':
pkg[field] = self.pkg[field]
pkg['date_iso8601'] = self.parse_date(self.pkg[field].strip())
elif field in ['files', 'checksums-sha1', 'checksums-sha256']:
pkg[field] = self.parse_filelist(self.pkg[field])
elif field == 'conffiles':
pkg[field] = self.parse_conffilelist(self.pkg[field])
elif field == 'description':
m_newline = re.search(r'\n', self.pkg[field])
if m_newline:
synopsis = self.pkg[field][:m_newline.start()].strip()
extended = self.pkg[field][m_newline.end():]
if len(synopsis) == 0:
pkg[field] = extended
else:
pkg[field] = synopsis
pkg['long-description'] = extended
else:
pkg[field] = self.pkg[field]
elif field == 'tag':
pkg[field] = self.parse_debtags(self.pkg[field])
elif field == 'closes':
pkg[field] = self.parse_xsv(self.pkg[field], ' ', 'bug')
elif field == 'python-version':
pkg[field] = self.parse_xsv(self.pkg[field], ',', 'version')
else:
pkg[field] = self.pkg[field]
self.pkg = pkg
return self.pkg
def parse_contacts(self, contacts_str):
"""Parse data of the Maintainer, Uploaders, and Changed-By fields."""
split_re = r'\s*((.+?)\s+?<(.+?)>,?|(.+?)\s+?\((.+?)\),?)'
s_cons = re.split(split_re, contacts_str)
if len(s_cons) < 6:
self._err('E: could not parse contact: ' + contacts_str)
return contacts_str
contacts = []
for contact in [s_cons[x:x+6] for x in range(0, len(s_cons), 6)]:
if len(contact) != 6:
continue
elif contact[2] and contact[3]:
c_dict = {'name': contact[2], 'email': contact[3]}
elif contact[5] and contact[4]:
c_dict = {'name': contact[5], 'email': contact[4]}
contacts.append({'contact': c_dict})
return contacts
def parse_filelist(self, files_str):
"""Parse lines of different file types in the File field."""
files = {}
files_re = {'deb': r'.*\.deb',
'dsc': r'.*\.dsc',
'diff': r'.*\.diff\.gz',
'tarball': r'.*\.tar\.(gz|bz2|lzma)'}
for line in files_str.split('\n'):
m_file = re.match(r'^\s*([\da-f]{32}.*)', line)
if m_file:
fields = m_file.group(1).split()
for ftype, file_re in files_re.iteritems():
if re.search(file_re, fields[-1]):
files[ftype] = {'checksum': fields[0],
'size': fields[1]}
if len(fields) == 3:
files[ftype]['filename'] = fields[2]
elif len(fields) == 5:
files[ftype]['section'] = fields[2]
files[ftype]['priority'] = fields[3]
files[ftype]['filename'] = fields[4]
elif line.strip():
self._err('E: could not parse File line: ' + line)
return files
def parse_conffilelist(self, conffiles_str):
"""Parse the list of conffiles in the Conffiles field."""
conffiles = []
for line in conffiles_str.split('\n'):
m_cfile = re.match(r'^\s*(.+)\s+([\da-f]{32})', line)
if m_cfile:
cfile = {'conffile': {'name': m_cfile.group(1),
'md5sum': m_cfile.group(2)}}
conffiles.append(cfile)
elif line.strip():
self._err('E: could not parse Conffiles line: ' + line)
return conffiles
def parse_relations(self, relations_str):
"""Parse a comma separated list of package relations."""
relations_list = []
for relation in relations_str.split(','):
if re.search('\|', relation):
alts = relation.split('|')
alts_list = [self.parse_relation(alt) for alt in alts]
relations_list.append({'alternative': alts_list})
else:
relations_list.append(self.parse_relation(relation))
return relations_list
def parse_relation(self, relation_str):
"""Parse a single package relation string."""
relation = {}
relation_re = r'([\w+-.]*)\s*(\(\s*([<>=]{1,2})\s*(.*)\s*\))?' \
'\s*(\[(.*)\])?'
m_rel = re.match(relation_re, relation_str.strip())
if m_rel:
if m_rel.group(1):
relation['name'] = m_rel.group(1)
if m_rel.group(2):
relation['relation'] = m_rel.group(3)
relation['version'] = m_rel.group(4)
if m_rel.group(6):
archs = m_rel.group(6).split()
arch_list = []
not_arch_list = []
for arch in archs:
if arch[0] == '!':
arch_list.append({'name': arch})
else:
not_arch_list.append({'name': arch})
if len(arch_list) != 0:
relation['arch'] = arch_list
if len(not_arch_list) != 0:
relation['arch'] = not_arch_list
return {'package': relation}
def parse_debtags(self, debtags_str):
"""Parse the field data of the Tag field (the package's Debtags)."""
debtags = {}
for tag_str in debtags_str.split(', '):
tag_splitted = tag_str.strip().split('::', 1)
if len(tag_splitted) != 2:
self._err('W: corrupted tag detected: ' + str(tag_splitted))
continue
else:
(facet, tag) = tag_splitted
# Replace some characters from tags, otherwise the resulting XML
# would not be valid.
tag = tag.replace(':', '-').replace('+', 'p')
tag = re.sub(r'(^|\W)(\d)', '\g<1>_\g<2>', tag)
if not debtags.has_key(facet):
debtags[facet] = []
# Handle compressed tags, such as "use::{configuring,monitor}".
c_tags = re.match(r'{(.*)}', tag)
if c_tags:
for c_tag in c_tags.group(1).split(','):
debtags[facet].append({c_tag: ''})
else:
debtags[facet].append({tag: ''})
return debtags
def parse_date(self, date_str):
"""Convert an arbitrary formatted date into its ISO 8601
representation."""
re_rfc2822 = r'\w+,\s+\d{1,2}\s+\w+\s+\d{4}\s+\d{2}:\d{2}:\d{2}'
if re.match(re_rfc2822, date_str):
bare_date_str = date_str[:25]
if date_str.endswith('UTC'):
zone_str = 'Z'
else:
zone_str = date_str[-5:]
date = time.strptime(bare_date_str, '%a, %d %b %Y %H:%M:%S')
return time.strftime('%Y-%m-%dT%H:%M:%S', date) + zone_str
else:
return date_str
def parse_xsv(self, xsv_str, sep, element):
"""Parse a list of X separated values (XSV)."""
return [{element: v.strip()} for v in xsv_str.split(sep)]
def _err(self, error_msg):
"""Print an error message to standard error."""
print >> sys.stderr, error_msg
return
class JSONStringifier:
def __init__(self):
pass
def header(self):
return '[\n'
def footer(self):
return '\n]\n'
def separator(self):
return ',\n'
def package(self, pkg):
return json.dumps(pkg, indent=2, sort_keys=True)
class XMLStringifier:
def __init__(self):
pass
def header(self):
return '<?xml version="1.0" encoding="UTF-8"?>\n' \
'<packages generator="dctrl2xml/' + __version__ + '">\n'
def footer(self):
return '</packages>\n'
def separator(self):
return ''
def package(self, pkg):
node = Element('package')
for name, value in pkg.iteritems():
node.append(self._create_node(name, value))
return tostring(node) + '\n'
def _create_node(self, name, value):
node = Element(name)
if isinstance(value, types.StringTypes):
node.text = value
elif isinstance(value, dict):
for new_name in value:
child = self._create_node(new_name, value[new_name])
node.append(child)
elif isinstance(value, list):
for item in value:
for new_name, new_value in item.iteritems():
child = self._create_node(new_name, new_value)
node.append(child)
return node
def main():
opts = parse_options()
fobj_in = get_file_obj(opts.filename)
fobj_out = sys.stdout
stringifier = {
'JSON': JSONStringifier,
'XML': XMLStringifier
}[opts.format]()
parser = DebianControlParser()
stringify_package = lambda data: stringifier.package(
parser.parse_package_string(data))
fobj_out.write(stringifier.header())
data = ''
for line in fobj_in:
data += line
if line.isspace():
break
if data.strip():
fobj_out.write(stringify_package(data))
data = ''
for line in fobj_in:
data += line
if line.isspace():
if data.strip():
fobj_out.write(
stringifier.separator() +
stringify_package(data))
data = ''
if data.strip():
fobj_out.write(
stringifier.separator() +
stringify_package(data))
fobj_out.write(stringifier.footer())
fobj_in.close()
return
def get_file_obj(filename):
"""Return an appropriate file object for filename."""
if filename == '':
file_obj = sys.stdin
else:
extension = filename.split('.')[-1]
if extension == 'gz':
file_obj = gzip.GzipFile
elif extension == 'bz2':
file_obj = bz2.BZ2File
elif zipfile.is_zipfile(filename):
file_obj = zipfile.ZipFile
else:
file_obj = file
try:
file_obj = file_obj(filename, 'r')
except IOError, error:
print >> sys.stderr, error.__str__()
sys.exit(error.args[0])
return file_obj
def parse_options():
"""Parse dctrl2xml's command line options."""
parser = optparse.OptionParser(version="%prog " + __version__)
parser.add_option('-f', '--file',
dest='filename', default='', metavar='FILE',
help='read control data from file FILE instead of stdin')
parser.add_option('-x', '--xml', action='store_const',
dest='format', const='XML', default='XML',
help='use XML as output format (default)')
parser.add_option('-j', '--json', action='store_const',
dest='format', const='JSON',
help='use JSON as output format')
opts = parser.parse_args()[0]
return opts
if __name__ == '__main__':
main()
|