~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_dirstate_helpers_c.pyx

  • Committer: Vincent Ladeuil
  • Date: 2009-06-18 19:45:24 UTC
  • mto: This revision was merged to the branch mainline in revision 4466.
  • Revision ID: v.ladeuil+lp@free.fr-20090618194524-poedor61th3op5dm
Cleanup.

* bzrlib/tests/test__known_graph.py:
(TestKnownGraph): Delete dominator tests.

* bzrlib/_known_graph_pyx.pyx: 
Cleanup all references to old version and linear dominators :-/

* bzrlib/_known_graph_py.py: 
Cleanup all references to old version and linear dominators :-/

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2007, 2008 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
"""Helper functions for DirState.
 
18
 
 
19
This is the python implementation for DirState functions.
 
20
"""
 
21
 
 
22
import binascii
 
23
import bisect
 
24
import errno
 
25
import os
 
26
import stat
 
27
import sys
 
28
 
 
29
from bzrlib import cache_utf8, errors, osutils
 
30
from bzrlib.dirstate import DirState
 
31
from bzrlib.osutils import pathjoin, splitpath
 
32
 
 
33
 
 
34
# This is the Windows equivalent of ENOTDIR
 
35
# It is defined in pywin32.winerror, but we don't want a strong dependency for
 
36
# just an error code.
 
37
# XXX: Perhaps we could get it from a windows header ?
 
38
cdef int ERROR_PATH_NOT_FOUND
 
39
ERROR_PATH_NOT_FOUND = 3
 
40
cdef int ERROR_DIRECTORY
 
41
ERROR_DIRECTORY = 267
 
42
 
 
43
#python2.4 support, and other platform-dependent includes
 
44
cdef extern from "python-compat.h":
 
45
    unsigned long htonl(unsigned long)
 
46
 
 
47
# Give Pyrex some function definitions for it to understand.
 
48
# All of these are just hints to Pyrex, so that it can try to convert python
 
49
# objects into similar C objects. (such as PyInt => int).
 
50
# In anything defined 'cdef extern from XXX' the real C header will be
 
51
# imported, and the real definition will be used from there. So these are just
 
52
# hints, and do not need to match exactly to the C definitions.
 
53
 
 
54
cdef extern from *:
 
55
    ctypedef unsigned long size_t
 
56
 
 
57
cdef extern from "_dirstate_helpers_c.h":
 
58
    ctypedef int intptr_t
 
59
 
 
60
 
 
61
 
 
62
cdef extern from "stdlib.h":
 
63
    unsigned long int strtoul(char *nptr, char **endptr, int base)
 
64
 
 
65
 
 
66
cdef extern from 'sys/stat.h':
 
67
    int S_ISDIR(int mode)
 
68
    int S_ISREG(int mode)
 
69
    # On win32, this actually comes from "python-compat.h"
 
70
    int S_ISLNK(int mode)
 
71
    int S_IXUSR
 
72
 
 
73
# These functions allow us access to a bit of the 'bare metal' of python
 
74
# objects, rather than going through the object abstraction. (For example,
 
75
# PyList_Append, rather than getting the 'append' attribute of the object, and
 
76
# creating a tuple, and then using PyCallObject).
 
77
# Functions that return (or take) a void* are meant to grab a C PyObject*. This
 
78
# differs from the Pyrex 'object'. If you declare a variable as 'object' Pyrex
 
79
# will automatically Py_INCREF and Py_DECREF when appropriate. But for some
 
80
# inner loops, we don't need to do that at all, as the reference only lasts for
 
81
# a very short time.
 
82
# Note that the C API GetItem calls borrow references, so pyrex does the wrong
 
83
# thing if you declare e.g. object PyList_GetItem(object lst, int index) - you
 
84
# need to manually Py_INCREF yourself.
 
85
cdef extern from "Python.h":
 
86
    ctypedef int Py_ssize_t
 
87
    ctypedef struct PyObject:
 
88
        pass
 
89
    int PyList_Append(object lst, object item) except -1
 
90
    void *PyList_GetItem_object_void "PyList_GET_ITEM" (object lst, int index)
 
91
    void *PyList_GetItem_void_void "PyList_GET_ITEM" (void * lst, int index)
 
92
    object PyList_GET_ITEM(object lst, Py_ssize_t index)
 
93
    int PyList_CheckExact(object)
 
94
    Py_ssize_t PyList_GET_SIZE (object p)
 
95
 
 
96
    void *PyTuple_GetItem_void_void "PyTuple_GET_ITEM" (void* tpl, int index)
 
97
    object PyTuple_GetItem_void_object "PyTuple_GET_ITEM" (void* tpl, int index)
 
98
    object PyTuple_GET_ITEM(object tpl, Py_ssize_t index)
 
99
 
 
100
 
 
101
    char *PyString_AsString(object p)
 
102
    char *PyString_AsString_obj "PyString_AsString" (PyObject *string)
 
103
    char *PyString_AS_STRING_void "PyString_AS_STRING" (void *p)
 
104
    int PyString_AsStringAndSize(object str, char **buffer, Py_ssize_t *length) except -1
 
105
    object PyString_FromString(char *)
 
106
    object PyString_FromStringAndSize(char *, Py_ssize_t)
 
107
    int PyString_Size(object p)
 
108
    int PyString_GET_SIZE_void "PyString_GET_SIZE" (void *p)
 
109
    int PyString_CheckExact(object p)
 
110
    void Py_INCREF(object o)
 
111
    void Py_DECREF(object o)
 
112
 
 
113
 
 
114
cdef extern from "string.h":
 
115
    int strncmp(char *s1, char *s2, int len)
 
116
    void *memchr(void *s, int c, size_t len)
 
117
    int memcmp(void *b1, void *b2, size_t len)
 
118
    # ??? memrchr is a GNU extension :(
 
119
    # void *memrchr(void *s, int c, size_t len)
 
120
 
 
121
 
 
122
cdef void* _my_memrchr(void *s, int c, size_t n):
 
123
    # memrchr seems to be a GNU extension, so we have to implement it ourselves
 
124
    cdef char *pos
 
125
    cdef char *start
 
126
 
 
127
    start = <char*>s
 
128
    pos = start + n - 1
 
129
    while pos >= start:
 
130
        if pos[0] == c:
 
131
            return <void*>pos
 
132
        pos = pos - 1
 
133
    return NULL
 
134
 
 
135
 
 
136
def _py_memrchr(s, c):
 
137
    """Just to expose _my_memrchr for testing.
 
138
 
 
139
    :param s: The Python string to search
 
140
    :param c: The character to search for
 
141
    :return: The offset to the last instance of 'c' in s
 
142
    """
 
143
    cdef void *_s
 
144
    cdef void *found
 
145
    cdef int length
 
146
    cdef char *_c
 
147
 
 
148
    _s = PyString_AsString(s)
 
149
    length = PyString_Size(s)
 
150
 
 
151
    _c = PyString_AsString(c)
 
152
    assert PyString_Size(c) == 1,\
 
153
        'Must be a single character string, not %s' % (c,)
 
154
    found = _my_memrchr(_s, _c[0], length)
 
155
    if found == NULL:
 
156
        return None
 
157
    return <char*>found - <char*>_s
 
158
 
 
159
cdef object safe_string_from_size(char *s, Py_ssize_t size):
 
160
    if size < 0:
 
161
        # XXX: On 64-bit machines the <int> cast causes a C compiler warning.
 
162
        raise AssertionError(
 
163
            'tried to create a string with an invalid size: %d @0x%x'
 
164
            % (size, <int>s))
 
165
    return PyString_FromStringAndSize(s, size)
 
166
 
 
167
 
 
168
cdef int _is_aligned(void *ptr):
 
169
    """Is this pointer aligned to an integer size offset?
 
170
 
 
171
    :return: 1 if this pointer is aligned, 0 otherwise.
 
172
    """
 
173
    return ((<intptr_t>ptr) & ((sizeof(int))-1)) == 0
 
174
 
 
175
 
 
176
cdef int _cmp_by_dirs(char *path1, int size1, char *path2, int size2):
 
177
    cdef unsigned char *cur1
 
178
    cdef unsigned char *cur2
 
179
    cdef unsigned char *end1
 
180
    cdef unsigned char *end2
 
181
    cdef int *cur_int1
 
182
    cdef int *cur_int2
 
183
    cdef int *end_int1
 
184
    cdef int *end_int2
 
185
 
 
186
    if path1 == path2 and size1 == size2:
 
187
        return 0
 
188
 
 
189
    end1 = <unsigned char*>path1+size1
 
190
    end2 = <unsigned char*>path2+size2
 
191
 
 
192
    # Use 32-bit comparisons for the matching portion of the string.
 
193
    # Almost all CPU's are faster at loading and comparing 32-bit integers,
 
194
    # than they are at 8-bit integers.
 
195
    # 99% of the time, these will be aligned, but in case they aren't just skip
 
196
    # this loop
 
197
    if _is_aligned(path1) and _is_aligned(path2):
 
198
        cur_int1 = <int*>path1
 
199
        cur_int2 = <int*>path2
 
200
        end_int1 = <int*>(path1 + size1 - (size1 % sizeof(int)))
 
201
        end_int2 = <int*>(path2 + size2 - (size2 % sizeof(int)))
 
202
 
 
203
        while cur_int1 < end_int1 and cur_int2 < end_int2:
 
204
            if cur_int1[0] != cur_int2[0]:
 
205
                break
 
206
            cur_int1 = cur_int1 + 1
 
207
            cur_int2 = cur_int2 + 1
 
208
 
 
209
        cur1 = <unsigned char*>cur_int1
 
210
        cur2 = <unsigned char*>cur_int2
 
211
    else:
 
212
        cur1 = <unsigned char*>path1
 
213
        cur2 = <unsigned char*>path2
 
214
 
 
215
    while cur1 < end1 and cur2 < end2:
 
216
        if cur1[0] == cur2[0]:
 
217
            # This character matches, just go to the next one
 
218
            cur1 = cur1 + 1
 
219
            cur2 = cur2 + 1
 
220
            continue
 
221
        # The current characters do not match
 
222
        if cur1[0] == c'/':
 
223
            return -1 # Reached the end of path1 segment first
 
224
        elif cur2[0] == c'/':
 
225
            return 1 # Reached the end of path2 segment first
 
226
        elif cur1[0] < cur2[0]:
 
227
            return -1
 
228
        else:
 
229
            return 1
 
230
 
 
231
    # We reached the end of at least one of the strings
 
