For example, here's a small piece of a program I'm writing using Haskell and gtk2hs:
import System.GIO
foreign import ccall safe "g_type_init"
g_type_init :: IO ()
main :: IO ()
main = do
g_type_init
let file = fileFromParseName "my-file.txt"
inputStream <- fileRead file Nothing
...
The fileRead
method returns a FileInputStream
instance, but I can't for the life of me find anywhere in the documentation a method to read from it. The corresponding C method in GIO should be g_input_stream_read
, but it doesn't seem to be implemented in gtk2hs.
Am I missing something?
After some experimentation I managed to write my own implementation of
g_input_stream_read
. It's not very pretty and might not even be safe, but this will successfully print the first 1,024 characters of the file specified at the top of main:It needs some work in order to become a simple
inputStreamRead :: InputStream -> IO (String)
, but at least it's a step in the right direction.EDIT: found a better solution. This one should keep reading until the number of bytes read equals 0, and has a friendlier entry point: