~verterok/bzr-xmloutput/threads

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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# Copyright (C) 2008 Mirko Friedenhagen
#
# The code taken from bzrlib is under: Copyright (C) 2005, 2006, 2007 Canonical Ltd
#
# 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 Street, Fifth Floor, Boston, MA 02110-1301, USA
#


from bzrlib.lazy_import import lazy_import
lazy_import(globals(), """
import os
from bzrlib import user_encoding, bzrdir, errors, osutils, xml_serializer
from bzrlib.xml_serializer import _escape_cdata
""")


def show_ls_xml(outf, revision=None, non_recursive=False, 
            from_root=False, unknown=False, versioned=False, 
            ignored=False, kind=None, path=None, verbose=False):
    
    if kind and kind not in ('file', 'directory', 'symlink'):
        raise errors.BzrCommandError('invalid kind specified')

    all = not (unknown or versioned or ignored)

    selection = {'I':ignored, '?':unknown, 'V':versioned}
    long_status_kind = {'I':'ignored', '?':'unknown', 'V':'versioned'}

    if path is None:
        fs_path = '.'
        prefix = ''
    else:
        if from_root:
            raise errors.BzrCommandError('cannot specify both --from-root'
                                         ' and PATH')
        fs_path = path
        prefix = path
    tree, branch, relpath = bzrdir.BzrDir.open_containing_tree_or_branch(
            fs_path)
    if from_root:
        relpath = u''
    elif relpath:
        relpath += '/'
    if revision is not None:
        tree = branch.repository.revision_tree(
            revision[0].as_revision_id(branch))
    elif tree is None:
        tree = branch.basis_tree()

    tree.lock_read()
    try:
        outf.write('<list>')
        for fp, fc, fkind, fid, entry in tree.list_files(include_root=False):
            if fp.startswith(relpath):
                fp = osutils.pathjoin(prefix, fp[len(relpath):])
                if non_recursive and '/' in fp:
                    continue
                if not all and not selection[fc]:
                    continue
                if kind is not None and fkind != kind:
                    continue
                if fid is None:
                    fid = ''
                else:
                    fid = '<id>%s</id>' % fid
                fkind = '<kind>%s</kind>' % fkind
                status_kind = '<status_kind>%s</status_kind>' % long_status_kind[fc]
                fpath = '<path>%s</path>' % _escape_cdata(fp)
                outstring = '<item>%s%s%s%s</item>' % (fid, fkind, fpath, status_kind)
                outf.write(outstring)
    finally:
        outf.write('</list>')
        tree.unlock()