232
    if cur1 < end1:
 
233
        return 1 # Not at the end of cur1, must be at the end of cur2
 
234
    if cur2 < end2:
 
235
        return -1 # At the end of cur1, but not at cur2
 
236
    # We reached the end of both strings
 
237
    return 0
 
238
 
 
239
 
 
240
def cmp_by_dirs_c(path1, path2):
 
241
    """Compare two paths directory by directory.
 
242
 
 
243
    This is equivalent to doing::
 
244
 
 
245
       cmp(path1.split('/'), path2.split('/'))
 
246
 
 
247
    The idea is that you should compare path components separately. This
 
248
    differs from plain ``cmp(path1, path2)`` for paths like ``'a-b'`` and
 
249
    ``a/b``. "a-b" comes after "a" but would come before "a/b" lexically.
 
250
 
 
251
    :param path1: first path
 
252
    :param path2: second path
 
253
    :return: negative number if ``path1`` comes first,
 
254
        0 if paths are equal,
 
255
        and positive number if ``path2`` sorts first
 
256
    """
 
257
    if not PyString_CheckExact(path1):
 
258
        raise TypeError("'path1' must be a plain string, not %s: %r"
 
259
                        % (type(path1), path1))
 
260
    if not PyString_CheckExact(path2):
 
261
        raise TypeError("'path2' must be a plain string, not %s: %r"
 
262
                        % (type(path2), path2))
 
263
    return _cmp_by_dirs(PyString_AsString(path1),
 
264
                        PyString_Size(path1),
 
265
                        PyString_AsString(path2),
 
266
                        PyString_Size(path2))
 
267
 
 
268
 
 
269
def _cmp_path_by_dirblock_c(path1, path2):
 
270
    """Compare two paths based on what directory they are in.
 
271
 
 
272
    This generates a sort order, such that all children of a directory are
 
273
    sorted together, and grandchildren are in the same order as the
 
274
    children appear. But all grandchildren come after all children.
 
275
 
 
276
    In other words, all entries in a directory are sorted together, and
 
277
    directorys are sorted in cmp_by_dirs order.
 
278
 
 
279
    :param path1: first path
 
280
    :param path2: the second path
 
281
    :return: negative number if ``path1`` comes first,
 
282
        0 if paths are equal
 
283
        and a positive number if ``path2`` sorts first
 
284
    """
 
285
    if not PyString_CheckExact(path1):
 
286
        raise TypeError("'path1' must be a plain string, not %s: %r"
 
287
                        % (type(path1), path1))
 
288
    if not PyString_CheckExact(path2):
 
289
        raise TypeError("'path2' must be a plain string, not %s: %r"
 
290
                        % (type(path2), path2))
 
291
    return _cmp_path_by_dirblock(PyString_AsString(path1),
 
292
                                 PyString_Size(path1),
 
293
                                 PyString_AsString(path2),
 
294
                                 PyString_Size(path2))
 
295
 
 
296
 
 
297
cdef int _cmp_path_by_dirblock(char *path1, int path1_len,
 
298
                               char *path2, int path2_len):
 
299
    """Compare two paths by what directory they are in.
 
300
 
 
301
    see ``_cmp_path_by_dirblock_c`` for details.
 
302
    """
 
303
    cdef char *dirname1
 
304
    cdef int dirname1_len
 
305
    cdef char *dirname2
 
306
    cdef int dirname2_len
 
307
    cdef char *basename1
 
308
    cdef int basename1_len
 
309
    cdef char *basename2
 
310
    cdef int basename2_len
 
311
    cdef int cur_len
 
312
    cdef int cmp_val
 
313
 
 
314
    if path1_len == 0 and path2_len == 0:
 
315
        return 0
 
316
 
 
317
    if path1 == path2 and path1_len == path2_len:
 
318
        return 0
 
319
 
 
320
    if path1_len == 0:
 
321
        return -1
 
322
 
 
323
    if path2_len == 0:
 
324
        return 1
 
325
 
 
326
    basename1 = <char*>_my_memrchr(path1, c'/', path1_len)
 
327
 
 
328
    if basename1 == NULL:
 
329
        basename1 = path1
 
330
        basename1_len = path1_len
 
331
        dirname1 = ''
 
332
        dirname1_len = 0
 
333
    else:
 
334
        dirname1 = path1
 
335
        dirname1_len = basename1 - path1
 
336
        basename1 = basename1 + 1
 
337
        basename1_len = path1_len - dirname1_len - 1
 
338
 
 
339
    basename2 = <char*>_my_memrchr(path2, c'/', path2_len)
 
340
 
 
341
    if basename2 == NULL:
 
342
        basename2 = path2
 
343
        basename2_len = path2_len
 
344
        dirname2 = ''
 
345
        dirname2_len = 0
 
346
    else:
 
347
        dirname2 = path2
 
348
        dirname2_len = basename2 - path2
 
349
        basename2 = basename2 + 1
 
350
        basename2_len = path2_len - dirname2_len - 1
 
351
 
 
352
    cmp_val = _cmp_by_dirs(dirname1, dirname1_len,
 
353
                           dirname2, dirname2_len)
 
354
    if cmp_val != 0:
 
355
        return cmp_val
 
356
 
 
357
    cur_len = basename1_len
 
358
    if basename2_len < basename1_len:
 
359
        cur_len = basename2_len
 
360
 
 
361
    cmp_val = memcmp(basename1, basename2, cur_len)
 
362
    if cmp_val != 0:
 
363
        return cmp_val
 
364
    if basename1_len == basename2_len:
 
365
        return 0
 
366
    if basename1_len < basename2_len:
 
367
        return -1
 
368
    return 1
 
369
 
 
370
 
 
371
def _bisect_path_left_c(paths, path):
 
372
    """Return the index where to insert path into paths.
 
373
 
 
374
    This uses a path-wise comparison so we get::
 
375
        a
 
376
        a-b
 
377
        a=b
 
378
        a/b
 
379
    Rather than::
 
380
        a
 
381
        a-b
 
382
        a/b
 
383
        a=b
 
384
    :param paths: A list of paths to search through
 
385
    :param path: A single path to insert
 
386
    :return: An offset where 'path' can be inserted.
 
387
    :seealso: bisect.bisect_left
 
388
    """
 
389
    cdef int _lo
 
390
    cdef int _hi
 
391
    cdef int _mid
 
392
    cdef char *path_cstr
 
393
    cdef int path_size
 
394
    cdef char *cur_cstr
 
395
    cdef int cur_size
 
396
    cdef void *cur
 
397
 
 
398
    if not PyList_CheckExact(paths):
 
399
        raise TypeError("you must pass a python list for 'paths' not: %s %r"
 
400
                        % (type(paths), paths))
 
401
    if not PyString_CheckExact(path):
 
402
        raise TypeError("you must pass a string for 'path' not: %s %r"
 
403
                        % (type(path), path))
 
404
 
 
405
    _hi = len(paths)
 
406
    _lo = 0
 
407
 
 
408
    path_cstr = PyString_AsString(path)
 
409
    path_size = PyString_Size(path)
 
410
 
 
411
    while _lo < _hi:
 
412
        _mid = (_lo + _hi) / 2
 
413
        cur = PyList_GetItem_object_void(paths, _mid)
 
414
        cur_cstr = PyString_AS_STRING_void(cur)
 
415
        cur_size = PyString_GET_SIZE_void(cur)
 
416
        if _cmp_path_by_dirblock(cur_cstr, cur_size, path_cstr, path_size) < 0:
 
417
            _lo = _mid + 1
 
418
        else:
 
419
            _hi = _mid
 
420
    return _lo
 
421
 
 
422
 
 
423
def _bisect_path_right_c(paths, path):
 
424
    """Return the index where to insert path into paths.
 
425
 
 
426
    This uses a path-wise comparison so we get::
 
427
        a
 
428
        a-b
 
429
        a=b
 
430
        a/b
 
431
    Rather than::
 
432
        a
 
433
        a-b
 
434
        a/b
 
435
        a=b
 
436
    :param paths: A list of paths to search through
 
437
    :param path: A single path to insert
 
438
    :return: An offset where 'path' can be inserted.
 
439
    :seealso: bisect.bisect_right
 
440
    """
 
441
    cdef int _lo
 
442
    cdef int _hi
 
443
    cdef int _mid
 
444
    cdef char *path_cstr
 
445
    cdef int path_size
 
446
    cdef char *cur_cstr
 
447
    cdef int cur_size
 
448
    cdef void *cur
 
449
 
 
450
    if not PyList_CheckExact(paths):
 
451
        raise TypeError("you must pass a python list for 'paths' not: %s %r"
 
452
                        % (type(paths), paths))
 
453
    if not PyString_CheckExact(path):
 
454
        raise TypeError("you must pass a string for 'path' not: %s %r"
 
455
                        % (type(path), path))
 
456
 
 
457
    _hi = len(paths)
 
458
    _lo = 0
 
459
 
 
460
    path_cstr = PyString_AsString(path)
 
461
    path_size = PyString_Size(path)
 
462
 
 
463
    while _lo < _hi:
 
464
        _mid = (_lo + _hi) / 2
 
465
        cur = PyList_GetItem_object_void(paths, _mid)
 
466
        cur_cstr = PyString_AS_STRING_void(cur)
 
467
        cur_size = PyString_GET_SIZE_void(cur)
 
468
        if _cmp_path_by_dirblock(path_cstr, path_size, cur_cstr, cur_size) < 0:
 
469
            _hi = _mid
 
470
        else:
 
471
            _lo = _mid + 1
 
472
    return _lo
 
473
 
 
474
 
 
475
def bisect_dirblock_c(dirblocks, dirname, lo=0, hi=None, cache=None):
 
476
    """Return the index where to insert dirname into the dirblocks.
 
477
 
 
478
    The return value idx is such that all directories blocks in dirblock[:idx]
 
479
    have names < dirname, and all blocks in dirblock[idx:] have names >=
 
480
    dirname.
 
481
 
 
482
    Optional args lo (default 0) and hi (default len(dirblocks)) bound the
 
483
    slice of a to be searched.
 
484
    """
 
485
    cdef int _lo
 
486
    cdef int _hi
 
487
    cdef int _mid
 
488
    cdef char *dirname_cstr
 
489
    cdef int dirname_size
 
490
    cdef char *cur_cstr
 
491
    cdef int cur_size
 
492
    cdef void *cur
 
493
 
 
494
    if not PyList_CheckExact(dirblocks):
 
