~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_rio_py.py

  • Committer: Jelmer Vernooij
  • Date: 2009-05-14 11:00:33 UTC
  • mto: (4290.1.9 rio-serializer2)
  • mto: This revision was merged to the branch mainline in revision 4368.
  • Revision ID: jelmer@samba.org-20090514110033-98buz7oz7lr5evlf
Move core RIO parsing functionality to _rio_py.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2009 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
import re
 
18
 
 
19
from bzrlib.rio import (
 
20
    Stanza,
 
21
    )
 
22
 
 
23
_tag_re = re.compile(r'^[-a-zA-Z0-9_]+$')
 
24
def _valid_tag(tag):
 
25
    return bool(_tag_re.match(tag))
 
26
 
 
27
 
 
28
def _read_stanza_utf8(line_iter):
 
29
    unicode_iter = (line.decode('utf-8') for line in line_iter)
 
30
    return _read_stanza_unicode(unicode_iter)
 
31
 
 
32
 
 
33
def _read_stanza_unicode(unicode_iter):
 
34
    stanza = Stanza()
 
35
    tag = None
 
36
    accum_value = None
 
37
 
 
38
    # TODO: jam 20060922 This code should raise real errors rather than
 
39
    #       using 'assert' to process user input, or raising ValueError
 
40
    #       rather than a more specific error.
 
41
    for line in unicode_iter:
 
42
        if line is None or line == '':
 
43
            break       # end of file
 
44
        if line == '\n':
 
45
            break       # end of stanza
 
46
        real_l = line
 
47
        if line[0] == '\t': # continues previous value
 
48
            if tag is None:
 
49
                raise ValueError('invalid continuation line %r' % real_l)
 
50
            accum_value += '\n' + line[1:-1]
 
51
        else: # new tag:value line
 
52
            if tag is not None:
 
53
                stanza.add(tag, accum_value)
 
54
            try:
 
55
                colon_index = line.index(': ')
 
56
            except ValueError:
 
57
                raise ValueError('tag/value separator not found in line %r'
 
58
                                 % real_l)
 
59
            tag = str(line[:colon_index])
 
60
            if not _valid_tag(tag):
 
61
                raise ValueError("invalid rio tag %r" % (tag,))
 
62
            accum_value = line[colon_index+2:-1]
 
63
 
 
64
    if tag is not None: # add last tag-value
 
65
        stanza.add(tag, accum_value)
 
66
        return stanza
 
67
    else:     # didn't see any content
 
68
        return None
 
69
 
 
70
 
 
71