Tagged Questions
2
votes
2answers
116 views
Matching bytestrings in Parsec
I am currently trying to use the Full CSV Parser presented in Real World Haskell. In order to I tried to modify the code to use ByteString instead of String, but there is a string combinator which ...
0
votes
2answers
112 views
Get Arbitrary Slices of Bits from Bytestring
I want to use a lazy Bytestring to represent a stream of bits. I need to be able to take arbitrary slices of bits from this stream efficiently. For example, I might have a ByteString of length 10, and ...
7
votes
2answers
236 views
What makes ByteString IO so fast?
I've been trying to solve problem 1330 from acm.timus.ru in Haskell. Basically, it boils down to this: 1) read from stdin an array A of length N (N < 10^4) and M pairs of integers (M < 10^5); 2) ...
2
votes
3answers
138 views
How to convert a ByteString to an Int and dealing with endianness?
I need to read a binary format in Haskell. The format is fairly simple: four octets indicating the length of the data, followed by the data. The four octets represent an integer in network byte-order.
...
0
votes
1answer
113 views
How faster Int comparison is than ByteString comparison in Haskell?
I'm implementing patterns mining algorithm, and usually input data are file with the following format
item1 item2 item3
item0 item3 item10
....
item30 item40 item30
where usually itemx is a String. ...
6
votes
1answer
118 views
Store UTF-8 encoding of a String in a ByteString
So I want to access the individual bytes of the UTF-8 encoding of a string.
I tried using Data.ByteString.Char8.pack, but that seems to just truncate it to the last byte of each character:
ghci> ...
1
vote
2answers
110 views
How to force strict evaluation of a sequence of ByteString
I have the following Haskell type definition:
import Data.Sequence(Seq, length)
import Data.ByteString.UTF8(ByteString)
type StringSeq = Seq ByteString
I have expressions of type StringSeq for ...
1
vote
1answer
116 views
How do I work with indvidual elements of a ByteString in Haskell
I need to write a function with the following type
replaceSubtrie :: SSTrie -> Data.Word.Word8 -> SSTrie -> SSTrie
replaceSubtrie trie base subtrie = ???
where depending on the value of ...
2
votes
3answers
160 views
High CPU usage on hFlush in Haskell
I found that the following Haskell code uses 100% CPU and takes about 14secs to finish on my Linux server.
{-# LANGUAGE OverloadedStrings #-}
module Main where
import qualified ...
2
votes
1answer
226 views
Bytestring linking in ghc
Consider the following simple code:
import Crypto.Hash.SHA1 (hashlazy)
import qualified Data.ByteString as BS
main = return ()
I installed cabal install --global bytestring and then I obtain (on a ...
4
votes
1answer
164 views
Are there monadic/applicative map (i.e. traverse/mapM) functions over ByteString or Text?
There are standard (pure) map functions for ByteString and Text:
map :: (Word8 -> Word8) -> ByteString -> ByteString
map :: (Char -> Char) -> Text -> Text
but I'm missing their ...
8
votes
4answers
179 views
Making a single function work on lists, ByteStrings and Texts (and perhaps other similar representations)
I'm writing a function that does some searching in a sequence of arbitrary symbols. I'd like to make it generic enough so that it works on lists, Foldables as well on ByteStrings and Texts. ...
2
votes
1answer
84 views
returning a list of a type from parsing a byte stream in which the length is not known until runtime
I think this is more of my lack of understanding the intricacy of Types than anything else. Trying to solve this I feel that I've been close a couple of times but not there yet.
I am trying to read ...
2
votes
2answers
149 views
Converting Data.Time.UTCTime to / from ByteString
Let's say I need to do write/read of a Data.Time.UTCTime in "%Y-%m-%d %H:%M:%S" format many many times to/from a file.
It seems to me that, using Data.Time.formatTime or Data.Time.parseTime to ...
1
vote
1answer
119 views
Lazy ByteString strange behaviour or bug?
When I'm testing my function intervalFinder in GHCI it seems to be working, but when I try to compile it, I have NO output:
The function works on the input:
*Main> intervalFinder ...
6
votes
1answer
259 views
Is it possible to use Text or ByteString on HXT in Haskell?
I think HXT, a XML/HTML processing library in Haskell, has really flexible and powerful methods for traversing and manipulating DOM trees by Arrows.
...
1
vote
2answers
133 views
Where is Network.Socket.ByteString.Lazy's sendTo?
Both Network.Socket.ByteString and Network.Socket.ByteString.Lazy have a send function.
Network.Socket.ByteString has a sendTo function, but Network.Socket.ByteString.Lazy doesn't.
How can I use ...
3
votes
2answers
106 views
Lazy ByteString built from Socket handle cannot be consumed and GCed lazily
I'm writing a network file transfer application. Using Lazy ByteString as a intermediate
import qualified Data.ByteString.Lazy as BSL
When constructing a BSL from local file, then put the BSL to a ...
3
votes
2answers
802 views
Haskell How to convert Char to Word8
I want to split ByteString to words like so:
import qualified Data.ByteString as BS
main = do
input <- BS.getLine
let xs = BS.split ' ' input
But it appears that GHC can't convert a ...
0
votes
3answers
310 views
Switching to ByteStrings
EDIT: I followed Yuras and Dave4420's advices (Thanks). I still have some errors. Updated the question. Finally I will use meiersi's version (Thanks) but I still want to find my errors...
I have a ...
3
votes
1answer
226 views
Using base64-bytestring with lazy ByteStrings
Here's what I'm trying to do in Haskell:
take a message in ByteString format (doesn't really matter if lazy or strict)
encrypt the message with an RSA public key
base64 encode the encrypted message
...
9
votes
3answers
467 views
Efficiently turn a ByteString into a hex representation
I needed to be able to give the hex representation of a SHA512 hash. Maybe I just didn't look hard enough, but I could find any functions on Hackage to do it. So I wrote an implementation using ...
7
votes
2answers
297 views
How to parse a 7GB file, with Data.ByteString?
I have to parse a file, and indeed a have to read it first, here is my program :
import qualified Data.ByteString.Char8 as B
import System.Environment
main = do
args <- getArgs
let ...
4
votes
1answer
1k views
Haskell How to Create a Word8?
I want to write a simple function which splits a ByteString into [ByteString] using '\n' as the delimiter. My attempt:
import Data.ByteString
listize :: ByteString -> [ByteString]
listize xs = ...
5
votes
1answer
629 views
Data.Text vs Data.ByteString.Char8
Can anyone explain the pros and cons to using Data.Textand Data.ByteString.Char8 data types? Does working with ASCII-only text change these pros and cons? Do their lazy variants change the story as ...
4
votes
2answers
739 views
What is the best way to convert a ByteString to an Int?
I always run into the following error when trying to read a ByteString:
Prelude.read: no parse
Here's a sample of code that will cause this error to occur upon rendering in a browser:
factSplice ...
13
votes
1answer
183 views
Purity of functions generating ByteString (or any object with ForeignPtr component)
Since a ByteString is a constructor with ForeignPtr:
data ByteString = PS {-# UNPACK #-} !(ForeignPtr Word8) -- payload
{-# UNPACK #-} !Int         -- offset
...
4
votes
1answer
238 views
Writing storable instance for CString with O(1) function to get total byte length
I am trying to write a storable vector instance for CString (null-terminated C chars in my case). The storable instance will store the pointers that the CString is (Ptr CChar). So, length of the ...
4
votes
3answers
858 views
Pretty print ByteString to hex nibble-wise
What's an idiomatic way of treating a bytestring nibblewise and pretty printing its hexadecimal (0-F) representation?
putStrLn . show . B.unpack
-- [1,126]
Which, upon further work
putStrLn . show ...
4
votes
3answers
479 views
Converting 64-bit Double to ByteString efficiently
I wrote a function to convert 64-bit Double to ByteString (architecture/type safety is not really an issue - let us assume for now that the Double is 64-bit Word). While the function below works well, ...
7
votes
4answers
2k views
Convert a Lazy ByteString to a strict ByteString
I have a function that takes a lazy ByteString, that I wish to have return lists of strict ByteStrings (the laziness should be transferred to the list type of the output).
import qualified ...
3
votes
1answer
159 views
Size of Chunk in Data.ByteString.Lazy
Module Data.ByteString.Lazy contain own implementation of ByteString type:
data ByteString = Empty | Chunk !S.ByteString ByteString
And there are following phrase about size of chunk:
The ...
1
vote
2answers
122 views
How do I convert a ByteString to an appropriately sized Word?
Basically I've read in 5 bytes that correspond to a quantity, but I would like to convert it to a Word64. What's the best way to do this?
Edit: I should also say that this is run in an inner loop so ...
5
votes
3answers
475 views
Problem with bit swapping in Haskell
As part of a school project I'm implementing some crypthographic algorithms in Haskell. As you probably know this involves quite a lot of low level bit fiddling. Now I am stuck on one particular sub ...
1
vote
1answer
785 views
Haskell Bytestring pack/unpack
I still don't get how bytestrings work
import qualified Data.ByteString.Lazy as BS
let x = BS.readFile "somefile.txt" --some large file
let z = ((reverse (BS.unpack x)) !! 2) --do stuff here
I know ...
1
vote
3answers
300 views
Haskell Bytestring change ASCII?
import qualified Data.ByteString.Lazy.Char8 as BS
stuff <- BS.readFile "stuff.txt"
How do take a specific character from a bytestring then change its ASCII and then put it back?
Do I use readInt ...
7
votes
1answer
257 views
Partial decoding of ByteStrings to Text
I need to decode ByteStrings from various encodings into Text, but the ByteStrings might be incomplete fragments. Ideally, I would need a function with signature of something like:
decodeFragment :: ...
13
votes
2answers
1k views
Haskell Lazy ByteString + read/write progress function
I am learing Haskell Lazy IO.
I am looking for an elegant way to copy a large file (8Gb) while printing copy progress to console.
Consider the following simple program that copies a file silently.
...
18
votes
1answer
746 views
Haskell iteratee: simple worked example of stripping trailing whitespace
I'm trying to understand how to use the iteratee library with Haskell. All of the articles I've seen so far seem to focus on building an intuition for how iteratees could be built, which is helpful, ...
5
votes
1answer
198 views
How to store recursive datatype with Data.Binary
Data.Binary is great. There is just one question I have. Let's imagine I've got a datatype like this:
import Data.Binary
data Ref = Ref {
refName :: String,
refRefs :: [(String, Ref)]
}
...
6
votes
1answer
144 views
findSubstrings and breakSubstring in Data.ByteString
In the source of Data/ByteString.hs it says that the function findSubstrings has been deprecated in favor of breakSubstring. However I think the findSubstrings which was implemented using the KMP ...
3
votes
1answer
321 views
how do I read a 24 bit int of out of a haskell bytestring?
I'm trying to parse a binary format (PES) using Haskell:
import qualified Data.ByteString.Lazy as BL
import Data.Word
import Data.Word.Word24
import qualified Data.ByteString.Lazy.Char8 as L8
data ...
21
votes
2answers
701 views
When do I use ByteString and when do I not?
I've been making rather poor attempts at the PRIME1 problem on SPOJ. I discovered using that using ByteString really helped performance for reading in the problem text. However, using ByteString to ...
2
votes
2answers
204 views
Datatype to ByteString
I have a newtype I'd like to save in a file, something like this:
type Index = (Int, Int)
newtype Board a = Board { unboard :: Array Index a }
So basically an Array. But maybe I want to add some ...
6
votes
1answer
178 views
Get magic number from git packfile index in Haskell
I'm wanting to get the magic number from a git packfile index to ensure that it is indeed a packfile. The pack format documentation states that the magic number is "/377tOc". When I open the packfile ...
4
votes
2answers
735 views
IO over big files in haskell: Performance issue
I'm trying to work over big files using Haskell. I'd like to browse an input file byte after byte, and to generate an output byte after byte. Of course I need the IO to be buffered with blocks of ...
16
votes
1answer
981 views
Reading large file in haskell?
i've been trying to read a large file in haskell.
I need to compress it using a custom algorithm for a university project. Everything works fine untill i start to compress big files.
I extracted ...
2
votes
5answers
329 views
Efficient output of numbers
I want to print a list of integrals separated with spaces to stdout. The list generation is fast, so I tried to solve this problem with the sequence [1..200000].
In C, I can implement it like this:
...
15
votes
4answers
2k views
Haskell Bytestrings: How to pattern match?
I'm a haskell newbie, and having a bit of trouble figuring out how to pattern match a ByteString. The [Char] version of my function looks like:
dropAB :: String -> String
dropAB [] = []
...
4
votes
2answers
481 views
Haskell ByteStrings - ending up with large file loaded into memory
Greetings,
I'm trying to understand why I'm seeing the entire file loaded into memory with the following program, yet if you comment out the line below "(***)" then the program runs in constant ...