495
        raise TypeError("you must pass a python list for 'dirblocks' not: %s %r"
 
496
                        % (type(dirblocks), dirblocks))
 
497
    if not PyString_CheckExact(dirname):
 
498
        raise TypeError("you must pass a string for dirname not: %s %r"
 
499
                        % (type(dirname), dirname))
 
500
    if hi is None:
 
501
        _hi = len(dirblocks)
 
502
    else:
 
503
        _hi = hi
 
504
 
 
505
    _lo = lo
 
506
    dirname_cstr = PyString_AsString(dirname)
 
507
    dirname_size = PyString_Size(dirname)
 
508
 
 
509
    while _lo < _hi:
 
510
        _mid = (_lo + _hi) / 2
 
511
        # Grab the dirname for the current dirblock
 
512
        # cur = dirblocks[_mid][0]
 
513
        cur = PyTuple_GetItem_void_void(
 
514
                PyList_GetItem_object_void(dirblocks, _mid), 0)
 
515
        cur_cstr = PyString_AS_STRING_void(cur)
 
516
        cur_size = PyString_GET_SIZE_void(cur)
 
517
        if _cmp_by_dirs(cur_cstr, cur_size, dirname_cstr, dirname_size) < 0:
 
518
            _lo = _mid + 1
 
519
        else:
 
520
            _hi = _mid
 
521
    return _lo
 
522
 
 
523
 
 
524
cdef class Reader:
 
525
    """Maintain the current location, and return fields as you parse them."""
 
526
 
 
527
    cdef object state # The DirState object
 
528
    cdef object text # The overall string object
 
529
    cdef char *text_cstr # Pointer to the beginning of text
 
530
    cdef int text_size # Length of text
 
531
 
 
532
    cdef char *end_cstr # End of text
 
533
    cdef char *cur_cstr # Pointer to the current record
 
534
    cdef char *next # Pointer to the end of this record
 
535
 
 
536
    def __init__(self, text, state):
 
537
        self.state = state
 
538
        self.text = text
 
539
        self.text_cstr = PyString_AsString(text)
 
540
        self.text_size = PyString_Size(text)
 
541
        self.end_cstr = self.text_cstr + self.text_size
 
542
        self.cur_cstr = self.text_cstr
 
543
 
 
544
    cdef char *get_next(self, int *size) except NULL:
 
545
        """Return a pointer to the start of the next field."""
 
546
        cdef char *next
 
547
        cdef Py_ssize_t extra_len
 
548
 
 
549
        if self.cur_cstr == NULL:
 
550
            raise AssertionError('get_next() called when cur_str is NULL')
 
551
        elif self.cur_cstr >= self.end_cstr:
 
552
            raise AssertionError('get_next() called when there are no chars'
 
553
                                 ' left')
 
554
        next = self.cur_cstr
 
555
        self.cur_cstr = <char*>memchr(next, c'\0', self.end_cstr - next)
 
556
        if self.cur_cstr == NULL:
 
557
            extra_len = self.end_cstr - next
 
558
            raise errors.DirstateCorrupt(self.state,
 
559
                'failed to find trailing NULL (\\0).'
 
560
                ' Trailing garbage: %r'
 
561
                % safe_string_from_size(next, extra_len))
 
562
        size[0] = self.cur_cstr - next
 
563
        self.cur_cstr = self.cur_cstr + 1
 
564
        return next
 
565
 
 
566
    cdef object get_next_str(self):
 
567
        """Get the next field as a Python string."""
 
568
        cdef int size
 
569
        cdef char *next
 
570
        next = self.get_next(&size)
 
571
        return safe_string_from_size(next, size)
 
572
 
 
573
    cdef int _init(self) except -1:
 
574
        """Get the pointer ready.
 
575
 
 
576
        This assumes that the dirstate header has already been read, and we
 
577
        already have the dirblock string loaded into memory.
 
578
        This just initializes our memory pointers, etc for parsing of the
 
579
        dirblock string.
 
580
        """
 
581
        cdef char *first
 
582
        cdef int size
 
583
        # The first field should be an empty string left over from the Header
 
584
        first = self.get_next(&size)
 
585
        if first[0] != c'\0' and size == 0:
 
586
            raise AssertionError('First character should be null not: %s'
 
587
                                 % (first,))
 
588
        return 0
 
589
 
 
590
    cdef object _get_entry(self, int num_trees, void **p_current_dirname,
 
591
                           int *new_block):
 
592
        """Extract the next entry.
 
593
 
 
594
        This parses the next entry based on the current location in
 
595
        ``self.cur_cstr``.
 
596
        Each entry can be considered a "row" in the total table. And each row
 
597
        has a fixed number of columns. It is generally broken up into "key"
 
598
        columns, then "current" columns, and then "parent" columns.
 
599
 
 
600
        :param num_trees: How many parent trees need to be parsed
 
601
        :param p_current_dirname: A pointer to the current PyString
 
602
            representing the directory name.
 
603
            We pass this in as a void * so that pyrex doesn't have to
 
604
            increment/decrement the PyObject reference counter for each
 
605
            _get_entry call.
 
606
            We use a pointer so that _get_entry can update it with the new
 
607
            value.
 
608
        :param new_block: This is to let the caller know that it needs to
 
609
            create a new directory block to store the next entry.
 
610
        """
 
611
        cdef object path_name_file_id_key
 
612
        cdef char *entry_size_cstr
 
613
        cdef unsigned long int entry_size
 
614
        cdef char* executable_cstr
 
615
        cdef int is_executable
 
616
        cdef char* dirname_cstr
 
617
        cdef char* trailing
 
618
        cdef int cur_size
 
619
        cdef int i
 
620
        cdef object minikind
 
621
        cdef object fingerprint
 
622
        cdef object info
 
623
 
 
624
        # Read the 'key' information (dirname, name, file_id)
 
625
        dirname_cstr = self.get_next(&cur_size)
 
626
        # Check to see if we have started a new directory block.
 
627
        # If so, then we need to create a new dirname PyString, so that it can
 
628
        # be used in all of the tuples. This saves time and memory, by re-using
 
629
        # the same object repeatedly.
 
630
 
 
631
        # Do the cheap 'length of string' check first. If the string is a
 
632
        # different length, then we *have* to be a different directory.
 
633
        if (cur_size != PyString_GET_SIZE_void(p_current_dirname[0])
 
634
            or strncmp(dirname_cstr,
 
635
                       # Extract the char* from our current dirname string.  We
 
636
                       # know it is a PyString, so we can use
 
637
                       # PyString_AS_STRING, we use the _void version because
 
638
                       # we are tricking Pyrex by using a void* rather than an
 
639
                       # <object>
 
640
                       PyString_AS_STRING_void(p_current_dirname[0]),
 
641
                       cur_size+1) != 0):
 
642
            dirname = safe_string_from_size(dirname_cstr, cur_size)
 
643
            p_current_dirname[0] = <void*>dirname
 
644
            new_block[0] = 1
 
645
        else:
 
646
            new_block[0] = 0
 
647
 
 
648
        # Build up the key that will be used.
 
649
        # By using <object>(void *) Pyrex will automatically handle the
 
650
        # Py_INCREF that we need.
 
651
        path_name_file_id_key = (<object>p_current_dirname[0],
 
652
                                 self.get_next_str(),
 
653
                                 self.get_next_str(),
 
654
                                )
 
655
 
 
656
        # Parse all of the per-tree information. current has the information in
 
657
        # the same location as parent trees. The only difference is that 'info'
 
658
        # is a 'packed_stat' for current, while it is a 'revision_id' for
 
659
        # parent trees.
 
660
        # minikind, fingerprint, and info will be returned as regular python
 
661
        # strings
 
662
        # entry_size and is_executable will be parsed into a python Long and
 
663
        # python Boolean, respectively.
 
664
        # TODO: jam 20070718 Consider changin the entry_size conversion to
 
665
        #       prefer python Int when possible. They are generally faster to
 
666
        #       work with, and it will be rare that we have a file >2GB.
 
667
        #       Especially since this code is pretty much fixed at a max of
 
668
        #       4GB.
 
669
        trees = []
 
670
        for i from 0 <= i < num_trees:
 
671
            minikind = self.get_next_str()
 
672
            fingerprint = self.get_next_str()
 
673
            entry_size_cstr = self.get_next(&cur_size)
 
674
            entry_size = strtoul(entry_size_cstr, NULL, 10)
 
675
            executable_cstr = self.get_next(&cur_size)
 
676
            is_executable = (executable_cstr[0] == c'y')
 
677
            info = self.get_next_str()
 
678
            PyList_Append(trees, (
 
679
                minikind,     # minikind
 
680
                fingerprint,  # fingerprint
 
681
                entry_size,   # size
 
682
                is_executable,# executable
 
683
                info,         # packed_stat or revision_id
 
684
            ))
 
685
 
 
686
        # The returned tuple is (key, [trees])
 
687
        ret = (path_name_file_id_key, trees)
 
688
        # Ignore the trailing newline, but assert that it does exist, this
 
689
        # ensures that we always finish parsing a line on an end-of-entry
 
690
        # marker.
 
691
        trailing = self.get_next(&cur_size)
 
692
        if cur_size != 1 or trailing[0] != c'\n':
 
693
            raise errors.DirstateCorrupt(self.state,
 
694
                'Bad parse, we expected to end on \\n, not: %d %s: %s'
 
695
                % (cur_size, safe_string_from_size(trailing, cur_size),
 
696
                   ret))
 
697
        return ret
 
698
 
 
699
    def _parse_dirblocks(self):
 
700
        """Parse all dirblocks in the state file."""
 
701
        cdef int num_trees
 
702
        cdef object current_block
 
703
        cdef object entry
 
704
        cdef void * current_dirname
 
705
        cdef int new_block
 
706
        cdef int expected_entry_count
 
707
        cdef int entry_count
 
708
 
 
709
        num_trees = self.state._num_present_parents() + 1
 
710
        expected_entry_count = self.state._num_entries
 
711
 
 
712
        # Ignore the first record
 
713
        self._init()
 
714
 
 
715
        current_block = []
 
716
        dirblocks = [('', current_block), ('', [])]
 
717
        self.state._dirblocks = dirblocks
 
718
        obj = ''
 
719
        current_dirname = <void*>obj
 
720
        new_block = 0
 
721
        entry_count = 0
 
722
 
 
723
        # TODO: jam 2007-05-07 Consider pre-allocating some space for the
 
724
        #       members, and then growing and shrinking from there. If most
 
