Say I have a dictionary.txt file, I need to read it into a map and use it in my program, how can I make this dictionary.txt file contained in the compiled exe file?
|
|
||||
|
|
|
You can store serialized data types as bytestring literals. Here's an example:
However, the file-embed automates this process, making it easier to do non-trivial embeddings. All approaches essentially boil down to representing the static data as a bytestring literal,
|
|||
|
|
|
You can use a custom
This solution will be more efficient than using file-embed (no As an aside, I also ended up needing resource file support during my work on cabal-install, so it will probably be integrated into some future version of Cabal (if I'll implement it). |
||||
|
|
|
I would strongly recommend to use Template Haskell here, to load the file and turn it into a Haskell Datatype. It will not only be compiled into the final binary, but also fully optimized. |
|||
|
|
|
You'll have to come up with your own way to get it into a Map, but http://hackage.haskell.org/package/file-embed will get it into your compiled binary. We use it for embedding templates in some of our web applications. |
|||
|
|