File History
Not logged in

History of tools/cvs2fossil/lib/c2f_option.tcl

2008-02-27
04:14:19 [737f972b12] part of check-in [c5e9fa8d70] Added options --tempdir, -t to redirect the importer to a user-specified directory for temp files and directories. (By: aku on 2008-02-27 04:14:19) [diff] [annotate]
2008-02-23
20:17:28 [807a183086] part of check-in [0246783012] Fix code handling --memory-track, missed import of its supporting command. (By: aku on 2008-02-23 20:17:28) [diff] [annotate]
2008-02-16
06:45:03 [525f34a1bc] part of check-in [7b71f64766] Integrated memory tracking into the option processor for activation and configuration, and into the log system for use. The latter means that each actual output to the log is an introspection point. (By: aku on 2008-02-16 06:45:03) [diff] [annotate]
2008-02-13
14:44:50 [be274ee796] part of check-in [be2f99e6a4] Merge with aku's branch. (By: drh on 2008-02-13 14:44:50) [diff] [annotate]
2008-02-12
04:24:42 [be274ee796] part of check-in [c1dc8701ef] Added code to skip of administrative .cvsignore files. Added code to detect and warn about dot files (.FOO). Allow the user to import dot files by converting their names to non-dot form (.FOO -> dot-FOO). (By: aku on 2008-02-12 04:24:42) [diff] [annotate]
2007-12-05
07:53:11 [490b79f397] part of check-in [1a20a81f33] Integrated the new fossil management class with the option processor. New option --fossil to specify the fossil executable if it was not found in the PATH, or to overide the PATH. (By: aku on 2007-12-05 07:53:11) [diff] [annotate]
2007-12-02
23:47:45 [6e1ccf1f24] part of check-in [e288af3995] Fluff: Renamed state methods use/reading/writing to usedb/use/extend for clarity. Updated all callers. Extended state module with code to dump the SQL statements it receives to a file for analysis. Extended the 'use' declarations of several passes. (By: aku on 2007-12-02 23:47:45) [diff] [annotate]
20:04:40 [5835c5aa1e] 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-30
06:57:19 [b6d7645a3c] part of check-in [0af7a3c8ac] Easier name for self-referential changesets, loopcheck. Made conditional on option --loopcheck, default off, and avoided if the general checks on changesets report trouble. Reinstated the loop check in the cycle breaker core in simpler form, reusing the new command in the changeset class. (By: aku on 2007-11-30 06:57:19) [diff] [annotate]
2007-11-25
07:54:09 [21dce38cba] part of check-in [b679ca3356] Code cleanup. Removed trailing whitespace across the board. (By: aku on 2007-11-25 07:54:09) [diff] [annotate]
07:35:30 [36ee7e3cab] part of check-in [97b4405ecf] Extended cycle breaker with debug facility allowing the user to watch the neighbourhood of specific changesets during the traversal. Extended label information, highlighting of the nodes of interest. Tweaked log output a bit. (By: aku on 2007-11-25 07:35:30) [diff] [annotate]
2007-11-20
06:59:03 [5b894a43fc] 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
04:39:27 [593517a591] part of check-in [4e7dd05fc6] Added an option "--batch" with which the user can disable the feedback display standard to interactive use. (By: aku on 2007-11-17 04:39:27) [diff] [annotate]
00:29:42 [d7008b5e1a] 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-05
09:04:25 [d7008b5e1a] part of check-in [7eaa420a23] Extended options processing to handle --exclude, --force-tag, and --force-branch options. Extended project::sym class with in-memkory databases to hold the option information and replaced the 'UserConfig' placeholder with the actual code using the new databases to determine symbol types based on user-requests. Extended the pass itself with code performing various checks on the results of type determination, partially paranoia, partially to find genuine bad requests (excluding symbols with unexcluded blockers, making a symbol with commits on it a tag, ...). NYI: Computation of the prefered parent for all symbols. (By: aku on 2007-11-05 09:04:25) [diff] [annotate]
2007-10-23
04:34:12 [ebc8b51de9] part of check-in [9f3fd3ec4b] Added a bit of path normalization, stripping of a trailing slash from the path to the cvs repository. Before such a slash could break a later coming fileutil::stripPath. (By: aku on 2007-10-23 04:34:12) [diff] [annotate]
2007-10-17
03:09:58 [90466e503f] part of check-in [3bde1a2e2f] Added new option --trunk-only, state and processing. (By: aku on 2007-10-17 03:09:58) [diff] [annotate]
2007-10-05
05:33:14 [5618bdee19] 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:32:49 [79fff162dc] part of check-in [2929a438ef] Extended option processing, added handling of verbosity/quietness. (By: aku on 2007-10-04 04:32:49) [diff] [annotate]
2007-10-03
04:18:18 [08855f1e15] 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 [87e6ea6315] 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 [fc9f62797d] 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 [db1981ab35] 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]