725
        #       directories have close to 10 entries in them, it would save a
 
726
        #       few mallocs if we default our list size to something
 
727
        #       reasonable. Or we could malloc it to something large (100 or
 
728
        #       so), and then truncate. That would give us a malloc + realloc,
 
729
        #       rather than lots of reallocs.
 
730
        while self.cur_cstr < self.end_cstr:
 
731
            entry = self._get_entry(num_trees, &current_dirname, &new_block)
 
732
            if new_block:
 
733
                # new block - different dirname
 
734
                current_block = []
 
735
                PyList_Append(dirblocks,
 
736
                              (<object>current_dirname, current_block))
 
737
            PyList_Append(current_block, entry)
 
738
            entry_count = entry_count + 1
 
739
        if entry_count != expected_entry_count:
 
740
            raise errors.DirstateCorrupt(self.state,
 
741
                    'We read the wrong number of entries.'
 
742
                    ' We expected to read %s, but read %s'
 
743
                    % (expected_entry_count, entry_count))
 
744
        self.state._split_root_dirblock_into_contents()
 
745
 
 
746
 
 
747
def _read_dirblocks_c(state):
 
748
    """Read in the dirblocks for the given DirState object.
 
749
 
 
750
    This is tightly bound to the DirState internal representation. It should be
 
751
    thought of as a member function, which is only separated out so that we can
 
752
    re-write it in pyrex.
 
753
 
 
754
    :param state: A DirState object.
 
755
    :return: None
 
756
    :postcondition: The dirblocks will be loaded into the appropriate fields in
 
757
        the DirState object.
 
758
    """
 
759
    state._state_file.seek(state._end_of_header)
 
760
    text = state._state_file.read()
 
761
    # TODO: check the crc checksums. crc_measured = zlib.crc32(text)
 
762
 
 
763
    reader = Reader(text, state)
 
764
 
 
765
    reader._parse_dirblocks()
 
766
    state._dirblock_state = DirState.IN_MEMORY_UNMODIFIED
 
767
 
 
768
 
 
769
cdef int minikind_from_mode(int mode):
 
770
    # in order of frequency:
 
771
    if S_ISREG(mode):
 
772
        return c"f"
 
773
    if S_ISDIR(mode):
 
774
        return c"d"
 
775
    if S_ISLNK(mode):
 
776
        return c"l"
 
777
    return 0
 
778
 
 
779
 
 
780
_encode = binascii.b2a_base64
 
781
 
 
782
 
 
783
from struct import pack
 
784
cdef _pack_stat(stat_value):
 
785
    """return a string representing the stat value's key fields.
 
786
 
 
787
    :param stat_value: A stat oject with st_size, st_mtime, st_ctime, st_dev,
 
788
        st_ino and st_mode fields.
 
789
    """
 
790
    cdef char result[6*4] # 6 long ints
 
791
    cdef int *aliased
 
792
    aliased = <int *>result
 
793
    aliased[0] = htonl(stat_value.st_size)
 
794
    aliased[1] = htonl(int(stat_value.st_mtime))
 
795
    aliased[2] = htonl(int(stat_value.st_ctime))
 
796
    aliased[3] = htonl(stat_value.st_dev)
 
797
    aliased[4] = htonl(stat_value.st_ino & 0xFFFFFFFF)
 
798
    aliased[5] = htonl(stat_value.st_mode)
 
799
    packed = PyString_FromStringAndSize(result, 6*4)
 
800
    return _encode(packed)[:-1]
 
801
 
 
802
 
 
803
def update_entry(self, entry, abspath, stat_value):
 
804
    """Update the entry based on what is actually on disk.
 
805
 
 
806
    This function only calculates the sha if it needs to - if the entry is
 
807
    uncachable, or clearly different to the first parent's entry, no sha
 
808
    is calculated, and None is returned.
 
809
 
 
810
    :param entry: This is the dirblock entry for the file in question.
 
811
    :param abspath: The path on disk for this file.
 
812
    :param stat_value: (optional) if we already have done a stat on the
 
813
        file, re-use it.
 
814
    :return: None, or The sha1 hexdigest of the file (40 bytes) or link
 
815
        target of a symlink.
 
816
    """
 
817
    return _update_entry(self, entry, abspath, stat_value)
 
818
 
 
819
 
 
820
cdef _update_entry(self, entry, abspath, stat_value):
 
821
    """Update the entry based on what is actually on disk.
 
822
 
 
823
    This function only calculates the sha if it needs to - if the entry is
 
824
    uncachable, or clearly different to the first parent's entry, no sha
 
825
    is calculated, and None is returned.
 
826
 
 
827
    :param self: The dirstate object this is operating on.
 
828
    :param entry: This is the dirblock entry for the file in question.
 
829
    :param abspath: The path on disk for this file.
 
830
    :param stat_value: The stat value done on the path.
 
831
    :return: None, or The sha1 hexdigest of the file (40 bytes) or link
 
832
        target of a symlink.
 
833
    """
 
834
    # TODO - require pyrex 0.9.8, then use a pyd file to define access to the
 
835
    # _st mode of the compiled stat objects.
 
836
    cdef int minikind, saved_minikind
 
837
    cdef void * details
 
838
    minikind = minikind_from_mode(stat_value.st_mode)
 
839
    if 0 == minikind:
 
840
        return None
 
841
    packed_stat = _pack_stat(stat_value)
 
842
    details = PyList_GetItem_void_void(PyTuple_GetItem_void_void(<void *>entry, 1), 0)
 
843
    saved_minikind = PyString_AsString_obj(<PyObject *>PyTuple_GetItem_void_void(details, 0))[0]
 
844
    if minikind == c'd' and saved_minikind == c't':
 
845
        minikind = c't'
 
846
    saved_link_or_sha1 = PyTuple_GetItem_void_object(details, 1)
 
847
    saved_file_size = PyTuple_GetItem_void_object(details, 2)
 
848
    saved_executable = PyTuple_GetItem_void_object(details, 3)
 
849
    saved_packed_stat = PyTuple_GetItem_void_object(details, 4)
 
850
    # Deal with pyrex decrefing the objects
 
851
    Py_INCREF(saved_link_or_sha1)
 
852
    Py_INCREF(saved_file_size)
 
853
    Py_INCREF(saved_executable)
 
854
    Py_INCREF(saved_packed_stat)
 
855
    #(saved_minikind, saved_link_or_sha1, saved_file_size,
 
856
    # saved_executable, saved_packed_stat) = entry[1][0]
 
857
 
 
858
    if (minikind == saved_minikind
 
859
        and packed_stat == saved_packed_stat):
 
860
        # The stat hasn't changed since we saved, so we can re-use the
 
861
        # saved sha hash.
 
862
        if minikind == c'd':
 
863
            return None
 
864
 
 
865
        # size should also be in packed_stat
 
866
        if saved_file_size == stat_value.st_size:
 
867
            return saved_link_or_sha1
 
868
 
 
869
    # If we have gotten this far, that means that we need to actually
 
870
    # process this entry.
 
871
    link_or_sha1 = None
 
872
    if minikind == c'f':
 
873
        executable = self._is_executable(stat_value.st_mode,
 
874
                                         saved_executable)
 
875
        if self._cutoff_time is None:
 
876
            self._sha_cutoff_time()
 
877
        if (stat_value.st_mtime < self._cutoff_time
 
878
            and stat_value.st_ctime < self._cutoff_time
 
879
            and len(entry[1]) > 1
 
880
            and entry[1][1][0] != 'a'):
 
881
                # Could check for size changes for further optimised
 
882
                # avoidance of sha1's. However the most prominent case of
 
883
                # over-shaing is during initial add, which this catches.
 
884
            link_or_sha1 = self._sha1_file(abspath)
 
885
            entry[1][0] = ('f', link_or_sha1, stat_value.st_size,
 
886
                           executable, packed_stat)
 
887
        else:
 
888
            entry[1][0] = ('f', '', stat_value.st_size,
 
889
                           executable, DirState.NULLSTAT)
 
890
    elif minikind == c'd':
 
891
        link_or_sha1 = None
 
892
        entry[1][0] = ('d', '', 0, False, packed_stat)
 
893
        if saved_minikind != c'd':
 
894
            # This changed from something into a directory. Make sure we
 
895
            # have a directory block for it. This doesn't happen very
 
896
            # often, so this doesn't have to be super fast.
 
897
            block_index, entry_index, dir_present, file_present = \
 
898
                self._get_block_entry_index(entry[0][0], entry[0][1], 0)
 
899
            self._ensure_block(block_index, entry_index,
 
900
                               pathjoin(entry[0][0], entry[0][1]))
 
901
    elif minikind == c'l':
 
902
        link_or_sha1 = self._read_link(abspath, saved_link_or_sha1)
 
903
        if self._cutoff_time is None:
 
904
            self._sha_cutoff_time()
 
905
        if (stat_value.st_mtime < self._cutoff_time
 
906
            and stat_value.st_ctime < self._cutoff_time):
 
907
            entry[1][0] = ('l', link_or_sha1, stat_value.st_size,
 
908
                           False, packed_stat)
 
909
        else:
 
910
            entry[1][0] = ('l', '', stat_value.st_size,
 
911
                           False, DirState.NULLSTAT)
 
912
    self._dirblock_state = DirState.IN_MEMORY_MODIFIED
 
913
    return link_or_sha1
 
914
 
 
915
 
 
916
cdef char _minikind_from_string(object string):
 
917
    """Convert a python string to a char."""
 
918
    return PyString_AsString(string)[0]
 
919
 
 
920
 
 
921
cdef object _kind_absent
 
922
cdef object _kind_file
 
923
cdef object _kind_directory
 
924
cdef object _kind_symlink
 
925
cdef object _kind_relocated
 
926
cdef object _kind_tree_reference
 
927
_kind_absent = "absent"
 
928
_kind_file = "file"
 
929
_kind_directory = "directory"
 
930
_kind_symlink = "symlink"
 
931
_kind_relocated = "relocated"
 
932
_kind_tree_reference = "tree-reference"
 
933
 
 
934
 
 
935
cdef object _minikind_to_kind(char minikind):
 
936
    """Create a string kind for minikind."""
 
937
    cdef char _minikind[1]
 
938
    if minikind == c'f':
 
939
        return _kind_file
 
940
    elif minikind == c'd':
 
941
        return _kind_directory
 
942
    elif minikind == c'a':
 
943
        return _kind_absent
 
944
    elif minikind == c'r':
 
945
        return _kind_relocated
 
