~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/filters/eol.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 2010 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
 
"""End of Line Conversion filters.
18
 
 
19
 
See bzr help eol for details.
20
 
"""
21
 
 
22
 
from __future__ import absolute_import
23
 
 
24
 
 
25
 
import re, sys
26
 
 
27
 
from bzrlib.errors import BzrError
28
 
from bzrlib.filters import ContentFilter
29
 
 
30
 
 
31
 
# Real Unix newline - \n without \r before it
32
 
_UNIX_NL_RE = re.compile(r'(?<!\r)\n')
33
 
 
34
 
 
35
 
def _to_lf_converter(chunks, context=None):
36
 
    """A content file that converts crlf to lf."""
37
 
    content = ''.join(chunks)
38
 
    if '\x00' in content:
39
 
        return [content]
40
 
    else:
41
 
        return [content.replace('\r\n', '\n')]
42
 
 
43
 
 
44
 
def _to_crlf_converter(chunks, context=None):
45
 
    """A content file that converts lf to crlf."""
46
 
    content = ''.join(chunks)
47
 
    if '\x00' in content:
48
 
        return [content]
49
 
    else:
50
 
        return [_UNIX_NL_RE.sub('\r\n', content)]
51
 
 
52
 
 
53
 
if sys.platform == 'win32':
54
 
    _native_output = _to_crlf_converter
55
 
else:
56
 
    _native_output = _to_lf_converter
57
 
_eol_filter_stack_map = {
58
 
    'exact': [],
59
 
    'native': [ContentFilter(_to_lf_converter, _native_output)],
60
 
    'lf':     [ContentFilter(_to_lf_converter, _to_lf_converter)],
61
 
    'crlf':   [ContentFilter(_to_lf_converter, _to_crlf_converter)],
62
 
    'native-with-crlf-in-repo':
63
 
        [ContentFilter(_to_crlf_converter, _native_output)],
64
 
    'lf-with-crlf-in-repo':
65
 
        [ContentFilter(_to_crlf_converter, _to_lf_converter)],
66
 
    'crlf-with-crlf-in-repo':
67
 
        [ContentFilter(_to_crlf_converter, _to_crlf_converter)],
68
 
    }
69
 
def eol_lookup(key):
70
 
    filter = _eol_filter_stack_map.get(key)
71
 
    if filter is None:
72
 
        raise BzrError("Unknown eol value '%s'" % key)
73
 
    return filter