This file is indexed.

/usr/share/pyshared/gquilt_pkg/putils.py is in gquilt 0.25-2build1.

This file is owned by root:root, with mode 0o644.

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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
### Copyright (C) 2010 Peter Williams <peter_ono@users.sourceforge.net>

### 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 only.

### 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

'''Provide functions for manipulating patch files and/or text buffers'''

import re
import os.path
import shutil
import tempfile
import collections

from gquilt_pkg import utils, fsdb
from gquilt_pkg import const

_DIFFSTAT_EMPTY = re.compile("^#? 0 files changed$")
_DIFFSTAT_END = re.compile("^#? (\d+) files? changed(, (\d+) insertions?\(\+\))?(, (\d+) deletions?\(-\))?(, (\d+) modifications?\(\!\))?$")
_DIFFSTAT_FSTATS = re.compile("^#? (\S+)\s*\|((binary)|(\s*(\d+)(\s+\+*-*\!*)?))$")

_TIMESTAMP_RE_STR = '(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{9} [-+]{1}\d{4})'
_ALT_TIMESTAMP_RE_STR = '([A-Z][a-z]{2} [A-Z][a-z]{2} \d{2} \d{2}:\d{2}:\d{2} \d{4} [-+]{1}\d{4})'
_EITHER_TS_RE = '(%s|%s)' % (_TIMESTAMP_RE_STR, _ALT_TIMESTAMP_RE_STR)

_UDIFF_H1 = re.compile('^--- (.*?)(\s+%s)?$' % _EITHER_TS_RE)
_UDIFF_H2 = re.compile('^\+\+\+ (.*?)(\s+%s)?$' % _EITHER_TS_RE)
_UDIFF_PD = re.compile("^@@\s+-(\d+)(,(\d+))?\s+\+(\d+)(,(\d+))?\s+@@\s*(.*)$")

_GIT_HDR_DIFF = re.compile("^diff --git (.*)$")
_GIT_OLD_MODE = re.compile('^old mode (\d*)$')
_GIT_NEW_MODE = re.compile('^new mode (\d*)$')
_GIT_DELETED_FILE_MODE = re.compile('^deleted file mode (\d*)$')
_GIT_NEW_FILE_MODE = re.compile('^new file mode (\d*)$')
_GIT_COPY_FROM = re.compile('^copy from (.*)$')
_GIT_COPY_TO = re.compile('^copy to (.*)$')
_GIT_RENAME_FROM = re.compile('^rename from (.*)$')
_GIT_RENAME_TO = re.compile('^rename to (.*)$')
_GIT_SIMILARITY_INDEX = re.compile('^similarity index (\d*)%$')
_GIT_DISSIMILARITY_INDEX = re.compile('^dissimilarity index (\d*)%$')
_GIT_INDEX = re.compile('^index ([a-fA-F0-9]+)..([a-fA-F0-9]+) (\d*)%$')

_GIT_EXTRAS = \
[
    _GIT_OLD_MODE, _GIT_NEW_MODE, _GIT_DELETED_FILE_MODE, _GIT_NEW_FILE_MODE,
    _GIT_COPY_FROM, _GIT_COPY_TO, _GIT_RENAME_FROM, _GIT_RENAME_TO,
    _GIT_SIMILARITY_INDEX, _GIT_DISSIMILARITY_INDEX, _GIT_INDEX
]

_CDIFF_H1 = re.compile("^\*\*\* (\S+)\s*(.*)$")
_CDIFF_H2 = re.compile("^--- (\S+)\s*(.*)$")
_CDIFF_H3 = re.compile("^\*+$")
_CDIFF_CHG = re.compile("^\*+\s+(\d+)(,(\d+))?\s+\*+\s*(.*)$")
_CDIFF_DEL = re.compile("^-+\s+(\d+)(,(\d+))?\s+-+\s*(.*)$")

_HDR_INDEX = re.compile("^Index:\s+(.*)$")
_HDR_DIFF = re.compile("^diff\s+(.*)$")
_HDR_SEP = re.compile("^==*$")
_HDR_RCS1 = re.compile("^RCS file:\s+(.*)$")
_HDR_RCS2 = re.compile("^retrieving revision\s+(\d+(\.\d+)*)$")

_BLANK_LINE = re.compile("^\s*$")
_DIVIDER_LINE = re.compile("^---$")

def _udiff_starts_at(lines, i):
    """
    Return whether the ith line in lines is the start of a unified diff

    Arguments:
    lines -- the list of lines to be examined
    i     -- the line number to be examined
    """
    if (i + 2) >= len(lines):
        return False
    if not _UDIFF_H1.match(lines[i]):
        return False
    if not _UDIFF_H2.match(lines[i + 1]):
        return False
    return _UDIFF_PD.match(lines[i + 2])