946
    elif minikind == c'l':
 
947
        return _kind_symlink
 
948
    elif minikind == c't':
 
949
        return _kind_tree_reference
 
950
    _minikind[0] = minikind
 
951
    raise KeyError(PyString_FromStringAndSize(_minikind, 1))
 
952
 
 
953
 
 
954
cdef int _versioned_minikind(char minikind):
 
955
    """Return non-zero if minikind is in fltd"""
 
956
    return (minikind == c'f' or
 
957
            minikind == c'd' or
 
958
            minikind == c'l' or
 
959
            minikind == c't')
 
960
 
 
961
 
 
962
cdef class ProcessEntryC:
 
963
 
 
964
    cdef object old_dirname_to_file_id # dict
 
965
    cdef object new_dirname_to_file_id # dict
 
966
    cdef readonly object uninteresting
 
967
    cdef object last_source_parent
 
968
    cdef object last_target_parent
 
969
    cdef object include_unchanged
 
970
    cdef object use_filesystem_for_exec
 
971
    cdef object utf8_decode
 
972
    cdef readonly object searched_specific_files
 
973
    cdef object search_specific_files
 
974
    cdef object state
 
975
    # Current iteration variables:
 
976
    cdef object current_root
 
977
    cdef object current_root_unicode
 
978
    cdef object root_entries
 
979
    cdef int root_entries_pos, root_entries_len
 
980
    cdef object root_abspath
 
981
    cdef int source_index, target_index
 
982
    cdef int want_unversioned
 
983
    cdef object tree
 
984
    cdef object dir_iterator
 
985
    cdef int block_index
 
986
    cdef object current_block
 
987
    cdef int current_block_pos
 
988
    cdef object current_block_list
 
989
    cdef object current_dir_info
 
990
    cdef object current_dir_list
 
991
    cdef int path_index
 
992
    cdef object root_dir_info
 
993
    cdef object bisect_left
 
994
    cdef object pathjoin
 
995
    cdef object fstat
 
996
    cdef object sha_file
 
997
 
 
998
    def __init__(self, include_unchanged, use_filesystem_for_exec,
 
999
        search_specific_files, state, source_index, target_index,
 
1000
        want_unversioned, tree):
 
1001
        self.old_dirname_to_file_id = {}
 
1002
        self.new_dirname_to_file_id = {}
 
1003
        # Just a sentry, so that _process_entry can say that this
 
1004
        # record is handled, but isn't interesting to process (unchanged)
 
1005
        self.uninteresting = object()
 
1006
        # Using a list so that we can access the values and change them in
 
1007
        # nested scope. Each one is [path, file_id, entry]
 
1008
        self.last_source_parent = [None, None]
 
1009
        self.last_target_parent = [None, None]
 
1010
        self.include_unchanged = include_unchanged
 
1011
        self.use_filesystem_for_exec = use_filesystem_for_exec
 
1012
        self.utf8_decode = cache_utf8._utf8_decode
 
1013
        # for all search_indexs in each path at or under each element of
 
1014
        # search_specific_files, if the detail is relocated: add the id, and add the
 
1015
        # relocated path as one to search if its not searched already. If the
 
1016
        # detail is not relocated, add the id.
 
1017
        self.searched_specific_files = set()
 
1018
        self.search_specific_files = search_specific_files
 
1019
        self.state = state
 
1020
        self.current_root = None
 
1021
        self.current_root_unicode = None
 
1022
        self.root_entries = None
 
1023
        self.root_entries_pos = 0
 
1024
        self.root_entries_len = 0
 
1025
        self.root_abspath = None
 
1026
        if source_index is None:
 
1027
            self.source_index = -1
 
1028
        else:
 
1029
            self.source_index = source_index
 
1030
        self.target_index = target_index
 
1031
        self.want_unversioned = want_unversioned
 
1032
        self.tree = tree
 
1033
        self.dir_iterator = None
 
1034
        self.block_index = -1
 
1035
        self.current_block = None
 
1036
        self.current_block_list = None
 
1037
        self.current_block_pos = -1
 
1038
        self.current_dir_info = None
 
1039
        self.current_dir_list = None
 
1040
        self.path_index = 0
 
1041
        self.root_dir_info = None
 
1042
        self.bisect_left = bisect.bisect_left
 
1043
        self.pathjoin = osutils.pathjoin
 
1044
        self.fstat = os.fstat
 
1045
        self.sha_file = osutils.sha_file
 
1046
 
 
1047
    cdef _process_entry(self, entry, path_info):
 
1048
        """Compare an entry and real disk to generate delta information.
 
1049
 
 
1050
        :param path_info: top_relpath, basename, kind, lstat, abspath for
 
1051
            the path of entry. If None, then the path is considered absent.
 
1052
            (Perhaps we should pass in a concrete entry for this ?)
 
1053
            Basename is returned as a utf8 string because we expect this
 
1054
            tuple will be ignored, and don't want to take the time to
 
1055
            decode.
 
1056
        :return: None if the these don't match
 
1057
                 A tuple of information about the change, or
 
1058
                 the object 'uninteresting' if these match, but are
 
1059
                 basically identical.
 
1060
        """
 
1061
        cdef char target_minikind
 
1062
        cdef char source_minikind
 
1063
        cdef object file_id
 
1064
        cdef int content_change
 
1065
        cdef object details_list
 
1066
        file_id = None
 
1067
        details_list = entry[1]
 
1068
        if -1 == self.source_index:
 
1069
            source_details = DirState.NULL_PARENT_DETAILS
 
1070
        else:
 
1071
            source_details = details_list[self.source_index]
 
1072
        target_details = details_list[self.target_index]
 
1073
        target_minikind = _minikind_from_string(target_details[0])
 
1074
        if path_info is not None and _versioned_minikind(target_minikind):
 
1075
            if self.target_index != 0:
 
1076
                raise AssertionError("Unsupported target index %d" %
 
1077
                                     self.target_index)
 
1078
            link_or_sha1 = _update_entry(self.state, entry, path_info[4], path_info[3])
 
1079
            # The entry may have been modified by update_entry
 
1080
            target_details = details_list[self.target_index]
 
1081
            target_minikind = _minikind_from_string(target_details[0])
 
1082
        else:
 
1083
            link_or_sha1 = None
 
1084
        # the rest of this function is 0.3 seconds on 50K paths, or
 
1085
        # 0.000006 seconds per call.
 
1086
        source_minikind = _minikind_from_string(source_details[0])
 
1087
        if ((_versioned_minikind(source_minikind) or source_minikind == c'r')
 
1088
            and _versioned_minikind(target_minikind)):
 
1089
            # claimed content in both: diff
 
1090
            #   r    | fdlt   |      | add source to search, add id path move and perform
 
1091
            #        |        |      | diff check on source-target
 
1092
            #   r    | fdlt   |  a   | dangling file that was present in the basis.
 
1093
            #        |        |      | ???
 
1094
            if source_minikind != c'r':
 
1095
                old_dirname = entry[0][0]
 
1096
                old_basename = entry[0][1]
 
1097
                old_path = path = None
 
1098
            else:
 
1099
                # add the source to the search path to find any children it
 
1100
                # has.  TODO ? : only add if it is a container ?
 
1101
                if not osutils.is_inside_any(self.searched_specific_files,
 
1102
                                             source_details[1]):
 
1103
                    self.search_specific_files.add(source_details[1])
 
1104
                # generate the old path; this is needed for stating later
 
1105
                # as well.
 
1106
                old_path = source_details[1]
 
1107
                old_dirname, old_basename = os.path.split(old_path)
 
1108
                path = self.pathjoin(entry[0][0], entry[0][1])
 
1109
                old_entry = self.state._get_entry(self.source_index,
 
1110
                                             path_utf8=old_path)
 
1111
                # update the source details variable to be the real
 
1112
                # location.
 
1113
                if old_entry == (None, None):
 
1114
                    raise errors.CorruptDirstate(self.state._filename,
 
1115
                        "entry '%s/%s' is considered renamed from %r"
 
1116
                        " but source does not exist\n"
 
1117
                        "entry: %s" % (entry[0][0], entry[0][1], old_path, entry))
 
1118
                source_details = old_entry[1][self.source_index]
 
1119
                source_minikind = _minikind_from_string(source_details[0])
 
1120
            if path_info is None:
 
1121
                # the file is missing on disk, show as removed.
 
1122
                content_change = 1
 
1123
                target_kind = None
 
1124
                target_exec = False
 
1125
            else:
 
1126
                # source and target are both versioned and disk file is present.
 
1127
                target_kind = path_info[2]
 
1128
                if target_kind == 'directory':
 
1129
                    if path is None:
 
1130
                        old_path = path = self.pathjoin(old_dirname, old_basename)
 
1131
                    file_id = entry[0][2]
 
1132
                    self.new_dirname_to_file_id[path] = file_id
 
1133
                    if source_minikind != c'd':
 
1134
                        content_change = 1
 
1135
                    else:
 
1136
                        # directories have no fingerprint
 
1137
                        content_change = 0
 
1138
                    target_exec = False
 
1139
                elif target_kind == 'file':
 
1140
                    if source_minikind != c'f':
 
1141
                        content_change = 1
 
1142
                    else:
 
1143
                        # Check the sha. We can't just rely on the size as
 
1144
                        # content filtering may mean differ sizes actually
 
1145
                        # map to the same content
 
1146
                        if link_or_sha1 is None:
 
1147
                            # Stat cache miss:
 
1148
                            statvalue, link_or_sha1 = \
 
1149
                                self.state._sha1_provider.stat_and_sha1(
 
1150
                                path_info[4])
 
1151
                            self.state._observed_sha1(entry, link_or_sha1,
 
1152
                                statvalue)
 
1153
                        content_change = (link_or_sha1 != source_details[1])
 
1154
                    # Target details is updated at update_entry time
 
1155
                    if self.use_filesystem_for_exec:
 
1156
                        # We don't need S_ISREG here, because we are sure
 
1157
                        # we are dealing with a file.
 
1158
                        target_exec = bool(S_IXUSR & path_info[3].st_mode)
 
1159
                    else:
 
1160
                        target_exec = target_details[3]
 
1161
                elif target_kind == 'symlink':
 
1162
                    if source_minikind != c'l':
 
1163
                        content_change = 1
 
1164
                    else:
 
1165
                        content_change = (link_or_sha1 != source_details[1])
 
1166
                    target_exec = False
 
1167
                elif target_kind == 'tree-reference':
 
