History of tools/cvs2fossil/lib/pkgIndex.tcl
2008-03-05
| ||
03:42:50 | [b810fde760] part of check-in [31b15fcf30] Split the current import pass into three, for files, changesets, and finalization (fossil rebuild). (By: aku on 2008-03-05 03:42:50) [diff] [annotate] | |
2008-02-16
| ||
06:43:54 | [73c4287bf5] part of check-in [8287044ecd] Created a memory tracking subsystem to investigate memory consumption of the system in general, and pass InitCsets in particular. getmemory series is a postprocessor pulling the data out of the log and into a tables gnuplot is able to handle. (By: aku on 2008-02-16 06:43:54) [diff] [annotate] | |
2008-02-08
| ||
21:52:21 | [8e64440f57] part of check-in [6b78df3861] Merge in changes from Andreas's branch. (By: drh on 2008-02-08 21:52:21) [diff] [annotate] | |
2008-02-04
| ||
06:01:45 | [8e64440f57] part of check-in [d011e0b008] Added classes to track the state of a workspace, and of the whole revision import. (By: aku on 2008-02-04 06:01:45) [diff] [annotate] | |
2008-02-03
| ||
00:04:37 | [a73808ace1] part of check-in [aa04ac9d10] Extended the collection of revisions for a file with a separate blob store to manage the text ranges of revisions and their dependencies separate from the revisions. This will be used later (upcoming) to properly expand a file even if revisions were removed as irrelevant during the collection and filter passes. (By: aku on 2008-02-03 00:04:37) [diff] [annotate] | |
2007-12-07
| ||
08:55:21 | [bb5f385c20] part of check-in [97e0e9dda9] Removed two unused classes. (By: aku on 2007-12-07 08:55:21) [diff] [annotate] | |
2007-12-05
| ||
07:57:50 | [fde79c6697] part of check-in [d9fc75e587] Created new pass for the import of files and changesets. Uses the new file method and fossil accessor class to handle the file import. Changeset -> manifest conversion is _not_ covered yet. (By: aku on 2007-12-05 07:57:50) [diff] [annotate] | |
07:52:00 | [c5fb9baccf] part of check-in [b6bf21e2a8] Added helper class managing access to fossil repositories. Already has a basic method to import and delta-compress a series of files. Used 'test' commands of fossil to get the necessary low-level access. (By: aku on 2007-12-05 07:52:00) [diff] [annotate] | |
07:50:17 | [0a082ba7c7] part of check-in [e701313733] Put the graph traversal core of the cycle breaker core into a separate class, for use in other parts of the system. TODO: Rewrite the cycle breaker core in terms of this class. (By: aku on 2007-12-05 07:50:17) [diff] [annotate] | |
2007-12-02
| ||
20:04:40 | [bba80efcbb] part of check-in [00bf8c198e] The performance was still not satisfying, even with faster recomputing of successors. Doing it multiple times (Building the graph in each breaker and sort passes) eats time. Caching in memory blows the memory. Chosen solution: Cache this information in the database. Created a new pass 'CsetDeps' which is run between 'InitCsets' and 'BreakRevCsetCycles' (i.e. changeset creation and first breaker pass). It computes the changeset dependencies from the file-level dependencies once and saves the result in the state, in the new table 'cssuccessor'. Now the breaker and sort passes can get the information quickly, with virtually no effort. The dependencies are recomputed incrementally when a changeset is split by one of the breaker passes, for its fragments and its predecessors. The loop check is now trivial, and integrated into the successor computation, with the heavy lifting for the detailed analysis and reporting moved down into the type-dependent SQL queries. The relevant new method is 'loops'. Now that the loop check is incremental the pass based checks have been removed from the integrity module, and the option '--loopcheck' has been eliminated. For paranoia the graph setup and modification code got its loop check reinstated as an assert, redusing the changeset report code. Renumbered the breaker and sort passes. A number of places, like graph setup and traversal, loading of changesets, etc. got feedback indicators to show their progress. The selection of revision and symbol changesets for the associated breaker passes was a bit on the slow side. We now keep changeset lists sorted by type (during loading or general construction) and access them directly. (By: aku on 2007-12-02 20:04:40) [diff] [annotate] | |
2007-11-25
| ||
02:59:21 | [d37efe5d62] part of check-in [66c85b4db4] Investigation of changeset order differences between running passes 1 to 6 and pass 6 alone show why the topological sort passes are separate in cvs2svn. The breaking of cycles can change the order of things due to different timeranges and dependencies of the broken changesets. Created two new passes for the sorting. The break passes 7 and 8 are now passes 8 and 9, and the new sort passes are 7 and 10. (By: aku on 2007-11-25 02:59:21) [diff] [annotate] | |
2007-11-20
| ||
06:59:03 | [48c254587c] part of check-in [7f15be9078] Added the ability to export the changeset graphs processed by the passes 6 to 8 using GraphViz's dot-format. This is activated by using the switch '--dots'. Bugfixes in the cycle breaker. First corrected variable names, I forgot to use the standard 'myXXX' format for the typevariables. Second, fixed a bug uncovered by looking at the exported graphs, which caused the system to loose arcs, possibly breaking cycles without actually breaking them, leaving them in the dependencies. (By: aku on 2007-11-20 06:59:03) [diff] [annotate] | |
2007-11-17
| ||
00:29:42 | [326b42f768] part of check-in [38b967dcf5] Merge aku's CVS import changes into the main line. Fix a small bug in diff.c. (By: drh on 2007-11-17 00:29:42) [annotate] | |
2007-11-16
| ||
06:53:01 | [326b42f768] part of check-in [e7c805f137] Added skeleton of pass 8, the final pass for the breaking of dependency cycles. This pass will handle the remaining cycles crossing revision and symbol changesets. (By: aku on 2007-11-16 06:53:01) [diff] [annotate] | |
04:17:30 | [e9e0ed3bcf] part of check-in [770a9b576a] Completed pass 7, breaking dependency cycles over symbol changesets. Moved the bulk of the cycle breaker code into its own class as it was common to the passes 6 and 7, and updated the two passes accordingly. Added code to load the changeset counter from the state to start properly. (By: aku on 2007-11-16 04:17:30) [diff] [annotate] | |
2007-11-15
| ||
07:17:07 | [f2f4cb7b18] part of check-in [258366a37a] Added skeleton files for pass 7, the breaking of dependency cycles over symbol-based changesets. (By: aku on 2007-11-15 07:17:07) [diff] [annotate] | |
2007-11-14
| ||
05:11:56 | [a937f1cd3a] part of check-in [94c39d6375] Completed pass 6, wrote the code performing the breaking of cycles. Done by analysing each triple of changesets in the cycle at the file dependency level to see which revisions can be sorted apart. Added some additional utility routines. Extended the changeset class with the accessors required by the cycle breaker. (By: aku on 2007-11-14 05:11:56) [diff] [annotate] | |
2007-11-11
| ||
00:08:46 | [dbfdadafec] part of check-in [2a01d50430] Started on pass 6, breaking cycles between revision based changesets. Added skeleton files. (By: aku on 2007-11-11 00:08:46) [diff] [annotate] | |
2007-11-10
| ||
05:34:26 | [183f520c61] part of check-in [54d1e3537e] Started on pass 5, computing the initial approximate set of project level revisions, aka 'ChangeSets'. Skeleton of the pass added. (By: aku on 2007-11-10 05:34:26) [diff] [annotate] | |
2007-11-09
| ||
06:28:19 | [9cd7a5dc5f] part of check-in [131f051880] Moved the paranoid integrity checks of pass 2 into a separate package for use by other passes, and changed pass 4 to also run these checks, albeit in a (slightly) relaxed form. See the comments at the point of call for the reason. This completes pass 4. (By: aku on 2007-11-09 06:28:19) [diff] [annotate] | |
2007-11-06
| ||
04:57:15 | [d11a0332fc] part of check-in [11e5d7ce42] Started on pass 4, 'FilterSymbols'. Skeleton. (By: aku on 2007-11-06 04:57:15) [diff] [annotate] | |
2007-11-02
| ||
04:29:05 | [1cffea0d23] part of check-in [6d4eb24738] Skeleton for pass 3 added, collating the symbols. (By: aku on 2007-11-02 04:29:05) [diff] [annotate] | |
2007-10-21
| ||
04:42:14 | [94c8694e66] part of check-in [99e165d5c4] Created a separate common class for the id databases used by the repository, and updated the repository code to use it. (By: aku on 2007-10-21 04:42:14) [diff] [annotate] | |
2007-10-10
| ||
03:28:22 | [4291c23aa8] part of check-in [84de38d73f] Added a lot of skeleton files for the revision and symbol data structures, for both project and file level. (By: aku on 2007-10-10 03:28:22) [diff] [annotate] | |
2007-10-06
| ||
18:43:01 | [94d4362076] part of check-in [8a93ffa9c1] Fleshed out pass II, added skeleton of rcs archive class, started integration of rcs parser. (By: aku on 2007-10-06 18:43:01) [diff] [annotate] | |
18:28:33 | [96ca91f42c] part of check-in [860f533e98] Bringing back in the old parser for rcs archives. (By: aku on 2007-10-06 18:28:33) [diff] [annotate] | |
03:56:32 | [da1f72a650] part of check-in [fdbc01df95] Added pass II (collection of revision and symbols), basic skeleton and state definitions, and integrated into the pass manager. (By: aku on 2007-10-06 03:56:32) [diff] [annotate] | |
2007-10-05
| ||
05:33:14 | [f6ad9cb77b] part of check-in [eb656de7d9] Added the basic parts of the state manager and integrated it with option processor and pass manager. (By: aku on 2007-10-05 05:33:14) [diff] [annotate] | |
2007-10-04
| ||
04:34:59 | [e327e448a1] part of check-in [52f2254007] Continued work on pass I. Filled in the repository management, and basic implementation of project objects. Missing are persistence and the foundation for that (cache database). (By: aku on 2007-10-04 04:34:59) [diff] [annotate] | |
2007-10-03
| ||
04:18:18 | [2c71099183] part of check-in [47740cc1f6] Added stub for repository management, added most of pass I, collecting archives in the repository. (By: aku on 2007-10-03 04:18:18) [diff] [annotate] | |
2007-10-02
| ||
06:48:55 | [d90ebe99e1] part of check-in [5911515322] Added the pass management, integrated with application and option processor. (By: aku on 2007-10-02 06:48:55) [diff] [annotate] | |
05:33:09 | [6725ddc053] part of check-in [d57b7b4a05] Re-added the user feedback and error reporting utilities, with modifications, and completed the handling of the informational options. (By: aku on 2007-10-02 05:33:09) [diff] [annotate] | |
03:05:43 | [5b7b443336] part of check-in [2a98ac44bd] Third attempt at getting a cvs importer which can handle branches. Using cvs2svn code and design notes as a guide. (By: aku on 2007-10-02 03:05:43) [annotate] |