I want something that looks like a file handle but is really backed by an in-memory buffer to use for I/O redirects. How can I do this?
|
|
It's not possible without modifying the compiler. This is because Handle is an abstract data type, not a typeclass. |
|||
|
|
I just wrote a library which provides this, called "knob" [hackage]. You can use it to create
|
|||
|
|
|
If you can express what you want to do in terms of C or system calls you could use Haskell's Foreign Function Interface (FFI). I started to suggest using mmap, but on second thought I think mmap might be a mapping the wrong way even if you used it with the anonymous option. You can find more information about the Haskell FFI at the haskell.org wiki. |
|||
|
|
|
This may not be possible. GHC, at least, seems to require a handle to have an OS file descriptor that is used for all read/write/seek operations. See You may be able to get the same effect by enlisting the OS's help: create a temporary file, connect the handle to it and then memory map the file for the I/O redirects. This way, all the handle I/O would become visible in the memory mapped section. |
||||
|
|
|
This is actually a bug in the library design, and one that's annoyed me, too. I see two approaches to doing what you want, neither of which is terribly attractive.
|
||||
|
|