~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ignores.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-12 18:05:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1871.
  • Revision ID: john@arbash-meinel.com-20060712180501-1a638c0c5b1e7646
Updated WorkingTree to use the new user-level ignores.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
    return ignored
107
107
 
108
108
 
109
 
def _create_default_user_ignores():
110
 
    """Create ~/.bazaar/ignore, and fill it with the defaults"""
111
 
 
112
 
    # We need to create the file
113
 
    path = config.user_ignore_config_filename()
114
 
    config.ensure_config_dir_exists()
115
 
    try:
116
 
        f = open(path, 'wb')
117
 
    except (IOError, OSError), e:
118
 
        if e.errno not in (errno.EPERM,):
119
 
            raise
120
 
        # if EPERM, we don't have write access to home dir
121
 
        # so we won't save anything
122
 
    else:
123
 
        try:
124
 
            for pattern in USER_DEFAULTS:
125
 
                f.write(pattern.encode('utf8') + '\n')
126
 
        finally:
127
 
            f.close()
128
 
 
129
 
 
130
109
def get_user_ignores():
131
110
    """Get the list of user ignored files, possibly creating it."""
132
111
    path = config.user_ignore_config_filename()
137
116
        if e.errno not in (errno.ENOENT,):
138
117
            raise
139
118
        # Create the ignore file, and just return the default
140
 
        _create_default_user_ignores()
 
119
        # We want to ignore if we can't write to the file
 
120
        # since get_* should be a safe operation
 
121
        try:
 
122
            set_user_ignores(USER_DEFAULTS)
 
123
        except (IOError, OSError), e:
 
124
            if e.errno not in (errno.EPERM,):
 
125
                raise
141
126
        return patterns
142
127
 
143
128
    try:
146
131
        f.close()
147
132
 
148
133
 
 
134
def set_user_ignores(patterns):
 
135
    """Fill out the user ignore file with the given patterns
 
136
 
 
137
    This may raise an error if it doesn't have permission to
 
138
    write to the user ignore file.
 
139
    """
 
140
    ignore_path = config.user_ignore_config_filename()
 
141
    config.ensure_config_dir_exists()
 
142
 
 
143
    # Create an empty file
 
144
    f = open(ignore_path, 'wb')
 
145
    try:
 
146
        for pattern in patterns:
 
147
            f.write(pattern.encode('utf8') + '\n')
 
148
    finally:
 
149
        f.close()
 
150
 
 
151
 
149
152
def add_unique_user_ignores(new_ignores):
150
153
    """Add entries to the user's ignore list if not present.
151
154