A time and space-efficient implementation of byte vectors for Haskell.

learn more… | top users | synonyms

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 ...
18
votes
1answer
747 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, ...
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 ...
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 [] = [] ...
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. ...
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 ...
11
votes
6answers
2k views

Python and Unicode: How everything should be Unicode

Forgive if this a long a question: I have been programming in Python for around six months. Self taught, starting with the Python tutorial and then SO and then just using Google for stuff. Here is ...
10
votes
4answers
2k views

Using Haskell to output a UTF-8-encoded ByteString

I'm going out of my mind trying to simply output UTF-8-encoded data to the console. I've managed to accomplish this using String, but now I'd like to do the same with ByteString. Is there a nice and ...
10
votes
3answers
3k views

Many types of String (ByteString)

I wish to compress my application's network traffic. According to the (latest?) "Haskell Popularity Rankings", zlib seems to be a pretty popular solution. zlib's interface uses ByteStrings: ...
9
votes
3answers
468 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 ...
8
votes
2answers
2k views

What is the best way to convert String to ByteString

What is the best way to convert a String to a ByteString in Haskell? My gut reaction to the problem is import qualified Data.ByteString as B import Data.Char (ord) packStr = B.pack . map ...
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. ...
8
votes
4answers
587 views

In Haskell, will calling length on a Lazy ByteString force the entire string into memory?

I am reading a large data stream using lazy bytestrings, and want to know if at least X more bytes is available while parsing it. That is, I want to know if the bytestring is at least X bytes long. ...
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 ...
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 ...
7
votes
2answers
237 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) ...
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 :: ...
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> ...
6
votes
1answer
179 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 ...
6
votes
3answers
2k views

Using Haskell's Parsec to parse a ByteString

I've managed to use Parsec to parse a String, but cannot manage to do the same with a ByteString. How can I make Parsec work with ByteStrings without manually converting them to Strings? I get the ...
6
votes
1answer
260 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. ...
6
votes
2answers
204 views

Python 3 bytes.index: better way?

Just learned Python 3 in 7 days, and I have the feeling that there's a bit of a hole in my understanding of byte strings. In Python 3, suppose I have a byte string b'1234'. Its iterator returns ...
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 ...
5
votes
1answer
632 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 ...
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 ...
5
votes
2answers
343 views

How can I convert a (StorableArray (Int, Int) Word8) into a lazy ByteString?

I am trying to load a PNG file, get the uncompressed RGBA bytes, then send them to the gzip or zlib packages. The pngload package returns image data as a (StorableArray (Int, Int) Word8), and the ...
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)] } ...
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
2answers
736 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 ...
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 = ...
4
votes
2answers
742 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 ...
4
votes
2answers
2k views

How to convert a Integer to a ByteString in Haskell

We'd like to serialize data in a specific binary format. We use Data.ByteStrings internally. So, the question is: How to convert the different data types we use to a ByteString. For String we have no ...
4
votes
3answers
482 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, ...
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 ...
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 ...
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 ...
3
votes
2answers
805 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 ...
3
votes
2answers
927 views

Reading in a binary file in haskell

How could I write a function with a definition something like... readBinaryFile :: Filename -> IO Data.ByteString I've got the functional parts of Haskell down, but the type system and monads ...
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
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 ...
3
votes
2answers
562 views

Serializing Python bytestrings to JSON, preserving ordinal character values

I have some binary data produced as base-256 bytestrings in Python (2.x). I need to read these into JavaScript, preserving the ordinal value of each byte (char) in the string. If you'll allow me to ...
3
votes
1answer
161 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 ...
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 ...
3
votes
2answers
346 views

PHP format bytes translation to Javascript

Not really a question but kind of a challenge.. I have this PHP function that I always use and now I need it in Javascript. function formatBytes($bytes, $precision = 0) { $units = array('b', ...
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
5answers
425 views

Mysterious word (“LPS”) appears in a list of Haskell output

I am new to Haskell and trying to fiddle with some test cases I usually run into in the real world. Say I have the text file "foo.txt" which contains the following: 45.4 34.3 377.8 33.2 98.4 456.7 ...
2
votes
3answers
139 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. ...
2
votes
4answers
326 views

Python issue with incorrectly formated strings that contains \x

At some point our python script receives string like that: In [1]: ab = 'asd\xeffe\ctive' In [2]: print ab asd�fe\ctve \ \\ \\\k\\\ Data is damaged we need escape \x to be properly interpreted as ...
2
votes
5answers
330 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: ...
2
votes
3answers
529 views

Convert byte string to string in python

I'm using PyCrypto, and python 2.7.3. I'm attempting to prepend a regular string to the hash to create a chained hash, but to keep formats consistent, I need the string s in the 'printed' form ...

1 2