1168
                    if source_minikind != c't':
 
1169
                        content_change = 1
 
1170
                    else:
 
1171
                        content_change = 0
 
1172
                    target_exec = False
 
1173
                else:
 
1174
                    raise Exception, "unknown kind %s" % path_info[2]
 
1175
            if source_minikind == c'd':
 
1176
                if path is None:
 
1177
                    old_path = path = self.pathjoin(old_dirname, old_basename)
 
1178
                if file_id is None:
 
1179
                    file_id = entry[0][2]
 
1180
                self.old_dirname_to_file_id[old_path] = file_id
 
1181
            # parent id is the entry for the path in the target tree
 
1182
            if old_dirname == self.last_source_parent[0]:
 
1183
                source_parent_id = self.last_source_parent[1]
 
1184
            else:
 
1185
                try:
 
1186
                    source_parent_id = self.old_dirname_to_file_id[old_dirname]
 
1187
                except KeyError:
 
1188
                    source_parent_entry = self.state._get_entry(self.source_index,
 
1189
                                                           path_utf8=old_dirname)
 
1190
                    source_parent_id = source_parent_entry[0][2]
 
1191
                if source_parent_id == entry[0][2]:
 
1192
                    # This is the root, so the parent is None
 
1193
                    source_parent_id = None
 
1194
                else:
 
1195
                    self.last_source_parent[0] = old_dirname
 
1196
                    self.last_source_parent[1] = source_parent_id
 
1197
            new_dirname = entry[0][0]
 
1198
            if new_dirname == self.last_target_parent[0]:
 
1199
                target_parent_id = self.last_target_parent[1]
 
1200
            else:
 
1201
                try:
 
1202
                    target_parent_id = self.new_dirname_to_file_id[new_dirname]
 
1203
                except KeyError:
 
1204
                    # TODO: We don't always need to do the lookup, because the
 
1205
                    #       parent entry will be the same as the source entry.
 
1206
                    target_parent_entry = self.state._get_entry(self.target_index,
 
1207
                                                           path_utf8=new_dirname)
 
1208
                    if target_parent_entry == (None, None):
 
1209
                        raise AssertionError(
 
1210
                            "Could not find target parent in wt: %s\nparent of: %s"
 
1211
                            % (new_dirname, entry))
 
1212
                    target_parent_id = target_parent_entry[0][2]
 
1213
                if target_parent_id == entry[0][2]:
 
1214
                    # This is the root, so the parent is None
 
1215
                    target_parent_id = None
 
1216
                else:
 
1217
                    self.last_target_parent[0] = new_dirname
 
1218
                    self.last_target_parent[1] = target_parent_id
 
1219
 
 
1220
            source_exec = source_details[3]
 
1221
            if (self.include_unchanged
 
1222
                or content_change
 
1223
                or source_parent_id != target_parent_id
 
1224
                or old_basename != entry[0][1]
 
1225
                or source_exec != target_exec
 
1226
                ):
 
1227
                if old_path is None:
 
1228
                    path = self.pathjoin(old_dirname, old_basename)
 
1229
                    old_path = path
 
1230
                    old_path_u = self.utf8_decode(old_path)[0]
 
1231
                    path_u = old_path_u
 
1232
                else:
 
1233
                    old_path_u = self.utf8_decode(old_path)[0]
 
1234
                    if old_path == path:
 
1235
                        path_u = old_path_u
 
1236
                    else:
 
1237
                        path_u = self.utf8_decode(path)[0]
 
1238
                source_kind = _minikind_to_kind(source_minikind)
 
1239
                return (entry[0][2],
 
1240
                       (old_path_u, path_u),
 
1241
                       content_change,
 
1242
                       (True, True),
 
1243
                       (source_parent_id, target_parent_id),
 
1244
                       (self.utf8_decode(old_basename)[0], self.utf8_decode(entry[0][1])[0]),
 
1245
                       (source_kind, target_kind),
 
1246
                       (source_exec, target_exec))
 
1247
            else:
 
1248
                return self.uninteresting
 
1249
        elif source_minikind == c'a' and _versioned_minikind(target_minikind):
 
1250
            # looks like a new file
 
1251
            path = self.pathjoin(entry[0][0], entry[0][1])
 
1252
            # parent id is the entry for the path in the target tree
 
1253
            # TODO: these are the same for an entire directory: cache em.
 
1254
            parent_entry = self.state._get_entry(self.target_index,
 
1255
                                                 path_utf8=entry[0][0])
 
1256
            if parent_entry is None:
 
1257
                raise errors.DirstateCorrupt(self.state,
 
1258
                    "We could not find the parent entry in index %d"
 
1259
                    " for the entry: %s"
 
1260
                    % (self.target_index, entry[0]))
 
1261
            parent_id = parent_entry[0][2]
 
1262
            if parent_id == entry[0][2]:
 
1263
                parent_id = None
 
1264
            if path_info is not None:
 
1265
                # Present on disk:
 
1266
                if self.use_filesystem_for_exec:
 
1267
                    # We need S_ISREG here, because we aren't sure if this
 
1268
                    # is a file or not.
 
1269
                    target_exec = bool(
 
1270
                        S_ISREG(path_info[3].st_mode)
 
1271
                        and S_IXUSR & path_info[3].st_mode)
 
1272
                else:
 
1273
                    target_exec = target_details[3]
 
1274
                return (entry[0][2],
 
1275
                       (None, self.utf8_decode(path)[0]),
 
1276
                       True,
 
1277
                       (False, True),
 
1278
                       (None, parent_id),
 
1279
                       (None, self.utf8_decode(entry[0][1])[0]),
 
1280
                       (None, path_info[2]),
 
1281
                       (None, target_exec))
 
1282
            else:
 
1283
                # Its a missing file, report it as such.
 
1284
                return (entry[0][2],
 
1285
                       (None, self.utf8_decode(path)[0]),
 
1286
                       False,
 
1287
                       (False, True),
 
1288
                       (None, parent_id),
 
1289
                       (None, self.utf8_decode(entry[0][1])[0]),
 
1290
                       (None, None),
 
1291
                       (None, False))
 
1292
        elif _versioned_minikind(source_minikind) and target_minikind == c'a':
 
1293
            # unversioned, possibly, or possibly not deleted: we dont care.
 
1294
            # if its still on disk, *and* theres no other entry at this
 
1295
            # path [we dont know this in this routine at the moment -
 
1296
            # perhaps we should change this - then it would be an unknown.
 
1297
            old_path = self.pathjoin(entry[0][0], entry[0][1])
 
1298
            # parent id is the entry for the path in the target tree
 
1299
            parent_id = self.state._get_entry(self.source_index, path_utf8=entry[0][0])[0][2]
 
1300
            if parent_id == entry[0][2]:
 
1301
                parent_id = None
 
1302
            return (entry[0][2],
 
1303
                   (self.utf8_decode(old_path)[0], None),
 
1304
                   True,
 
1305
                   (True, False),
 
1306
                   (parent_id, None),
 
1307
                   (self.utf8_decode(entry[0][1])[0], None),
 
1308
                   (_minikind_to_kind(source_minikind), None),
 
1309
                   (source_details[3], None))
 
1310
        elif _versioned_minikind(source_minikind) and target_minikind == c'r':
 
1311
            # a rename; could be a true rename, or a rename inherited from
 
1312
            # a renamed parent. TODO: handle this efficiently. Its not
 
1313
            # common case to rename dirs though, so a correct but slow
 
1314
            # implementation will do.
 
1315
            if not osutils.is_inside_any(self.searched_specific_files, target_details[1]):
 
1316
                self.search_specific_files.add(target_details[1])
 
1317
        elif ((source_minikind == c'r' or source_minikind == c'a') and
 
1318
              (target_minikind == c'r' or target_minikind == c'a')):
 
1319
            # neither of the selected trees contain this path,
 
1320
            # so skip over it. This is not currently directly tested, but
 
1321
            # is indirectly via test_too_much.TestCommands.test_conflicts.
 
1322
            pass
 
1323
        else:
 
1324
            raise AssertionError("don't know how to compare "
 
1325
                "source_minikind=%r, target_minikind=%r"
 
1326
                % (source_minikind, target_minikind))
 
1327
            ## import pdb;pdb.set_trace()
 
1328
        return None
 
1329
 
 
1330
    def __iter__(self):
 
1331
        return self
 
1332
 
 
1333
    def iter_changes(self):
 
1334
        return self
 
1335
 
 
1336
    cdef void _update_current_block(self):
 
1337
        if (self.block_index < len(self.state._dirblocks) and
 
1338
            osutils.is_inside(self.current_root, self.state._dirblocks[self.block_index][0])):
 
1339
            self.current_block = self.state._dirblocks[self.block_index]
 
1340
            self.current_block_list = self.current_block[1]
 
1341
            self.current_block_pos = 0
 
1342
        else:
 
1343
            self.current_block = None
 
1344
            self.current_block_list = None
 
1345
 
 
1346
    def __next__(self):
 
1347
        # Simple thunk to allow tail recursion without pyrex confusion
 
1348
        return self._iter_next()
 
1349
 
 
1350
    cdef _iter_next(self):
 
1351
        """Iterate over the changes."""
 
1352
        # This function single steps through an iterator. As such while loops
 
1353
        # are often exited by 'return' - the code is structured so that the
 
1354
        # next call into the function will return to the same while loop. Note
 
1355
        # that all flow control needed to re-reach that step is reexecuted,
 
1356
        # which can be a performance problem. It has not yet been tuned to
 
1357
        # minimise this; a state machine is probably the simplest restructuring
 
1358
        # to both minimise this overhead and make the code considerably more
 
1359
        # understandable.
 
1360
 
 
1361
        # sketch: 
 
1362
        # compare source_index and target_index at or under each element of search_specific_files.
 
1363
        # follow the following comparison table. Note that we only want to do diff operations when
 
1364
        # the target is fdl because thats when the walkdirs logic will have exposed the pathinfo 
 
1365
        # for the target.
 
1366
        # cases:
 
1367
        # 
 
1368
        # Source | Target | disk | action
 
1369
        #   r    | fdlt   |      | add source to search, add id path move and perform
 
1370
        #        |        |      | diff check on source-target
 
1371
        #   r    | fdlt   |  a   | dangling file that was present in the basis. 
 
1372
        #        |        |      | ???
 
1373
        #   r    |  a     |      | add source to search
 
1374
        #   r    |  a     |  a   | 
 
1375
        #   r    |  r     |      | this path is present in a non-examined tree, skip.
 
