~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/generate_ids.py

  • Committer: Jelmer Vernooij
  • Date: 2011-08-19 22:34:02 UTC
  • mto: This revision was merged to the branch mainline in revision 6089.
  • Revision ID: jelmer@samba.org-20110819223402-wjywqb0fa1xxx522
Use get_transport_from_{url,path} in more places.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006, 2007, 2009, 2010, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""Common code for generating file or revision ids."""
18
18
 
19
19
from bzrlib.lazy_import import lazy_import
20
20
lazy_import(globals(), """
21
21
import time
22
 
import unicodedata
23
22
 
24
23
from bzrlib import (
25
24
    config,
32
31
    lazy_regex,
33
32
    )
34
33
 
35
 
# the regex removes any weird characters; we don't escape them 
 
34
# the regex removes any weird characters; we don't escape them
36
35
# but rather just pull them out
37
36
_file_id_chars_re = lazy_regex.lazy_compile(r'[^\w.]')
38
37
_rev_id_chars_re = lazy_regex.lazy_compile(r'[^-\w.+@]')
42
41
 
43
42
def _next_id_suffix():
44
43
    """Create a new file id suffix that is reasonably unique.
45
 
    
 
44
 
46
45
    On the first call we combine the current time with 64 bits of randomness to
47
46
    give a highly probably globally unique number. Then each call in the same
48
47
    process adds 1 to a serial number we append to that unique value.
49
48
    """
50
 
    # XXX TODO: change bzrlib.add.smart_add to call workingtree.add() rather 
 
49
    # XXX TODO: change bzrlib.add.smart_add_tree to call workingtree.add() rather
51
50
    # than having to move the id randomness out of the inner loop like this.
52
51
    # XXX TODO: for the global randomness this uses we should add the thread-id
53
52
    # before the serial #.
80
79
    #    filesystems
81
80
    # 4) Removing starting '.' characters to prevent the file ids from
82
81
    #    being considered hidden.
83
 
    ascii_word_only = _file_id_chars_re.sub('', name.lower())
 
82
    ascii_word_only = str(_file_id_chars_re.sub('', name.lower()))
84
83
    short_no_dots = ascii_word_only.lstrip('.')[:20]
85
84
    return short_no_dots + _next_id_suffix()
86
85
 
93
92
def gen_revision_id(username, timestamp=None):
94
93
    """Return new revision-id.
95
94
 
96
 
    :param username: This is the value returned by config.username(), which is
97
 
        typically a real name, followed by an email address. If found, we will
98
 
        use just the email address portion. Otherwise we flatten the real name,
99
 
        and use that.
 
95
    :param username: The username of the committer, in the format returned by
 
96
        config.username().  This is typically a real name, followed by an
 
97
        email address. If found, we will use just the email address portion.
 
98
        Otherwise we flatten the real name, and use that.
100
99
    :return: A new revision id.
101
100
    """
102
101
    try: