1
1
mirror of https://github.com/mgree/ffs.git synced 2024-08-17 15:20:43 +03:00
Commit Graph

182 Commits

Author SHA1 Message Date
Dan Liu
3857d74d27
pack/unpack (#65)
* scoping out multi-binary stuff

* todo notes for pack/unpack [ci skip]

* new version of r in gh action

* created lib.rs and moved ffs main.rs bin. added bfs traversal of json structure.

* moved main.rs last commit. forgot to commit the removal

* added file creation for null,bool,num,str

* main.rs > ffs.rs to have ffs as executable

* error condition for already existing root dir and text files

* first cut at BFS with nodes

* unpack supports all 3 types now

* use config object for file name parsing, change from_args to from_ffs_args in ffs.rs

* fixed unpack configs

* added from_pack_args and some code to get the Value structure from a file

* added dep walkdir

* not working pack.rs

* remove dep walkdir

* almost working pack.rs

* pack works, but not too efficient

* change pack to return name and value so recursion can work without queue

* pack.rs similar to as_other_value now and works

* unpack and pack now have their own args parsers

* changed cli options for pack-unpack (unfinished)

* edited config to better support pack and unpack actions

* fixed unpacking into empty dir. only unpacking into unempty dir errors

* checked almost all error statuses

* fix no-xattr option for unpack

* prevent non-object/array from being unpacked

* fixed missing RUST_LOG warnings

* roundtrip tests for formats. since comments and formatting aren't preserved, unpack and pack twice

* fix pack: added --exact

* rm ERR_MSG tmp file in all tests. added all possible format conversion tests. edit to run_tests.sh to support new tests

* fix packunpack tests

* another update to test scripts

* unpack: don't remove dir if value is not map or list. pack: detect file type without xattr. started adapting more scripts to use unpack/pack

* changed user.type xattr for non-lists from 'map' to 'named'. converted 10 scripts

* added more scripts. fixed bug in infer_mount_relative fail()

* more tests, fix: original_name xattr only gets used if name is invalid

* more tests, missing 1 fail message in yaml_output test, changed pack list sorting to use file name instead of parsed integers to match ffs

* fixed tests for unpack/pack

* edit script formatting using quotes around vars, rm readonly for unpack

* pack: added back ignored file for lists and --no-xattr option in cli, added macos_noxattr_cleanup (not exactly the same as ffs test)

* Run `pack/`unpack` in macOS CI; factor out benchmarks (#63)

* added quiet inplace, umask test based on mode.sh

* added fail (un)pack for every call, fix missing n in fail msg for basic_object_exact

* fixed issues with adding fail conditions

* added (un)pack exit status tests

* added symlink support for pack

* symlinks mostly done. cleanup + efficiency checks needed

* added test for packing symlinks, added some comments for pack

* fix test4 for symlink test on linux

* see why test5 not working on linux

* actually print out the xattr

* fix: setting xattr on symlink doesn't work in linux :( making it macOS-specific

* impl --max-depth and --allow-symlink-escape. tests needed

* fix: macos links /var to /private/var so checking if symlinked path starts with mount errors. canonicalizing mount works.

* fix: wrong detected type map instead of named. add: symlink escape and maxdepth test.

* code cleanup, added test for symlink escape and maxdepth together, show warnings in config for pack/unpack not just errors

* simple changes for requests:
pack:122 add loop to error msg
debug! for received config in unpack & pack
f.write(s)? instead of write!
shadowed original_name
verb agreement in cli.rs
remove reserve for BTreeMap and now useless TODOs

* while let instead of queue.empty

* use auto instead of detect and check for auto and is_dir to resolve directory type
use .as_ref instead of .clone for accessing mount
remove non-symlinks from mapping

* resolve directory type always. warn for unknown path_type.

* warn when hitting broken symlinks.

* better warn message for broken symlink

* resolve repeated traversal of broken symlinks
store bool of whether link is broken in symlink mapping
checks symlinks a maximum of two times for broken links

* use struct instead of tuple in symlink map
for better naming and code clarity

* loosen criterion for determining directory type
directories get resolved as list if all files begin with an integer.
if a directory's user.type gets forcibly set to list without obeying
that property, all filenames that don't begin with an integer get put
to the end of the list, but are still sorted alphabetically.

* don't use regex to detect. just check first or first two chars manually.
continue to use regex for sorting because lexicographic sorting for files starting with -
means larger negative numbers go to the right

---------

Co-authored-by: Michael Greenberg <michael.greenberg@stevens.edu>
2023-09-27 14:02:15 +00:00
Dan Liu
aa6c2307ee
added test for empty log to see if quiet was successful and rm all tmp files (#64) 2023-07-21 18:41:34 -07:00
Dan Liu
2dee504113
fix: wrong mountpoint in fail() (#62)
Fix buggy test.
2023-06-04 05:29:49 -07:00
Dan
d0e4f4d09f
munge bugfix (#61)
The helptext did not agree with the actual default behavior of `--munge`.
2023-04-08 15:43:12 -07:00
Michael Greenberg
6cabcefb8a new version of r in gh action 2022-12-07 14:46:48 -05:00
Michael Greenberg
ff09d2bbae fixup exit status 2022-08-03 11:30:09 -04:00
Michael Greenberg
bd22f21877 disable macos :( 2022-08-03 11:04:11 -04:00
Michael Greenberg
f9179b1f35 upgrade macos 2022-08-03 10:10:58 -04:00
Michael Greenberg
fd53efa834
upgrade to fuser 0.11 (#59) 2022-03-07 12:56:48 -08:00
Michael Greenberg
bfcd291c07 --pretty overrides --no-output and --quiet, rather than conflicting 2022-02-22 11:51:54 -05:00
Michael Greenberg
bdab5791cf or, as i prefer to call it, ubuntu+linux 2022-01-27 13:05:14 -05:00
Michael Greenberg
9a41934e51 switch to macos 10.15 2022-01-27 12:38:20 -05:00
Michael Greenberg
3620c49795 link video, paper 2021-12-15 19:54:00 -05:00
Michael Greenberg
a56a7e5607
Retry R installations (#57)
Network failures were causing spurious CI failures; we now try to install ggplot2 (and its dependencies) up to three times.
2021-11-08 16:21:38 -08:00
Michael Greenberg
b9c6644312
Lazy loading (#50)
Lazy implementation is now the default. Use `--eager` to force ffs to construct the entire filesystem on startup.

NB that lazy loading is not the same as lazy parsing. There's still plenty of savings left on the table.

There is some unwelcome code duplication in saving to accommodate type-level jiggery pokery.
2021-10-01 07:57:58 -07:00
Michael Greenberg
35f6bf8188
Fuser 0.9.1 (#49), in anticipation of ffs 0.1.2
Update to fuser=0.9 (i.e., 0.9.1). Update websites, version numbers, etc. for new release.

Finally use `destroy` properly, got rid of the `Drop` impl for `FS`. Drop `AutoUnmount` which wasn't doing anything anyway.

Fixes and improvements to CI, docs, and logging.
2021-09-26 05:54:18 -07:00
Michael Greenberg
da6811adf6
Add cronjob to GH workflow (#48)
Run every day ~11am. Hopefully I won't have too many lunches ruined by regressions.
2021-09-24 12:40:14 -07:00
Michael Greenberg
1f8ec3934b boxplots for micro benchmark, much cleaner 2021-09-24 15:19:04 -04:00
Michael Greenberg
d551f48f17
fixup eg 2021-08-24 09:53:29 -04:00
Lars Christensen
d07eef5aaa
Update README.md (#47)
Fix speling [sic; lol]
2021-08-11 05:53:49 -07:00
Michael Greenberg
cfa9250ac5 update release links 2021-07-29 22:08:56 -04:00
Michael Greenberg
66a104671f naming shenanigans 2021-07-29 21:49:12 -04:00
Michael Greenberg
fee24f4166 fixup prerelease paths 2021-07-29 21:20:31 -04:00
Michael Greenberg
4c8f6ddecc missing dependency on prerelease 2021-07-29 20:59:53 -04:00
Michael Greenberg
6ed74ee0c7
Timing support (#46)
Benchmarks, in two flavors: real-world benchmarks and synthetic microbenchmarks.

`--time` flag for benchmarking output on stderr.

Using R to generate pretty graphs. Some overhaul of build scripts and artifacts, with the hope of simplifying the release system.
2021-07-29 17:55:53 -07:00
Michael Greenberg
b651c9c1ac
Exit status (#44)
Unify exit status (0=success, 1=fs error, 2=cli error).

Documented and tested; one test is disabled due to an upstream error masking.
2021-07-21 08:10:42 -07:00
Michael Greenberg
747301c815
Fix nested mount bug (#43)
@RaphaelWimmer reports in #42 an issue with nested mounts (which are just disallowed by FUSE and macFUSE), which we were handling poorly.

The solution is to check that mount2 worked correctly and report messages.
2021-07-21 06:32:43 -07:00
Michael Greenberg
6668f60068 release 0.1.1 2021-07-15 14:47:17 -04:00
Michael Greenberg
2171bbaf70
record changes from #41 2021-07-08 19:04:52 -07:00
Michael Greenberg
85b1ac6da9
Better, configurable name munging (#41)
A new flag `--munge [rename|filter]` controls how a name munging will work.

Name munging only applies to fields named '.', '..', containing a NUL byte, or containing a forward slash '/'.

The `rename` option (the default) will change '.' to '_.' and '..' to '_..'; each NUL byte turns into '_NUL_' and each slash turns into '_SLASH_'.

This greatly simplified policy means that spaces and other special characters should work just fine in field names now.
2021-07-08 08:55:44 -07:00
Michael Greenberg
4d6c094504
Refactor cli parsing into config (#40)
Cleans up `main` significantly, now all CLI stuff is in `cli.rs` and `config.rs`. Some todo notes.
2021-07-06 07:46:38 -07:00
Michael Greenberg
a1d5718ac9
--new flag for creating files from empty (#38)
Running `--new FILE.EXT` will:

- infer the output format form `EXT`
- use `FILE.EXT` as the output
- start with a single, empty, named directory (but allocate a bit more space)

In implementing this, I realized that introducing metadata (fad45bed4b) meant we no longer inferred types automatically. I added a type `Typ::Auto` and some inference code.
2021-07-04 18:19:31 -07:00
Michael Greenberg
7249ae95df
Pretty printing (#35)
Add --pretty flag, tests, docs.

Resolves #33.
2021-07-03 16:40:01 -07:00
Michael Greenberg
ae4e0fb0f2 bullets [ci skip] 2021-07-03 18:42:07 -04:00
Michael Greenberg
4067d7bbab create changelog [ci skip] 2021-07-03 18:39:23 -04:00
Michael Greenberg
726a175163
More careful name munging (#34)
Save original names that don't work as filenames (e.g., `.` and `..`).

We restore these names as appropriate---if a file is `rename`d with the _same_ name, we leave it alone. But renames to fresh names destroy original names.

Resolves #29.

There is no way to create a file with such a name: the metadata is purely copied. There's a TODO note in the code to allow users to inspect and edit this metadata, but it's not worth exposing until somebody asks for it. (I mean, really, please don't use `.` or `:/` as a property name.)
2021-07-02 08:01:07 -07:00
Michael Greenberg
7357d88353 Add INSTALL.md to document installation procedures.
Per #31. Thanks for the suggestion, @cipy!

[ci skip]
2021-07-02 10:08:54 -04:00
Michael Greenberg
2f5a63aff7
Missing check for ignored files in list directories format::value_from_fs (#32)
Clearer ignored files, cleanup formatting in `fs`.

Add a test to make sure the various macOS flags do what they ought to. Astonishingly, tests pass on 10.13 _and_ whatever crazy shit they're on now.
2021-07-02 06:50:49 -07:00
Michael Greenberg
019ab2f558 get rid of warnings on linux 2021-07-01 22:16:21 -04:00
Michael Greenberg
e9b0f0c5be add attr dep to pre-release build action, so we can pass tests on linux 2021-07-01 22:07:13 -04:00
Michael Greenberg
c6355e9812 clarify manpage 2021-07-01 21:59:06 -04:00
Michael Greenberg
fad45bed4b
Manage metadata using extended attributes (#30)
Extended attributes in `user.type` track the type of files and directories. Users can update these to alter the metadata.

Loading files records types; serialization tries to use them (but will default to strings or bytes if it can't interpret the file appropriately).

In particular, it's now possible to convert between both kinds of directories (list and named).

This isn't a long term solution, because extended attributes have no real affordances---it's not obvious that they even exist, and even once you see `user.type`, it's obvious what it means or what values it has. #2 has other ideas about ways to represent and manipulate metadata.

All of this comes with a few new flags and some brittle file ignoring behavior (macOS will generate `._*` files to hold extended attributes on filesystems that don't support them). The man page is updated with detail on the data model, and now the manpage is part of the website proper.
2021-07-01 18:52:53 -07:00
Michael Greenberg
8a65bf6fdc whoops, markdown is hard 2021-06-29 09:37:35 -04:00
Michael Greenberg
61d10c4db4 demo gif 2021-06-29 09:35:44 -04:00
Michael Greenberg
99c346cdad better manpage [ci skip] 2021-06-26 11:42:49 -04:00
Michael Greenberg
e243e80c2c fix metadata 2021-06-26 11:30:03 -04:00
Michael Greenberg
93ecc0f644 update cli help, add manpage 2021-06-26 11:28:13 -04:00
Michael Greenberg
1e4ec411f7 cleanup crate description (no markdown on crates.io, apparently). add crates.io badge 2021-06-25 20:52:11 -04:00
Michael Greenberg
04030681e3 exclude certain files from crate 2021-06-25 20:42:05 -04:00
Michael Greenberg
cdceaf0c71 update cargo info 2021-06-25 20:35:20 -04:00