1376
        #   r    |  r     |  a   | this path is present in a non-examined tree, skip.
 
1377
        #   a    | fdlt   |      | add new id
 
1378
        #   a    | fdlt   |  a   | dangling locally added file, skip
 
1379
        #   a    |  a     |      | not present in either tree, skip
 
1380
        #   a    |  a     |  a   | not present in any tree, skip
 
1381
        #   a    |  r     |      | not present in either tree at this path, skip as it
 
1382
        #        |        |      | may not be selected by the users list of paths.
 
1383
        #   a    |  r     |  a   | not present in either tree at this path, skip as it
 
1384
        #        |        |      | may not be selected by the users list of paths.
 
1385
        #  fdlt  | fdlt   |      | content in both: diff them
 
1386
        #  fdlt  | fdlt   |  a   | deleted locally, but not unversioned - show as deleted ?
 
1387
        #  fdlt  |  a     |      | unversioned: output deleted id for now
 
1388
        #  fdlt  |  a     |  a   | unversioned and deleted: output deleted id
 
1389
        #  fdlt  |  r     |      | relocated in this tree, so add target to search.
 
1390
        #        |        |      | Dont diff, we will see an r,fd; pair when we reach
 
1391
        #        |        |      | this id at the other path.
 
1392
        #  fdlt  |  r     |  a   | relocated in this tree, so add target to search.
 
1393
        #        |        |      | Dont diff, we will see an r,fd; pair when we reach
 
1394
        #        |        |      | this id at the other path.
 
1395
 
 
1396
        # TODO: jam 20070516 - Avoid the _get_entry lookup overhead by
 
1397
        #       keeping a cache of directories that we have seen.
 
1398
        cdef object current_dirname, current_blockname
 
1399
        cdef char * current_dirname_c, * current_blockname_c
 
1400
        cdef int advance_entry, advance_path
 
1401
        cdef int path_handled
 
1402
        uninteresting = self.uninteresting
 
1403
        searched_specific_files = self.searched_specific_files
 
1404
        # Are we walking a root?
 
1405
        while self.root_entries_pos < self.root_entries_len:
 
1406
            entry = self.root_entries[self.root_entries_pos]
 
1407
            self.root_entries_pos = self.root_entries_pos + 1
 
1408
            result = self._process_entry(entry, self.root_dir_info)
 
1409
            if result is not None and result is not self.uninteresting:
 
1410
                return result
 
1411
        # Have we finished the prior root, or never started one ?
 
1412
        if self.current_root is None:
 
1413
            # TODO: the pending list should be lexically sorted?  the
 
1414
            # interface doesn't require it.
 
1415
            try:
 
1416
                self.current_root = self.search_specific_files.pop()
 
1417
            except KeyError:
 
1418
                raise StopIteration()
 
1419
            self.current_root_unicode = self.current_root.decode('utf8')
 
1420
            self.searched_specific_files.add(self.current_root)
 
1421
            # process the entries for this containing directory: the rest will be
 
1422
            # found by their parents recursively.
 
1423
            self.root_entries = self.state._entries_for_path(self.current_root)
 
1424
            self.root_entries_len = len(self.root_entries)
 
1425
            self.root_abspath = self.tree.abspath(self.current_root_unicode)
 
1426
            try:
 
1427
                root_stat = os.lstat(self.root_abspath)
 
1428
            except OSError, e:
 
1429
                if e.errno == errno.ENOENT:
 
1430
                    # the path does not exist: let _process_entry know that.
 
1431
                    self.root_dir_info = None
 
1432
                else:
 
1433
                    # some other random error: hand it up.
 
1434
                    raise
 
1435
            else:
 
1436
                self.root_dir_info = ('', self.current_root,
 
1437
                    osutils.file_kind_from_stat_mode(root_stat.st_mode), root_stat,
 
1438
                    self.root_abspath)
 
1439
                if self.root_dir_info[2] == 'directory':
 
1440
                    if self.tree._directory_is_tree_reference(
 
1441
                        self.current_root_unicode):
 
1442
                        self.root_dir_info = self.root_dir_info[:2] + \
 
1443
                            ('tree-reference',) + self.root_dir_info[3:]
 
1444
            if not self.root_entries and not self.root_dir_info:
 
1445
                # this specified path is not present at all, skip it.
 
1446
                # (tail recursion, can do a loop once the full structure is
 
1447
                # known).
 
1448
                return self._iter_next()
 
1449
            path_handled = 0
 
1450
            self.root_entries_pos = 0
 
1451
            # XXX Clarity: This loop is duplicated a out the self.current_root
 
1452
            # is None guard above: if we return from it, it completes there
 
1453
            # (and the following if block cannot trigger because
 
1454
            # path_handled must be true, so the if block is not # duplicated.
 
1455
            while self.root_entries_pos < self.root_entries_len:
 
1456
                entry = self.root_entries[self.root_entries_pos]
 
1457
                self.root_entries_pos = self.root_entries_pos + 1
 
1458
                result = self._process_entry(entry, self.root_dir_info)
 
1459
                if result is not None:
 
1460
                    path_handled = -1
 
1461
                    if result is not self.uninteresting:
 
1462
                        return result
 
1463
            # handle unversioned specified paths:
 
1464
            if self.want_unversioned and not path_handled and self.root_dir_info:
 
1465
                new_executable = bool(
 
1466
                    stat.S_ISREG(self.root_dir_info[3].st_mode)
 
1467
                    and stat.S_IEXEC & self.root_dir_info[3].st_mode)
 
1468
                return (None,
 
1469
                       (None, self.current_root_unicode),
 
1470
                       True,
 
1471
                       (False, False),
 
1472
                       (None, None),
 
1473
                       (None, splitpath(self.current_root_unicode)[-1]),
 
1474
                       (None, self.root_dir_info[2]),
 
1475
                       (None, new_executable)
 
1476
                      )
 
1477
            # If we reach here, the outer flow continues, which enters into the
 
1478
            # per-root setup logic.
 
1479
        if self.current_dir_info is None and self.current_block is None:
 
1480
            # setup iteration of this root:
 
1481
            self.current_dir_list = None
 
1482
            if self.root_dir_info and self.root_dir_info[2] == 'tree-reference':
 
1483
                self.current_dir_info = None
 
1484
            else:
 
1485
                self.dir_iterator = osutils._walkdirs_utf8(self.root_abspath,
 
1486
                    prefix=self.current_root)
 
1487
                self.path_index = 0
 
1488
                try:
 
1489
                    self.current_dir_info = self.dir_iterator.next()
 
1490
                    self.current_dir_list = self.current_dir_info[1]
 
1491
                except OSError, e:
 
1492
                    # there may be directories in the inventory even though
 
1493
                    # this path is not a file on disk: so mark it as end of
 
1494
                    # iterator
 
1495
                    if e.errno in (errno.ENOENT, errno.ENOTDIR, errno.EINVAL):
 
1496
                        self.current_dir_info = None
 
1497
                    elif sys.platform == 'win32':
 
1498
                        # on win32, python2.4 has e.errno == ERROR_DIRECTORY, but
 
1499
                        # python 2.5 has e.errno == EINVAL,
 
1500
                        #            and e.winerror == ERROR_DIRECTORY
 
1501
                        try:
 
1502
                            e_winerror = e.winerror
 
1503
                        except AttributeError:
 
1504
                            e_winerror = None
 
1505
                        win_errors = (ERROR_DIRECTORY, ERROR_PATH_NOT_FOUND)
 
1506
                        if (e.errno in win_errors or e_winerror in win_errors):
 
1507
                            self.current_dir_info = None
 
1508
                        else:
 
1509
                            # Will this really raise the right exception ?
 
1510
                            raise
 
1511
                    else:
 
1512
                        raise
 
1513
                else:
 
1514
                    if self.current_dir_info[0][0] == '':
 
1515
                        # remove .bzr from iteration
 
1516
                        bzr_index = self.bisect_left(self.current_dir_list, ('.bzr',))
 
1517
                        if self.current_dir_list[bzr_index][0] != '.bzr':
 
1518
                            raise AssertionError()
 
1519
                        del self.current_dir_list[bzr_index]
 
1520
            initial_key = (self.current_root, '', '')
 
1521
            self.block_index, _ = self.state._find_block_index_from_key(initial_key)
 
1522
            if self.block_index == 0:
 
1523
                # we have processed the total root already, but because the
 
1524
                # initial key matched it we should skip it here.
 
1525
                self.block_index = self.block_index + 1
 
1526
            self._update_current_block()
 
1527
        # walk until both the directory listing and the versioned metadata
 
1528
        # are exhausted. 
 
1529
        while (self.current_dir_info is not None
 
1530
            or self.current_block is not None):
 
1531
            # Uncommon case - a missing directory or an unversioned directory:
 
1532
            if (self.current_dir_info and self.current_block
 
1533
                and self.current_dir_info[0][0] != self.current_block[0]):
 
1534
                # Work around pyrex broken heuristic - current_dirname has
 
1535
                # the same scope as current_dirname_c
 
1536
                current_dirname = self.current_dir_info[0][0]
 
1537
                current_dirname_c = PyString_AS_STRING_void(
 
1538
                    <void *>current_dirname)
 
1539
                current_blockname = self.current_block[0]
 
1540
                current_blockname_c = PyString_AS_STRING_void(
 
1541
                    <void *>current_blockname)
 
1542
                # In the python generator we evaluate this if block once per
 
1543
                # dir+block; because we reenter in the pyrex version its being
 
1544
                # evaluated once per path: we could cache the result before
 
1545
                # doing the while loop and probably save time.
 
1546
                if _cmp_by_dirs(current_dirname_c,
 
1547
                    PyString_Size(current_dirname),
 
1548
                    current_blockname_c,
 
1549
                    PyString_Size(current_blockname)) < 0:
 
1550
                    # filesystem data refers to paths not covered by the
 
1551
                    # dirblock.  this has two possibilities:
 
1552
                    # A) it is versioned but empty, so there is no block for it
 
1553
                    # B) it is not versioned.
 
1554
 
 
1555
                    # if (A) then we need to recurse into it to check for
 
1556
                    # new unknown files or directories.
 
1557
                    # if (B) then we should ignore it, because we don't
 
1558
                    # recurse into unknown directories.
 
1559
                    # We are doing a loop
 
1560
                    while self.path_index < len(self.current_dir_list):
 
1561
                        current_path_info = self.current_dir_list[self.path_index]
 
1562
                        # dont descend into this unversioned path if it is
 
