walk.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. # walk.py -- General implementation of walking commits and their contents.
  2. # Copyright (C) 2010 Google, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # or (at your option) any later version of the License.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. """General implementation of walking commits and their contents."""
  19. from collections import defaultdict
  20. import collections
  21. import heapq
  22. import itertools
  23. from dulwich.diff_tree import (
  24. RENAME_CHANGE_TYPES,
  25. tree_changes,
  26. tree_changes_for_merge,
  27. RenameDetector,
  28. )
  29. from dulwich.errors import (
  30. MissingCommitError,
  31. )
  32. ORDER_DATE = 'date'
  33. ORDER_TOPO = 'topo'
  34. ALL_ORDERS = (ORDER_DATE, ORDER_TOPO)
  35. # Maximum number of commits to walk past a commit time boundary.
  36. _MAX_EXTRA_COMMITS = 5
  37. class WalkEntry(object):
  38. """Object encapsulating a single result from a walk."""
  39. def __init__(self, walker, commit):
  40. self.commit = commit
  41. self._store = walker.store
  42. self._get_parents = walker.get_parents
  43. self._changes = None
  44. self._rename_detector = walker.rename_detector
  45. def changes(self):
  46. """Get the tree changes for this entry.
  47. :return: For commits with up to one parent, a list of TreeChange
  48. objects; if the commit has no parents, these will be relative to the
  49. empty tree. For merge commits, a list of lists of TreeChange
  50. objects; see dulwich.diff.tree_changes_for_merge.
  51. """
  52. if self._changes is None:
  53. commit = self.commit
  54. if not self._get_parents(commit):
  55. changes_func = tree_changes
  56. parent = None
  57. elif len(self._get_parents(commit)) == 1:
  58. changes_func = tree_changes
  59. parent = self._store[self._get_parents(commit)[0]].tree
  60. else:
  61. changes_func = tree_changes_for_merge
  62. parent = [self._store[p].tree for p in self._get_parents(commit)]
  63. self._changes = list(changes_func(
  64. self._store, parent, commit.tree,
  65. rename_detector=self._rename_detector))
  66. return self._changes
  67. def __repr__(self):
  68. return '<WalkEntry commit=%s, changes=%r>' % (
  69. self.commit.id, self.changes())
  70. class _CommitTimeQueue(object):
  71. """Priority queue of WalkEntry objects by commit time."""
  72. def __init__(self, walker):
  73. self._walker = walker
  74. self._store = walker.store
  75. self._get_parents = walker.get_parents
  76. self._excluded = walker.excluded
  77. self._pq = []
  78. self._pq_set = set()
  79. self._seen = set()
  80. self._done = set()
  81. self._min_time = walker.since
  82. self._last = None
  83. self._extra_commits_left = _MAX_EXTRA_COMMITS
  84. self._is_finished = False
  85. for commit_id in itertools.chain(walker.include, walker.excluded):
  86. self._push(commit_id)
  87. def _push(self, commit_id):
  88. try:
  89. commit = self._store[commit_id]
  90. except KeyError:
  91. raise MissingCommitError(commit_id)
  92. if commit_id not in self._pq_set and commit_id not in self._done:
  93. heapq.heappush(self._pq, (-commit.commit_time, commit))
  94. self._pq_set.add(commit_id)
  95. self._seen.add(commit_id)
  96. def _exclude_parents(self, commit):
  97. excluded = self._excluded
  98. seen = self._seen
  99. todo = [commit]
  100. while todo:
  101. commit = todo.pop()
  102. for parent in self._get_parents(commit):
  103. if parent not in excluded and parent in seen:
  104. # TODO: This is inefficient unless the object store does
  105. # some caching (which DiskObjectStore currently does not).
  106. # We could either add caching in this class or pass around
  107. # parsed queue entry objects instead of commits.
  108. todo.append(self._store[parent])
  109. excluded.add(parent)
  110. def next(self):
  111. if self._is_finished:
  112. return None
  113. while self._pq:
  114. _, commit = heapq.heappop(self._pq)
  115. sha = commit.id
  116. self._pq_set.remove(sha)
  117. if sha in self._done:
  118. continue
  119. self._done.add(sha)
  120. for parent_id in self._get_parents(commit):
  121. self._push(parent_id)
  122. reset_extra_commits = True
  123. is_excluded = sha in self._excluded
  124. if is_excluded:
  125. self._exclude_parents(commit)
  126. if self._pq and all(c.id in self._excluded
  127. for _, c in self._pq):
  128. _, n = self._pq[0]
  129. if self._last and n.commit_time >= self._last.commit_time:
  130. # If the next commit is newer than the last one, we need
  131. # to keep walking in case its parents (which we may not
  132. # have seen yet) are excluded. This gives the excluded
  133. # set a chance to "catch up" while the commit is still
  134. # in the Walker's output queue.
  135. reset_extra_commits = True
  136. else:
  137. reset_extra_commits = False
  138. if (self._min_time is not None and
  139. commit.commit_time < self._min_time):
  140. # We want to stop walking at min_time, but commits at the
  141. # boundary may be out of order with respect to their parents. So
  142. # we walk _MAX_EXTRA_COMMITS more commits once we hit this
  143. # boundary.
  144. reset_extra_commits = False
  145. if reset_extra_commits:
  146. # We're not at a boundary, so reset the counter.
  147. self._extra_commits_left = _MAX_EXTRA_COMMITS
  148. else:
  149. self._extra_commits_left -= 1
  150. if not self._extra_commits_left:
  151. break
  152. if not is_excluded:
  153. self._last = commit
  154. return WalkEntry(self._walker, commit)
  155. self._is_finished = True
  156. return None
  157. class Walker(object):
  158. """Object for performing a walk of commits in a store.
  159. Walker objects are initialized with a store and other options and can then
  160. be treated as iterators of Commit objects.
  161. """
  162. def __init__(self, store, include, exclude=None, order=ORDER_DATE,
  163. reverse=False, max_entries=None, paths=None,
  164. rename_detector=None, follow=False, since=None, until=None,
  165. get_parents=lambda commit: commit.parents,
  166. queue_cls=_CommitTimeQueue):
  167. """Constructor.
  168. :param store: ObjectStore instance for looking up objects.
  169. :param include: Iterable of SHAs of commits to include along with their
  170. ancestors.
  171. :param exclude: Iterable of SHAs of commits to exclude along with their
  172. ancestors, overriding includes.
  173. :param order: ORDER_* constant specifying the order of results. Anything
  174. other than ORDER_DATE may result in O(n) memory usage.
  175. :param reverse: If True, reverse the order of output, requiring O(n)
  176. memory.
  177. :param max_entries: The maximum number of entries to yield, or None for
  178. no limit.
  179. :param paths: Iterable of file or subtree paths to show entries for.
  180. :param rename_detector: diff.RenameDetector object for detecting
  181. renames.
  182. :param follow: If True, follow path across renames/copies. Forces a
  183. default rename_detector.
  184. :param since: Timestamp to list commits after.
  185. :param until: Timestamp to list commits before.
  186. :param get_parents: Method to retrieve the parents of a commit
  187. :param queue_cls: A class to use for a queue of commits, supporting the
  188. iterator protocol. The constructor takes a single argument, the
  189. Walker.
  190. """
  191. # Note: when adding arguments to this method, please also update
  192. # dulwich.repo.BaseRepo.get_walker
  193. if order not in ALL_ORDERS:
  194. raise ValueError('Unknown walk order %s' % order)
  195. self.store = store
  196. self.include = include
  197. self.excluded = set(exclude or [])
  198. self.order = order
  199. self.reverse = reverse
  200. self.max_entries = max_entries
  201. self.paths = paths and set(paths) or None
  202. if follow and not rename_detector:
  203. rename_detector = RenameDetector(store)
  204. self.rename_detector = rename_detector
  205. self.get_parents = get_parents
  206. self.follow = follow
  207. self.since = since
  208. self.until = until
  209. self._num_entries = 0
  210. self._queue = queue_cls(self)
  211. self._out_queue = collections.deque()
  212. def _path_matches(self, changed_path):
  213. if changed_path is None:
  214. return False
  215. for followed_path in self.paths:
  216. if changed_path == followed_path:
  217. return True
  218. if (changed_path.startswith(followed_path) and
  219. changed_path[len(followed_path)] == '/'):
  220. return True
  221. return False
  222. def _change_matches(self, change):
  223. if not change:
  224. return False
  225. old_path = change.old.path
  226. new_path = change.new.path
  227. if self._path_matches(new_path):
  228. if self.follow and change.type in RENAME_CHANGE_TYPES:
  229. self.paths.add(old_path)
  230. self.paths.remove(new_path)
  231. return True
  232. elif self._path_matches(old_path):
  233. return True
  234. return False
  235. def _should_return(self, entry):
  236. """Determine if a walk entry should be returned..
  237. :param entry: The WalkEntry to consider.
  238. :return: True if the WalkEntry should be returned by this walk, or False
  239. otherwise (e.g. if it doesn't match any requested paths).
  240. """
  241. commit = entry.commit
  242. if self.since is not None and commit.commit_time < self.since:
  243. return False
  244. if self.until is not None and commit.commit_time > self.until:
  245. return False
  246. if commit.id in self.excluded:
  247. return False
  248. if self.paths is None:
  249. return True
  250. if len(self.get_parents(commit)) > 1:
  251. for path_changes in entry.changes():
  252. # For merge commits, only include changes with conflicts for
  253. # this path. Since a rename conflict may include different
  254. # old.paths, we have to check all of them.
  255. for change in path_changes:
  256. if self._change_matches(change):
  257. return True
  258. else:
  259. for change in entry.changes():
  260. if self._change_matches(change):
  261. return True
  262. return None
  263. def _next(self):
  264. max_entries = self.max_entries
  265. while max_entries is None or self._num_entries < max_entries:
  266. entry = next(self._queue)
  267. if entry is not None:
  268. self._out_queue.append(entry)
  269. if entry is None or len(self._out_queue) > _MAX_EXTRA_COMMITS:
  270. if not self._out_queue:
  271. return None
  272. entry = self._out_queue.popleft()
  273. if self._should_return(entry):
  274. self._num_entries += 1
  275. return entry
  276. return None
  277. def _reorder(self, results):
  278. """Possibly reorder a results iterator.
  279. :param results: An iterator of WalkEntry objects, in the order returned
  280. from the queue_cls.
  281. :return: An iterator or list of WalkEntry objects, in the order required
  282. by the Walker.
  283. """
  284. if self.order == ORDER_TOPO:
  285. results = _topo_reorder(results, self.get_parents)
  286. if self.reverse:
  287. results = reversed(list(results))
  288. return results
  289. def __iter__(self):
  290. return iter(self._reorder(iter(self._next, None)))
  291. def _topo_reorder(entries, get_parents=lambda commit: commit.parents):
  292. """Reorder an iterable of entries topologically.
  293. This works best assuming the entries are already in almost-topological
  294. order, e.g. in commit time order.
  295. :param entries: An iterable of WalkEntry objects.
  296. :param get_parents: Optional function for getting the parents of a commit.
  297. :return: iterator over WalkEntry objects from entries in FIFO order, except
  298. where a parent would be yielded before any of its children.
  299. """
  300. todo = collections.deque()
  301. pending = {}
  302. num_children = defaultdict(int)
  303. for entry in entries:
  304. todo.append(entry)
  305. for p in get_parents(entry.commit):
  306. num_children[p] += 1
  307. while todo:
  308. entry = todo.popleft()
  309. commit = entry.commit
  310. commit_id = commit.id
  311. if num_children[commit_id]:
  312. pending[commit_id] = entry
  313. continue
  314. for parent_id in get_parents(commit):
  315. num_children[parent_id] -= 1
  316. if not num_children[parent_id]:
  317. parent_entry = pending.pop(parent_id, None)
  318. if parent_entry:
  319. todo.appendleft(parent_entry)
  320. yield entry