def _is_git_extra_line(line):
    """
    Return whether the line is a git diff "extra" line

    Argument:
    line -- theline to be examined
    """
    for regex in _GIT_EXTRAS:
        match = regex.match(line)
        if match:
            return (regex, match)
    return False

def _git_diff_starts_at(lines, i):
    """
    Return whether the ith line in lines is the start of a git diff

    Arguments:
    lines -- the list of lines to be examined
    i     -- the line number to be examined
    """
    if i < len(lines) and _GIT_HDR_DIFF.match(lines[i]):
        i += 1
    else:
        return False
    extra_count = 0
    while i < len(lines) and _is_git_extra_line(lines[i]):
        i += 1
        extra_count += 1
    if extra_count == 0:
        return _udiff_starts_at(lines, i)
    elif i < len(lines):
        return _GIT_HDR_DIFF.match(lines[i]) or _udiff_starts_at(lines, i)
    else:
        return True

def _cdiff_starts_at(lines, i):
    """
    Return whether the ith line in lines is the start of a combined diff

    Arguments:
    lines -- the list of lines to be examined
    i     -- the line number to be examined
    """
    if (i + 3) >= len(lines):
        return False
    if not _CDIFF_H1.match(lines[i]):
        return False
    if not _CDIFF_H2.match(lines[i + 1]):
        return False
    if not _CDIFF_H3.match(lines[i + 2]):
        return False
    return _CDIFF_CHG.match(lines[i + 3]) or  _CDIFF_DEL.match(lines[i + 3])

def _trisect_patch_lines(lines):
    """
    Return indices splitting lines into comments, stats and diff parts

    Arguments:
    lines -- the list of lines to be trisected

    Return a two tuple indicating start of stats and diff parts.
    For stats part provide integer index of first stats line or None if
    the stats part is not present.
    For diff part provide a two tuple (index of first diff line, diff type)
    or None if the diff part is not present.
    """
    n = len(lines)
    patch_type = None
    patch_si = None
    diffstat_si = None
    i = 0
    while i < n:
        if _DIFFSTAT_EMPTY.match(lines[i]):
            diffstat_si = i
        elif _DIFFSTAT_FSTATS.match(lines[i]):
            k = 1
            while (i + k) < n and _DIFFSTAT_FSTATS.match(lines[i + k]):
                k += 1
            if (i + k) < n and _DIFFSTAT_END.match(lines[i + k]):
                diffstat_si = i
                i += k
            else:
                diffstat_si = None
                i += k - 1
        elif _git_diff_starts_at(lines, i):
            patch_si = i
            patch_type = 'git'
            break
        elif _HDR_INDEX.match(lines[i]) or _HDR_DIFF.match(lines[i]):
            k = i + 1
            if k < n and _HDR_SEP.match(lines[k]):
                k += 1
            if _udiff_starts_at(lines, k):
                patch_si = i
                patch_type = "u"
                break
            elif _cdiff_starts_at(lines, k):
                patch_si = i
                patch_type = "c"
                break
            else:
                i = k
                diffstat_si = None
        elif _HDR_RCS1.match(lines[i]):
            if (i + 1) < n and _HDR_RCS2.match(lines[i]):
                k = i + 1
                if k < n and _HDR_SEP.match(lines[k]):
                    k += 1
                if _udiff_starts_at(lines, k):
                    patch_si = i
                    patch_type = "u"
                    break
                elif _cdiff_starts_at(lines, k):
                    patch_si = i
                    patch_type = "c"
                    break
                else:
                    i = k
                    diffstat_si = None
            else:
                diffstat_si = None
        elif _udiff_starts_at(lines, i):
            patch_si = i
            patch_type = "u"
            break
        elif _cdiff_starts_at(lines, i):
            patch_si = i
            patch_type = "c"
            break
        elif not (_BLANK_LINE.match(lines[i]) or _DIVIDER_LINE.match(lines[i])):
            diffstat_si = None
        i += 1
    if patch_si is None:
        return (diffstat_si, None)
    else:
        return (diffstat_si, (patch_si, patch_type))

def _trisect_patch_file(path):
    try:
        fobj = open(path, 'r')
    except IOError:
        return (False, (None, None, None))
    buf = fobj.read()
    fobj.close()
    lines = buf.splitlines()
    diffstat_si, patch = _trisect_patch_lines(lines)
    if patch is None:
        if diffstat_si is None:
            res = (lines, [], [])
        else:
            res = (lines[0:diffstat_si], lines[diffstat_si:], [])
    else:
        plines = lines[patch[0]:]
        if diffstat_si is None:
            res = (lines[:patch[0]], [], plines)
        else:
            res = (lines[0:diffstat_si], lines[diffstat_si:patch[0]], plines)
    return (True,  res)

