The f-tools
The source tree contains a few test/demo apps which are named f-something (the "f" is for "fossil", of course). Collectively, these apps demonstrate the functionality which is currently ported in from fossil(1) (or is new) and working. If a fossil(1) feature is not represented here, it's probably not yet ported.
- f-acat ("artifact cat") can output arbitrary artifacts from a repository.
- f-ls lists files from a repository.
- f-mfparse reads in Fossil control artifacts, converts them to its internal high-level form, and saves them back out to a file. This is used for testing both the manifest parsing and generation code, to test round-trip fidelity and compatibility with fossil(1) manifests.
- f-new creates new/empty repository databases.
- f-resolve resolves symbolic checkin names (like "trunk", "current", and "prev") and partial UUIDs to their full UUIDs and RIDs.
- f-sanity runs a number of sanity checks on the library. Library developers should run/amend this occasionally.
- f-tag can add tags to artifacts.
- f-timeline provides a simple timeline
- f-wiki hopes to one day be a generic wiki manipulation tool.
All of these applications accept -?, --help, or a first non-flag argument of help to show their help text.
These applications provide demonstrations of using the library and give devs a place to test new features. fcli provides a mini-framework which takes care of bootstrapping fossil for these applications, making it pretty simple to create new ones. fcli handles the CLI parsing, global flags, opening of a repo/checkout, and other "getting started" bits. If you've ever hacked on fossil(1), adding a new f-* app is very similar to adding a new command to fossil, with only a few more lines of bootstrap code (because each "command" is in its own app).
Demos
# f-wiki ls Timestamp UUID Name 2013-08-22@22:26:59 86afdaa5 AmalgamationBuild 2013-08-23@18:37:26 e451926f building 2013-08-22@14:54:47 042b30df download 2013-08-24@11:29:34 0f083370 f-tools ... # f-tag -a tip -t demo-tag -v "demo for prosperity purposes" --trace-sql SQL TRACE #1: SELECT '/home/stephan/cvs/fossil/f2' || '/' || value FROM vvar WHERE name='repository'; SQL TRACE #2: ATTACH DATABASE '/home/stephan/cvs/fossil/f2.fsl' AS repo; SQL TRACE #3: SELECT julianday('now'); SQL TRACE #4: SELECT objid FROM event WHERE type='ci' ORDER BY event.mtime DESC LIMIT 1; SQL TRACE #5: SELECT uuid FROM blob WHERE rid=1226; SQL TRACE #6: SELECT strftime('%Y-%m-%dT%H:%M:%f',2456517.117559); SQL TRACE #7: BEGIN TRANSACTION; ... SQL TRACE #21: COMMIT; SQL TRACE #22: DETACH DATABASE repo; # f-timeline -n 1 g [daa063582c2c] @ 2013-08-12 16:49:17 by [stephan] Edit [2a84ad39]: Add "demo-tag" with value "demo for prosperity purposes". # f-timeline -n 1 --trace-sql SQL TRACE #1: SELECT '/home/stephan/cvs/fossil/f2' || '/' || value FROM vvar WHERE name='repository'; SQL TRACE #2: ATTACH DATABASE '/home/stephan/cvs/fossil/f2.fsl' AS repo; SQL TRACE #3: SELECT substr(uuid,1,12) AS uuid, <...BIG SNIP...> ORDER BY event.mtime DESC LIMIT 1; g [daa063582c2c] @ 2013-08-12 16:49:17 by [stephan] Edit [2a84ad39]: Add "demo-tag" with value "demo for prosperity purposes". SQL TRACE #4: DETACH DATABASE repo; # f-resolve current prev b170fb24fe5d94a5b7fa7a00a9911083bf69b27b 1466 current 1ec904fa6a54b45b0a35cd14bab41af138584e45 1461 prev
f-new
f-new can be used to create a new, empty repository, analog to fossil's "new" command. It has one feature fossil(1) does not: it allows the client to specify the commit message for the "initial empty checkin." (Sidebar: the library has a mechanism to disable creation of the initial empty checkin, but fossil/libfossil are largely untested with such repos.)
Example usage:
# f-new -m 'hi there' --config ../fossil.fsl my.fsl --user fred Copying configuration from: ../fossil.fsl Created repository: my.fsl server-code = a3d6ac6448017382fa1277bbee7e74b96ce385cb project-code = e0e38c4a0fb01a2ea277ed8af4e5742d68dbdc60 admin-user = fred (password=084fdd) # f-timeline -R my.fsl ci [3a661da86ae5] @ 2013-08-28 23:30:39 by [fred] in branch [trunk] hi there # f-acat trunk -R my.fsl C hi\sthere D 2013-08-28T21:30:39.000 R d41d8cd98f00b204e9800998ecf8427e T *branch * trunk T *sym-trunk * U fred Z 52ef222ec505c27615d80a8552690272
f-tag
f-tag can be used to add and cancel tags on arbitrary repository artifacts. Tags in fossil are actually key/value pairs, but the value is optional. The ability to tag arbitrary artifacts, including other tags, allows (in principal) for applying arbitrary key/value-pair metadata to arbitrary artifacts. This can be used for a great many things above and beyond what fossil currently uses tags for. For example, tags could be used to implement a simple form of comment thread system, by implementing comments as tags, and replies as tags to those comment tags, ad nauseum.
Anyway... this tool is a very basic test/demonstration of this library which allows one to apply tags to artifacts. It allows some things the current fossil UI/CLI cannot make much sense of or do anything useful with (e.g. tags on tags or "cancel" tags with values), but nothing it does is incompatible with how fossil works internally.
FOREWARNINGS: changing branch tags or other "fossil-special" tags (e.g. Wiki pages or tickets) with this tool is as yet untested, is not yet expected to work (it's an ongoing process), and might break things (relationships between data records). Try such things at your own risk. Better yet, don't try them at all until this warning message is gone.
'Private' content which gets tagged will result in the tag being private as well (to avoid that it synchronized without its tagged content).
Examples of setting and cancelling flags:
# Change the color of a single commit: # f-tag -a current -t bgcolor -v '#ffff33' # Propagate the bg color starting at a commit: # f-tag -a current -t '*bgcolor' -v '#ffff33' # Cancel that color: # f-tag -a current -t -bgcolor -v 'that was uglier than i thought it would be' # Change the checkin comment on the current checkout: # f-tag -a current -t comment -v '...new comment...'
Values are always optional but Fossil internally treats some tag names specially and may require (or expect) a value. The bgcolor tag is one example. When cancelling a tag, the value is always optional, regardless of whether or not it is a special tag.
When adding a tag, the tag name may optionally be prefixed with a + sign, for symmetry with the cancel (-) and propagate (*) markers. Cancel tags might look like options/flags because they start with a minus, but they are not interpreted as a flag due to a happy accident of design. When using propagating tags, it is wise to enclose the tag in quotes to prevent any unwanted side-effects of shell globbing. Optionally, use -t=*tagname, which would only match a glob in the most unusual of circumstances. Likewise, -t=-tag-to-cancel can be used if having the tag value look like a flag seems disturbing to you.
Note that the +/-/* prefixes were not chosen arbitrarily: they reflect how Fossil internally stores and recognizes the type of a tag: + represents an "add tag", - a "cancel tag" (a.k.a. "anti-tag"), and * a propagating tag.
f-acat
The "artifact cat" tool outputs content from the content. If given a checkin name or the ID of some other fossil-internal structure, it outputs that structure (as opposed to doing complex rendering of the structure-specific type). By default it applies any necessary deltas to produce the desired version of a blob, but it can also be told (using the --raw flag) that it should do no undeltification. It always uncompresses the data (assuming it was compressed, which it normally, but not always, is).
# The current checkout version's manifest: # f-acat current B 200d1cd898f4e05591e78f82b2c0f2bc4c8db998 C Added\s--raw,\s--output,\sand\s--artifact\sflags\sto\sf-acat. D 2013-09-08T12:25:31.660 F Makefile.in 41c00b5876e09e6bef5eaf4a68e885926eeca159 ... # The previous version's manifest, in its raw form (in this case # a fossil-format delta): # f-acat prev --raw II i@0,3P:Moved\sfsl_memory_allocator<SNIP>. D 2013-09-08T12:01:11.6142g@24,9d@5Z,1u:04923c4435ee082205979a2bc0a9b518e1ff3d80 R a5f73027c19c1b33364845d4808bca6d U stephan Z 6721ef25586956f13ef59a4dcb77e339