~jeanfrancois.roy/bzr/url-safe-escape

« back to all changes in this revision

Viewing changes to bzrlib/_chunks_to_lines_py.py

  • Committer: Mark Hammond
  • Date: 2008-12-28 05:21:23 UTC
  • mfrom: (3920 +trunk)
  • mto: (3932.1.1 prepare-1.11)
  • mto: This revision was merged to the branch mainline in revision 3937.
  • Revision ID: mhammond@skippinet.com.au-20081228052123-f78xs5sbdkotshwf
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""The python implementation of chunks_to_lines"""
 
18
 
 
19
 
 
20
def chunks_to_lines(chunks):
 
21
    """Re-split chunks into simple lines.
 
22
 
 
23
    Each entry in the result should contain a single newline at the end. Except
 
24
    for the last entry which may not have a final newline. If chunks is already
 
25
    a simple list of lines, we return it directly.
 
26
 
 
27
    :param chunks: An list/tuple of strings. If chunks is already a list of
 
28
        lines, then we will return it as-is.
 
29
    :return: A list of strings.
 
30
    """
 
31
    # Optimize for a very common case when chunks are already lines
 
32
    last_no_newline = False
 
33
    for chunk in chunks:
 
34
        if last_no_newline:
 
35
            # Only the last chunk is allowed to not have a trailing newline
 
36
            # Getting here means the last chunk didn't have a newline, and we
 
37
            # have a chunk following it
 
38
            break
 
39
        if not chunk:
 
40
            # Empty strings are never valid lines
 
41
            break
 
42
        elif '\n' in chunk[:-1]:
 
43
            # This chunk has an extra '\n', so we will have to split it
 
44
            break
 
45
        elif chunk[-1] != '\n':
 
46
            # This chunk does not have a trailing newline
 
47
            last_no_newline = True
 
48
    else:
 
49
        # All of the lines (but possibly the last) have a single newline at the
 
50
        # end of the string.
 
51
        # For the last one, we allow it to not have a trailing newline, but it
 
52
        # is not allowed to be an empty string.
 
53
        return chunks
 
54
 
 
55
    # These aren't simple lines, just join and split again.
 
56
    from bzrlib import osutils
 
57
    return osutils._split_lines(''.join(chunks))