1
# Copyright (C) 2008 Canonical Ltd
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.
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.
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
17
"""The python implementation of chunks_to_lines"""
20
def chunks_to_lines(chunks):
21
"""Re-split chunks into simple lines.
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.
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.
31
# Optimize for a very common case when chunks are already lines
32
last_no_newline = False
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
40
# Empty strings are never valid lines
42
elif '\n' in chunk[:-1]:
43
# This chunk has an extra '\n', so we will have to split it
45
elif chunk[-1] != '\n':
46
# This chunk does not have a trailing newline
47
last_no_newline = True
49
# All of the lines (but possibly the last) have a single newline at the
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.
55
# These aren't simple lines, just join and split again.
56
from bzrlib import osutils
57
return osutils._split_lines(''.join(chunks))