def get_patch_descr_lines(path):
    try:
        fobj = open(path, 'r')
    except IOError:
        return (False, None)
    buf = fobj.read()
    lines = buf.splitlines()
    fobj.close()
    diffstat_si, patch = _trisect_patch_lines(lines)
    if diffstat_si is None:
        if patch is None:
            res = lines
        else:
            res = lines[0:patch[0]]
    else:
        res = lines[0:diffstat_si]
    return ( True,  res)

def get_patch_diff_fm_text(textbuf):
    lines = textbuf.splitlines()
    _, patch = _trisect_patch_lines(lines)
    if patch is None:
        return (False, '')
    return (True, os.linesep.join(lines[patch[0]:]) + os.linesep)

def get_patch_diff_lines(path):
    try:
        fobj = open(path, 'r')
    except IOError:
        return (False, None)
    buf = fobj.read()
    lines = buf.splitlines()
    fobj.close()
    _diffstat_si, patch = _trisect_patch_lines(lines)
    if patch is None:
        return (False, [])
    return (True,  lines[patch[0]:])

def get_patch_diff(path, file_list=None):
    if not file_list:
        try:
            f = open(path, 'r')
        except IOError:
            return (False, None)
        buf = f.read()
        f.close()
        return get_patch_diff_fm_text(buf)
    if not utils.which("filterdiff"):
        return (False, "This functionality requires \"filterdiff\" from \"patchutils\"")
    cmd = "filterdiff -p 1"
    for filename in file_list:
        cmd += " -i %s" % filename
    res, sout, serr = utils.run_cmd("%s %s" % (cmd, path))
    if res == 0:
        return (True, sout)
    else:
        return (False, sout + serr)

def _append_lines_to_file(fobj, lines):
    for line in lines:
        fobj.write(line + os.linesep)

def _strip_trailing_ws(lines):
    n = len(lines)
    i = 0
    while i < n:
        lines[i] = lines[i].rstrip()
        i += 1

def _lines_to_temp_file(lines):
    try:
        tmpf_name = tempfile.mktemp()
        tmpf = open(tmpf_name, 'w')
        _append_lines_to_file(tmpf, lines)
        tmpf.close()
    except IOError:
        if tmpf_name is not None and os.path.exists(tmpf_name):
            os.remove(tmpf_name)
        return ""
    return tmpf_name

def set_patch_descr_lines(path, lines):
    if os.path.exists(path):
        res, parts = _trisect_patch_file(path)
        if not res:
            return False
    else:
        parts = ([], [], [])
    comments = [line for line in parts[0] if line.startswith('#')]
    tmpf_name = _lines_to_temp_file(comments + lines + parts[1] + parts[2])
    if not tmpf_name:
        return False
    try:
        shutil.copyfile(tmpf_name, path)
        ret = True
    except IOError:
        ret = False
    os.remove(tmpf_name)
    return ret

def _rediff_lines(lines, orig_lines=None):
    if not utils.which("rediff"):
        return lines
    lines_tf = _lines_to_temp_file(lines)
    if not lines_tf:
        return lines
    if orig_lines and len(orig_lines):
        orig_lines_tf = _lines_to_temp_file(orig_lines)
    else:
        orig_lines_tf = None
    if not orig_lines_tf:
        res, sout, _serr = utils.run_cmd("rediff %s" % lines_tf)
    else:
        res, sout, _serr = utils.run_cmd("rediff %s %s" % (orig_lines_tf, lines_tf))
        os.remove(orig_lines_tf)
    os.remove(lines_tf)
    if res == 0:
        return sout.splitlines()
    else:
        return lines

def set_patch_diff_lines(path, lines):
    if os.path.exists(path):
        res, parts = _trisect_patch_file(path)
        if not res:
            return False
    else:
        parts = ([], [], [])
    lines = _rediff_lines(lines, orig_lines=parts[2])
    tmpf_name = _lines_to_temp_file(parts[0] + parts[1] + lines)
    if not tmpf_name:
        return False
    try:
        shutil.copyfile(tmpf_name, path)
        ret = True
    except IOError:
        ret = False
    os.remove(tmpf_name)
    return ret

StatusMap = collections.namedtuple('StatusMap', ['extant', 'added', 'deleted'])
DefaultStatusMap = StatusMap(extant=' ', added='+', deleted='-')

def _file_name_in_diffline(diffline):
    match = re.match('diff --git \w+/(.*) \w+/(.*)', diffline)
    if match:
        return match.group(1)
    else:
        return None