1563
                        # a dir
 
1564
                        if current_path_info[2] in ('directory',
 
1565
                                                    'tree-reference'):
 
1566
                            del self.current_dir_list[self.path_index]
 
1567
                            self.path_index = self.path_index - 1
 
1568
                        self.path_index = self.path_index + 1
 
1569
                        if self.want_unversioned:
 
1570
                            if current_path_info[2] == 'directory':
 
1571
                                if self.tree._directory_is_tree_reference(
 
1572
                                    self.utf8_decode(current_path_info[0])[0]):
 
1573
                                    current_path_info = current_path_info[:2] + \
 
1574
                                        ('tree-reference',) + current_path_info[3:]
 
1575
                            new_executable = bool(
 
1576
                                stat.S_ISREG(current_path_info[3].st_mode)
 
1577
                                and stat.S_IEXEC & current_path_info[3].st_mode)
 
1578
                            return (None,
 
1579
                                (None, self.utf8_decode(current_path_info[0])[0]),
 
1580
                                True,
 
1581
                                (False, False),
 
1582
                                (None, None),
 
1583
                                (None, self.utf8_decode(current_path_info[1])[0]),
 
1584
                                (None, current_path_info[2]),
 
1585
                                (None, new_executable))
 
1586
                    # This dir info has been handled, go to the next
 
1587
                    self.path_index = 0
 
1588
                    self.current_dir_list = None
 
1589
                    try:
 
1590
                        self.current_dir_info = self.dir_iterator.next()
 
1591
                        self.current_dir_list = self.current_dir_info[1]
 
1592
                    except StopIteration:
 
1593
                        self.current_dir_info = None
 
1594
                else: #(dircmp > 0)
 
1595
                    # We have a dirblock entry for this location, but there
 
1596
                    # is no filesystem path for this. This is most likely
 
1597
                    # because a directory was removed from the disk.
 
1598
                    # We don't have to report the missing directory,
 
1599
                    # because that should have already been handled, but we
 
1600
                    # need to handle all of the files that are contained
 
1601
                    # within.
 
1602
                    while self.current_block_pos < len(self.current_block_list):
 
1603
                        current_entry = self.current_block_list[self.current_block_pos]
 
1604
                        self.current_block_pos = self.current_block_pos + 1
 
1605
                        # entry referring to file not present on disk.
 
1606
                        # advance the entry only, after processing.
 
1607
                        result = self._process_entry(current_entry, None)
 
1608
                        if result is not None:
 
1609
                            if result is not self.uninteresting:
 
1610
                                return result
 
1611
                    self.block_index = self.block_index + 1
 
1612
                    self._update_current_block()
 
1613
                continue # next loop-on-block/dir
 
1614
            result = self._loop_one_block()
 
1615
            if result is not None:
 
1616
                return result
 
1617
        if len(self.search_specific_files):
 
1618
            # More supplied paths to process
 
1619
            self.current_root = None
 
1620
            return self._iter_next()
 
1621
        raise StopIteration()
 
1622
 
 
1623
    cdef object _maybe_tree_ref(self, current_path_info):
 
1624
        if self.tree._directory_is_tree_reference(
 
1625
            self.utf8_decode(current_path_info[0])[0]):
 
1626
            return current_path_info[:2] + \
 
1627
                ('tree-reference',) + current_path_info[3:]
 
1628
        else:
 
1629
            return current_path_info
 
1630
 
 
1631
    cdef object _loop_one_block(self):
 
1632
            # current_dir_info and current_block refer to the same directory -
 
1633
            # this is the common case code.
 
1634
            # Assign local variables for current path and entry:
 
1635
            cdef object current_entry
 
1636
            cdef object current_path_info
 
1637
            cdef int path_handled
 
1638
            cdef char minikind
 
1639
            cdef int cmp_result
 
1640
            # cdef char * temp_str
 
1641
            # cdef Py_ssize_t temp_str_length
 
1642
            # PyString_AsStringAndSize(disk_kind, &temp_str, &temp_str_length)
 
1643
            # if not strncmp(temp_str, "directory", temp_str_length):
 
1644
            if (self.current_block is not None and
 
1645
                self.current_block_pos < PyList_GET_SIZE(self.current_block_list)):
 
1646
                current_entry = PyList_GET_ITEM(self.current_block_list,
 
1647
                    self.current_block_pos)
 
1648
                # accomodate pyrex
 
1649
                Py_INCREF(current_entry)
 
1650
            else:
 
1651
                current_entry = None
 
1652
            if (self.current_dir_info is not None and
 
1653
                self.path_index < PyList_GET_SIZE(self.current_dir_list)):
 
1654
                current_path_info = PyList_GET_ITEM(self.current_dir_list,
 
1655
                    self.path_index)
 
1656
                # accomodate pyrex
 
1657
                Py_INCREF(current_path_info)
 
1658
                disk_kind = PyTuple_GET_ITEM(current_path_info, 2)
 
1659
                # accomodate pyrex
 
1660
                Py_INCREF(disk_kind)
 
1661
                if disk_kind == "directory":
 
1662
                    current_path_info = self._maybe_tree_ref(current_path_info)
 
1663
            else:
 
1664
                current_path_info = None
 
1665
            while (current_entry is not None or current_path_info is not None):
 
1666
                advance_entry = -1
 
1667
                advance_path = -1
 
1668
                result = None
 
1669
                path_handled = 0
 
1670
                if current_entry is None:
 
1671
                    # unversioned -  the check for path_handled when the path
 
1672
                    # is advanced will yield this path if needed.
 
1673
                    pass
 
1674
                elif current_path_info is None:
 
1675
                    # no path is fine: the per entry code will handle it.
 
1676
                    result = self._process_entry(current_entry, current_path_info)
 
1677
                    if result is not None:
 
1678
                        if result is self.uninteresting:
 
1679
                            result = None
 
1680
                else:
 
1681
                    minikind = _minikind_from_string(
 
1682
                        current_entry[1][self.target_index][0])
 
1683
                    cmp_result = cmp(current_path_info[1], current_entry[0][1])
 
1684
                    if (cmp_result or minikind == c'a' or minikind == c'r'):
 
1685
                        # The current path on disk doesn't match the dirblock
 
1686
                        # record. Either the dirblock record is marked as
 
1687
                        # absent/renamed, or the file on disk is not present at all
 
1688
                        # in the dirblock. Either way, report about the dirblock
 
1689
                        # entry, and let other code handle the filesystem one.
 
1690
 
 
1691
                        # Compare the basename for these files to determine
 
1692
                        # which comes first
 
1693
                        if cmp_result < 0:
 
1694
                            # extra file on disk: pass for now, but only
 
1695
                            # increment the path, not the entry
 
1696
                            advance_entry = 0
 
1697
                        else:
 
1698
                            # entry referring to file not present on disk.
 
1699
                            # advance the entry only, after processing.
 
1700
                            result = self._process_entry(current_entry, None)
 
1701
                            if result is not None:
 
1702
                                if result is self.uninteresting:
 
1703
                                    result = None
 
1704
                            advance_path = 0
 
1705
                    else:
 
1706
                        # paths are the same,and the dirstate entry is not
 
1707
                        # absent or renamed.
 
1708
                        result = self._process_entry(current_entry, current_path_info)
 
1709
                        if result is not None:
 
1710
                            path_handled = -1
 
1711
                            if result is self.uninteresting:
 
1712
                                result = None
 
1713
                # >- loop control starts here:
 
1714
                # >- entry
 
1715
                if advance_entry and current_entry is not None:
 
1716
                    self.current_block_pos = self.current_block_pos + 1
 
1717
                    if self.current_block_pos < PyList_GET_SIZE(self.current_block_list):
 
1718
                        current_entry = self.current_block_list[self.current_block_pos]
 
1719
                    else:
 
1720
                        current_entry = None
 
1721
                # >- path
 
1722
                if advance_path and current_path_info is not None:
 
1723
                    if not path_handled:
 
1724
                        # unversioned in all regards
 
1725
                        if self.want_unversioned:
 
1726
                            new_executable = bool(
 
1727
                                stat.S_ISREG(current_path_info[3].st_mode)
 
1728
                                and stat.S_IEXEC & current_path_info[3].st_mode)
 
1729
                            try:
 
1730
                                relpath_unicode = self.utf8_decode(current_path_info[0])[0]
 
1731
                            except UnicodeDecodeError:
 
1732
                                raise errors.BadFilenameEncoding(
 
1733
                                    current_path_info[0], osutils._fs_enc)
 
1734
                            if result is not None:
 
1735
                                raise AssertionError(
 
1736
                                    "result is not None: %r" % result)
 
1737
                            result = (None,
 
1738
                                (None, relpath_unicode),
 
1739
                                True,
 
1740
                                (False, False),
 
1741
                                (None, None),
 
1742
                                (None, self.utf8_decode(current_path_info[1])[0]),
 
1743
                                (None, current_path_info[2]),
 
1744
                                (None, new_executable))
 
1745
                        # dont descend into this unversioned path if it is
 
1746
                        # a dir
 
1747
                        if current_path_info[2] in ('directory'):
 
1748
                            del self.current_dir_list[self.path_index]
 
1749
                            self.path_index = self.path_index - 1
 
1750
                    # dont descend the disk iterator into any tree 
 
1751
                    # paths.
 
1752
                    if current_path_info[2] == 'tree-reference':
 
1753
                        del self.current_dir_list[self.path_index]
 
1754
                        self.path_index = self.path_index - 1
 
1755
                    self.path_index = self.path_index + 1
 
1756
                    if self.path_index < len(self.current_dir_list):
 
1757
                        current_path_info = self.current_dir_list[self.path_index]
 
1758
                        if current_path_info[2] == 'directory':
 
1759
                            current_path_info = self._maybe_tree_ref(
 
1760
                                current_path_info)
 
1761
                    else:
 
1762
                        current_path_info = None
 
1763
                if result is not None:
 
1764
                    # Found a result on this pass, yield it
 
1765
                    return result
 
1766
            if self.current_block is not None:
 
1767
                self.block_index = self.block_index + 1
 
1768
                self._update_current_block()
 
1769
            if self.current_dir_info is not None:
 
1770
                self.path_index = 0
 
1771
                self.current_dir_list = None
 
1772
                try:
 
1773
                    self.current_dir_info = self.dir_iterator.next()
 
1774
                    self.current_dir_list = self.current_dir_info[1]
 
1775
                except StopIteration:
 
1776
                    self.current_dir_info = None