~bzr-pqm/bzr/bzr.dev

2052.3.1 by John Arbash Meinel
Add tests to cleanup the copyright of all source files
1
# Copyright (C) 2005, 2006 Canonical Ltd
1836.1.12 by John Arbash Meinel
Move ignores into a file of their own, make DEFAULT_IGNORE a deprecated list. Create deprecated_list in symbol versioning.
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
"""Lists of ignore files, etc."""
18
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
19
import errno
20
21
from bzrlib import config
22
1836.1.12 by John Arbash Meinel
Move ignores into a file of their own, make DEFAULT_IGNORE a deprecated list. Create deprecated_list in symbol versioning.
23
# This was the full ignore list for bzr 0.8
24
# please keep these sorted (in C locale order) to aid merging
25
OLD_DEFAULTS = [
26
    '#*#',
27
    '*$',
28
    '*,v',
29
    '*.BAK',
30
    '*.a',
31
    '*.bak',
32
    '*.elc',
33
    '*.exe',
34
    '*.la',
35
    '*.lo',
36
    '*.o',
37
    '*.obj',
38
    '*.orig',
39
    '*.py[oc]',
40
    '*.so',
41
    '*.tmp',
42
    '*~',
43
    '.#*',
44
    '.*.sw[nop]',
45
    '.*.tmp',
46
    # Our setup tests dump .python-eggs in the bzr source tree root
47
    './.python-eggs',
48
    '.DS_Store',
49
    '.arch-ids',
50
    '.arch-inventory',
51
    '.bzr.log',
52
    '.del-*',
53
    '.git',
54
    '.hg',
55
    '.jamdeps'
56
    '.libs',
57
    '.make.state',
58
    '.sconsign*',
59
    '.svn',
60
    '.sw[nop]',    # vim editing nameless file
61
    '.tmp*',
62
    'BitKeeper',
63
    'CVS',
64
    'CVS.adm',
65
    'RCS',
66
    'SCCS',
67
    'TAGS',
68
    '_darcs',
69
    'aclocal.m4',
70
    'autom4te*',
71
    'config.h',
72
    'config.h.in',
73
    'config.log',
74
    'config.status',
75
    'config.sub',
76
    'stamp-h',
77
    'stamp-h.in',
78
    'stamp-h1',
79
    '{arch}',
80
]
81
82
83
# ~/.bazaar/ignore will be filled out using
84
# this ignore list, if it does not exist
85
# please keep these sorted (in C locale order) to aid merging
86
USER_DEFAULTS = [
87
    '*.a',
88
    '*.o',
89
    '*.py[co]',
90
    '*.so',
91
    '*.sw[nop]',
92
    '*~',
93
    '.#*',
94
    '[#]*#',
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
95
    './bzr-commit-*',
1836.1.12 by John Arbash Meinel
Move ignores into a file of their own, make DEFAULT_IGNORE a deprecated list. Create deprecated_list in symbol versioning.
96
]
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
97
98
99
def parse_ignore_file(f):
100
    """Read in all of the lines in the file and turn it into an ignore list"""
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
101
    ignored = set()
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
102
    for line in f.read().decode('utf8').split('\n'):
2077.1.2 by Kent Gibson
Strip trailing slashes from ignore patterns (#4559).
103
        line = line.rstrip('/\r\n')
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
104
        if not line or line.startswith('#'):
105
            continue
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
106
        ignored.add(line)
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
107
    return ignored
108
109
110
def get_user_ignores():
111
    """Get the list of user ignored files, possibly creating it."""
112
    path = config.user_ignore_config_filename()
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
113
    patterns = set(USER_DEFAULTS)
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
114
    try:
115
        f = open(path, 'rb')
116
    except (IOError, OSError), e:
1836.1.25 by John Arbash Meinel
cleanups suggested by Martin.
117
        # open() shouldn't return an IOError without errno, but just in case
118
        err = getattr(e, 'errno', None)
119
        if err not in (errno.ENOENT,):
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
120
            raise
121
        # Create the ignore file, and just return the default
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
122
        # We want to ignore if we can't write to the file
123
        # since get_* should be a safe operation
124
        try:
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
125
            _set_user_ignores(USER_DEFAULTS)
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
126
        except (IOError, OSError), e:
127
            if e.errno not in (errno.EPERM,):
128
                raise
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
129
        return patterns
130
131
    try:
132
        return parse_ignore_file(f)
133
    finally:
134
        f.close()
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
135
136
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
137
def _set_user_ignores(patterns):
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
138
    """Fill out the user ignore file with the given patterns
139
140
    This may raise an error if it doesn't have permission to
141
    write to the user ignore file.
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
142
    This is mostly used for testing, since it would be
143
    bad form to rewrite a user's ignore list.
144
    bzrlib only writes this file if it does not exist.
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
145
    """
146
    ignore_path = config.user_ignore_config_filename()
147
    config.ensure_config_dir_exists()
148
149
    # Create an empty file
150
    f = open(ignore_path, 'wb')
151
    try:
152
        for pattern in patterns:
153
            f.write(pattern.encode('utf8') + '\n')
154
    finally:
155
        f.close()
156
157
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
158
def add_unique_user_ignores(new_ignores):
159
    """Add entries to the user's ignore list if not present.
160
161
    :param new_ignores: A list of ignore patterns
162
    :return: The list of ignores that were added
163
    """
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
164
    ignored = get_user_ignores()
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
165
    to_add = []
166
    for ignore in new_ignores:
2077.1.2 by Kent Gibson
Strip trailing slashes from ignore patterns (#4559).
167
        ignore = ignore.rstrip('/')
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
168
        if ignore not in ignored:
169
            ignored.add(ignore)
170
            to_add.append(ignore)
171
172
    if not to_add:
173
        return []
174
175
    f = open(config.user_ignore_config_filename(), 'ab')
176
    try:
177
        for pattern in to_add:
178
            f.write(pattern.encode('utf8') + '\n')
179
    finally:
180
        f.close()
181
182
    return to_add
1836.1.28 by John Arbash Meinel
Add a function for adding runtime ignores.
183
184
185
_runtime_ignores = set()
186
187
188
def add_runtime_ignores(ignores):
189
    """Add some ignore patterns that only exists in memory.
190
191
    This is used by some plugins that want bzr to ignore files,
192
    but don't want to change a users ignore list.
1711.2.105 by John Arbash Meinel
Updated doc
193
    (Such as a conversion script that needs to ignore temporary files,
194
    but does not want to modify the project's ignore list.)
1836.1.28 by John Arbash Meinel
Add a function for adding runtime ignores.
195
196
    :param ignores: A list or generator of ignore patterns.
197
    :return: None
198
    """
199
    global _runtime_ignores
200
    _runtime_ignores.update(set(ignores))
201
202
203
def get_runtime_ignores():
204
    """Get the current set of runtime ignores."""
205
    return _runtime_ignores