def _get_git_diff_file_data(lines, i, statusmap):
    assert _GIT_HDR_DIFF.match(lines[i])
    diffline = lines[i]
    i += 1
    new_file = False
    deleted_file = False
    copy_from = None
    copy_to = None
    rename_from = None
    rename_to = None
    while i < len(lines):
        match_data = _is_git_extra_line(lines[i])
        if not match_data:
            break
        else:
            i += 1
            regex, match = match_data
        if regex is _GIT_COPY_FROM:
            copy_from = match.group(1)
        elif regex is _GIT_COPY_TO:
            copy_to = match.group(1)
        elif regex is _GIT_RENAME_FROM:
            rename_from = match.group(1)
        elif regex is _GIT_RENAME_TO:
            rename_from = match.group(1)
        elif regex is _GIT_NEW_FILE_MODE:
            new_file = True
        elif regex is _GIT_DELETED_FILE_MODE:
            deleted_file = True
    if copy_to:
        return [i, [(copy_to, statusmap.added, copy_from)]]
    if rename_to:
        return [i, [(rename_to, statusmap.added, rename_from), (rename_from, statusmap.deleted, None)]]
    if deleted_file:
        while i < len(lines):
            match = _UDIFF_H1.match(lines[i])
            i += 1
            if match:
                filename = match.group(1)[2:]
                return [i, [(filename, statusmap.deleted, None)]]
    while i < len(lines) and not _GIT_HDR_DIFF.match(lines[i]):
        match = _UDIFF_H2.match(lines[i])
        i += 1
        if match:
            filename = match.group(1)[2:]
            if new_file:
                return [i, [(filename, statusmap.added, None)]]
            else:
                return [i, [(filename, statusmap.extant, None)]]
    filename = _file_name_in_diffline(diffline)
    if new_file:
        return (i, [[filename, statusmap.added, None]])
    else:
        return (i, [[filename, statusmap.extant, None]])

def _get_git_diff_files_db(lines, i, statusmap):
    file_db = fsdb.GenFileDb()
    while i < len(lines):
        i, files_data = _get_git_diff_file_data(lines, i, statusmap)
        for datum in files_data:
            file_db.add_file(*datum)
        while i < len(lines) and not _git_diff_starts_at(lines, i):
            i += 1
    file_db.decorate_dirs()
    return file_db

def _get_unified_diff_files_db(lines, i, statusmap):
    file_db = fsdb.GenFileDb()
    while i < len(lines):
        match1 = _UDIFF_H1.match(lines[i])
        i += 1
        if match1:
            match2 = _UDIFF_H2.match(lines[i])
            i += 1
            file1 = match1.group(1)
            if file1 == '/dev/null':
                file_db.add_file(match2.group(1).split('/', 1)[1], statusmap.added, None)
            else:
                file2 = match2.group(1)
                if file2 == '/dev/null' :
                    file_db.add_file(file1.split('/', 1)[1], statusmap.deleted, None)
                else:
                    file_db.add_file(file2.split('/', 1)[1], statusmap.extant, None)
    file_db.decorate_dirs()
    return file_db

def _get_combined_diff_files_db(_lines, _i, _statusmap):
    return fsdb.NullFileDb()

def get_patch_file_db(path, statusmap=DefaultStatusMap):
    try:
        f = open(path, 'r')
    except IOError:
        return (False, 'Problem(s) open file "%s" not found' % path)
    buf = f.read()
    f.close()
    lines = buf.splitlines()
    _, patch = _trisect_patch_lines(lines)
    if patch is None:
        return fsdb.NullFileDb()
    if patch[1] == 'git':
        return _get_git_diff_files_db(lines, patch[0], statusmap)
    elif patch[1] == 'u':
        return _get_unified_diff_files_db(lines, patch[0], statusmap)
    else:
        return _get_combined_diff_files_db(lines, patch[0], statusmap)

def get_patch_files(path, status=False):
    if not utils.which("lsdiff"):
        return (False, "This functionality requires \"lsdiff\" from \"patchutils\"")
    cmd = "lsdiff --strip=1"
    if not status:
        res, sout, serr = utils.run_cmd("%s %s" % (cmd, path))
        if res == 0:
            return (True, sout.splitlines())
        else:
            return (False, sout + serr)
    else:
        res, sout, serr = utils.run_cmd("%s -s %s" % (cmd, path))
        if res == 0:
            filelist = []
            for line in sout.splitlines():
                if line[0] == "+":
                    filelist.append((line[2:], const.ADDED))
                elif line[0] == "-":
                    filelist.append((line[2:], const.DELETED))
                else:
                    filelist.append((line[2:], const.EXTANT))
            return (True, filelist)
        else:
            return (False, sout + serr)