A time and space-efficient implementation of byte vectors for Haskell.
0
votes
1answer
392 views
C++ code for URL-encoding but cannot use curl
Is there a simple way to do URL encode in C++?
I am using byte string encode and it give wrong result
SDKXML=<CSPInput><serviceID>CSOTR39099</serviceID><
<CSPInput> ...
2
votes
2answers
115 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 ...
2
votes
0answers
191 views
Issues with raw_post_data decoding in Django
I have stumbled on a strange issue that I can't resolve:
In my Django app there is a method which gets hit by a POST from a java applet, which sends it a JSON object. Django method parses it like ...
-4
votes
0answers
70 views
Decoding Bytestring to Floats in Python
Hello i want to decode a UDP message containing the variables of this XML File:
XML describing the Record
The C-Code for the Prtocol sending the Data is:
HERE
this should be done in ...
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
2answers
801 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
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 ...
0
votes
1answer
64 views
Python bigram - foreign script
I am finding a list of bigrams using Python that include foreign text: Arabic, Russian, Farsi
The results show as such: ('\xd9\x85\xd9\x86\xd8\xa7\xd8\xb8\xd8\xb1\xd9\x87', ...
1
vote
1answer
72 views
Pulling valid data from bytestring in Python 3
Given the following bytestring, how can I remove any characters matching \xFF, and create a list object from what's left (by splitting on removed areas)?
...
2
votes
1answer
163 views
Python : UDP Socket How to Waiting Client Side Reply Bytes String
import socketserver
import struct
from collections import namedtuple
class MyUDPHandler(socketserver.BaseRequestHandler):
def handle(self):
data = self.request[0].strip()
socket = ...
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) ...
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 [] = []
...
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.
...
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 = ...
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. ...
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 ...
18
votes
1answer
743 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, ...
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 ...
0
votes
2answers
119 views
byte[] InputStream converted to String
This is my case: I'm using a library for reading files from a respository (I can't modify that library), the library has a method getContent that returns a String (it uses BasicResponseHandler to ...
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 ...
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 ...
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 ...
2
votes
4answers
318 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 ...
5
votes
1answer
256 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.
...
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
148 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 ...
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 ...
0
votes
1answer
113 views
python structure to raw string representation
I want to know some thing, at this time I use python ctypes to make some wifi frame structure and with lorcon2 I could send them across the Lan. I want to transform this structure in a byte string ...
2
votes
3answers
518 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
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 ...
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:
...
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 ...
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 ...
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 ...
9
votes
3answers
466 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 ...
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
...
7
votes
2answers
295 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 ...
1
vote
5answers
477 views
Look at the bytes/bits of a variable in C
How can I see the bytes/bits of a variable in C? In terms of binary, just zeros and ones.
My problem is that I want to test to see if any zeros exist in the most significant byte of variable x. Any ...
2
votes
2answers
10k 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 ...
5
votes
1answer
628 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
735 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
855 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, ...
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.
...
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 ...



