The beautiful logo of the application, warmheartedly handcrafted by its author, presumably made entirely of stolen copyrighted material downloaded off the web - probably via Bittorrent.

Mulle kybernetiK

presents

The proud author, looking at his own creation in delight.
iTunesFS by ZNeK
Current version: 2.0.0, published 05/09/2022 (689 days ago)

What is FUSEOFS?

The idea of FUSEOFS is to have a framework on top of FUSEObjc sdk-objc which removes the need of procedural thinking and tracking of state and context in a central object and instead delegating the traversal of a path to a set of objects - something I'd call an Object File System (OFS) on top of sdk-objc.

While sdk-objc itself is object oriented in a way (it's written in Objective-C), you need to implement a delegate and a number of specific FUSE related methods in order to implement your concept of a filesystem. It doesn't offer any other object oriented tools to help you model your filesystem. If you want to expose a complex model graph there's no intuitive tool at hand to just let you do so, you'll have to wrap that functionality yourself.

This is where FUSEOFS suits as a generic tool. With FUSEOFS you rather implement a very narrow set of much more abstracted methods on any object, which, in doing so, automatically can be exposed as filesystem objects.

What is the general principle behind that?

The general idea is to break down all the underlying calls of the filesystem into two things:

  1. path traversal, which maps to a lookup of objects
  2. applying a request (i.e. get content, get meta data, write data, etc.) to the resulting object of that lookup via a standardized method.

How do you get at the data?

In order to simplify the concept, I'm only focussing at the read methods. FUSEOFS implements the following categories on NSObject which deal with filesystem requests:

Every object derived from NSObject can instantly act as a filesystem object. Several methods are very easily implemented (i.e. reflection methods) as these are used in different contexts as well. Also, some of these methods are mutually exclusive (container vs. file) and only one or the other needs to be implemented.

Special semantics like those for the Finder on Mac OS X are implemented in separate methods. If your objects don't support any of these, you don't need to implement them - your objects still inherit the default implementation after all.

FUSEOFS already provides default implementations for various basic objects, namely:

It turns out you don't even need to have more than this to implement a pretty basic memory filesystem! NSString/NSData represent files, NSDictionary/NSArray are able to represent directories. It's that simple.

How do you get at the objects?

The only mystery to solve now is how the structure of the filesystem gets implemented. The concept of FUSEOFS is to implement just a single method:

All container objects in your model need to implement this single method, which is the central hub for lookup.

Every filesystem path, i.e. `/foo/bar/baz``` is broken down in its path components, i.e.

  1. foo
  2. bar
  3. baz

Traversal always starts with a root object, which you either provide or use the default object (which you would then subclass).

The first path component, foo, is what your root object needs to lookup. Its result is another object (or nil if the lookup produced no result) which gets the request for the next path component, bar and so on. The last resulting object in this lookup chain is then asked for its fileContents, finderAttributes or whatever depending on the underlying request. And that's all there is to implement a filesystem in a truly object oriented way!

If you need to share special context information from object to object, instead of using global variables you can use the _ctx object which is passed on until traversal is done.

It goes without saying that this way it's almost trivial to implement filesystem semantics to any existing backend, i.e. IMAP or LDAP servers.

How does it all blend in with MacFUSE?

FUSEOFS provides a delegate implementation for sdk-objc, named FUSEObjectFileSystem which does all the lowlevel stuff to map sdk-objc's requests to the objects in FUSEOFS. When implementing your own filesystem, you should subclass from FUSEObjectFileSystem and provide your own root object for the lookup mechanism and possibly adjust the properties given to FUSE on startup, although most of the time that's not necessary.