/test/deps/hfuse/README.md

http://github.com/GaloisInc/halfs · Markdown · 106 lines · 69 code · 37 blank · 0 comment · 0 complexity · c2d9bc6c0c3aa1a70e318791e1a26e5a MD5 · raw file

  1. # Haskell FUSE API
  2. Filesystem in Userspace ("FUSE") makes it possible to implement a filesystem as a userspace program.
  3. This library is the Haskell binding to this library.
  4. ## License
  5. [BSD 3-Clause](./LICENSE)
  6. ## Information
  7. - Programs using HFuse should be compiled with -threaded.
  8. - This now works for base 4.6+
  9. - Added build options support for FreeBSD (contribution by https://github.com/pesco)
  10. - MacFUSE should also work (https://github.com/mwotton/hfuse)
  11. - [OSXFuse](https://osxfuse.github.io/) also works (https://github.com/edyu/hfuse)
  12. ## Installation
  13. All of the usual methods for installation will be supported.
  14. For Mac OS X, you must install [OSXFuse](https://osxfuse.github.io/) first.
  15. **Installation via Hackage**
  16. ```
  17. cabal install hfuse
  18. ```
  19. **Installation for development**
  20. Can either be handled via [Hackage](http://hackage.haskell.org/packages/search?terms=hfuse)
  21. ```
  22. cabal unpack hfuse
  23. cd HFuse-0.2.4.4
  24. cabal sandbox init
  25. cabal install --only-dependencies
  26. cabal install -fdeveloper
  27. ```
  28. Or the library can be installed via Github [repo][2]
  29. ```
  30. git clone git://github.com/m15k/hfuse
  31. cd hfuse
  32. cabal sandbox init
  33. cabal install --only-dependencies
  34. cabal install -fdeveloper
  35. ```
  36. **NOTE!**
  37. * To use the sandboxes feature in Cabal your version must be higher than 1.18. *highly recommended*
  38. ## Development
  39. To get a feel for HFuse, there are a number of example applications. They can be built by supplying the `-fdeveloper` [configuration flag][3] to Cabal.
  40. > git clone https://github.com/m15k/hfuse
  41. ## Examples
  42. [HelloFS](./examples/HelloFS.hs) is as basic as you get. Haskell version of the canonical [example](http://fuse.sourceforge.net/helloworld.html) from the FUSE project. Once compiled here is how you run HelloFS.
  43. ```
  44. $ mkdir ~/fuseTest
  45. $ ./HelloFS ~/fuseTest
  46. ```
  47. This creates a file in the *fuseTest* directory. Now to test the application.
  48. ```
  49. $ cat ~/fuseTest/hello
  50. Hello World, HFuse!
  51. ```
  52. To unmount issue the following command:
  53. ```
  54. $ fusermount -u ~/fuseTest
  55. ```
  56. ## Other Samples
  57. There are other projects on hackage which use HFuse as a dependency. Check [these](http://packdeps.haskellers.com/reverse/HFuse) out for a possibly richer experience than what is included with the [examples](./examples) folder.
  58. If you lack for inspiration the FUSE [Wiki](http://sourceforge.net/p/fuse/wiki/FileSystems/) have amassed quite the list of links to downstream projects.
  59. ## Contributions
  60. Help is always welcome. Pull requests are appreciated.
  61. If you run into any problems or bugs, please report the issue on [Github][1]
  62. ## RoadMap
  63. I would like to create the following examples:
  64. - MemoryFS.hs := In-memory file system
  65. - VBoxFS.hs := Mount VirtualBox disks as filesystem
  66. - SSHFS.hs := SSH file system
  67. [1]: https://github.com/m15k/google-drive-api/issues "Google-Drive-API Library Issues"
  68. [2]: https://github.com/m15k/google-drive-api "Google-Drive-API Library"
  69. [3]: http://www.haskell.org/cabal/users-guide/developing-packages.html#configurations "Cabal Configurations"