Tagged Questions
A time and space-efficient implementation of byte vectors for Haskell.
19
votes
2answers
430 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 ...
17
votes
1answer
558 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
595 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 ...
13
votes
2answers
520 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.
...
11
votes
1answer
125 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
...
10
votes
6answers
574 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 ...
7
votes
1answer
187 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 :: ...
7
votes
4answers
430 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
691 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 ...
6
votes
1answer
98 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 ...
6
votes
1answer
135 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
2answers
465 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 ...
6
votes
3answers
1k 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 ...
5
votes
3answers
241 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
4answers
803 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 [] = []
...
5
votes
2answers
254 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 ...
4
votes
1answer
139 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
138 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
150 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
1answer
132 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
2answers
427 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
2answers
355 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
2answers
2k 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:
...
3
votes
1answer
77 views
Haskell How to Create a Word8?
I want to write a simple function which splits a ByteString into a list of ByteStrings using "\n" as the delimiter. My attempt:
import Data.ByteString
listize :: ByteString -> [ByteString]
...
3
votes
2answers
100 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 ...
3
votes
1answer
66 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
194 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
206 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', ...
3
votes
2answers
419 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
957 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 ...
2
votes
1answer
102 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 ...
2
votes
2answers
593 views
vb.net - Encode string to UTF-8
I've made a class to encode a string
Public Class UTF8
Public Shared Function encode(ByVal str As String)
Dim utf8Encoding As New System.Text.UTF8Encoding
Dim encodedString() As ...
2
votes
1answer
82 views
Hash a byte string
I'm working on a personal project, a file compression program, and am having trouble with my symbol dictionary. I need to store previously encountered byte strings into a structure in such a way that ...
2
votes
2answers
121 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 ...
2
votes
3answers
449 views
How do I convert a 24-bit integer into a 3-byte array?
Hey Im totally out of my depth and my brain is starting to hurt.. :(
I need to covert an integer so that it will fit in a 3 byte array.(is that a 24bit int?) and then back again to send/receive this ...
2
votes
5answers
257 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
2answers
257 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 ...
2
votes
3answers
125 views
Casting an mmapped ByteString to other types?
I realize this may be a rather heretical question, but I wonder whether I can mmap a file of data, via System.IO.Posix.MMap, and then cast the resulting ByteString into a strict array of some other ...
2
votes
2answers
400 views
Split ByteString on a ByteString (instead of a Word8 or Char)
I know I already have the Haskell Data.ByteString.Lazy function to split a CSV on a single character, such as:
split :: Word8 -> ByteString -> [ByteString]
But I want to split on a ...
2
votes
5answers
366 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
...
1
vote
2answers
193 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 ...
1
vote
2answers
84 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 ...
1
vote
1answer
260 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
1answer
138 views
UTF8 encoded password Byte[] with SHA512 encryption to string conversion
I have created a web form in c# that accepts username and password and stores password in MSSQL 2005 db in 'image' format. The password is merged with salt, encoded in UTF8 and lastly it is applied ...
1
vote
1answer
129 views
How do I get a string representation of an image before uploading?
I'm trying to intercept an image from an HTML form's input control to convert it into a byte string before processing it on the server side.
How do I intercept the file?
upload_files = ...
1
vote
1answer
138 views
How do I work with “image data as a byte string”, using Python?
First I'm going to explain what I'm trying to do and then explain my problem.
Okay so I've been making prototypes on a project that I hope to be working on over the summer. The project is a small ...
1
vote
2answers
346 views
How would one convert a Python string representation of a byte-string to an actual byte-string?
I'm trying to figure out how one might convert a string representation of a byte-string into an actual byte-string type. I'm not very used to Python (just hacking on it to help a friend), so I'm not ...
1
vote
2answers
119 views
How to query filtering by a ByteString field in Google App Engine?
I have
class Map(db.Model):
urlHash= db.ByteStringProperty()
hasher = hashlib.sha256()
hasher.update(staticMapUrl)
urlHash = hasher.digest()
query = db.Query(models.Map)
query = ...
1
vote
1answer
196 views
parser for Data.ByteString.Lazy.Char8 in Haskell?
Hi
i'm facing the following problem, i have to re-write an existant code to improve his performances. the old version was using a parser defined like this :
newtype Parser Char a = Parser {runParser ...
1
vote
1answer
156 views
haskell network io hgetline
I want to read all the data on a handle, and then block waiting for more data. listen1 stops when there is a '\n' character in the stream. listen2 works and could be made completely general by ...