* Buffer.add_channel hangs
@ 2010-03-17 20:27 Stas Miasnikou
2010-03-17 23:20 ` [Caml-list] " Martin Jambon
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Stas Miasnikou @ 2010-03-17 20:27 UTC (permalink / raw)
To: caml-list
Hi,
OCaml 3.11.1, OpenBSD 4.6, i386.
I am trying to read whole file by doing:
let read_file_bin name =
let ic = open_in_bin name in
let b = Buffer.create 1024 in
(try Buffer.add_channel b ic max_int with _ -> ()); (* <-- HERE *)
close_in ic;
Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
but it hangs on the line marked. Am I doing something wrong?
Stas
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] Buffer.add_channel hangs
2010-03-17 20:27 Buffer.add_channel hangs Stas Miasnikou
@ 2010-03-17 23:20 ` Martin Jambon
2010-03-18 6:47 ` Stas Miasnikou
2010-03-18 2:53 ` Goswin von Brederlow
2010-03-18 17:52 ` Stas Miasnikou
2 siblings, 1 reply; 7+ messages in thread
From: Martin Jambon @ 2010-03-17 23:20 UTC (permalink / raw)
To: Stas Miasnikou; +Cc: caml-list
Stas Miasnikou wrote:
> Hi,
>
> OCaml 3.11.1, OpenBSD 4.6, i386.
>
> I am trying to read whole file by doing:
>
> let read_file_bin name =
> let ic = open_in_bin name in
> let b = Buffer.create 1024 in
> (try Buffer.add_channel b ic max_int with _ -> ()); (* <-- HERE *)
> close_in ic;
> Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
>
> but it hangs on the line marked. Am I doing something wrong?
The problem is max_int and the fact that Buffer.add_channel and Buffer.resize
do not check for this possibility:
let add_channel b ic len =
if b.position + len > b.length then resize b len;
really_input ic b.buffer b.position len;
b.position <- b.position + len
Something like the following would be better:
let add_channel b ic len =
if len < 0 || len > Sys.max_string_length then
invalid_arg "Buffer.add_channel";
...
Since you uncovered this problem, please kindly submit a proper bug report at
http://caml.inria.fr/mantis
(and figure what to do if the file is larger than 16MB on 32-bit systems)
Of course, you can see from the implementation of the Buffer module that a
string of your maximum length is created no matter what, which you surely want
to avoid especially on 64-bit systems where Sys.max_string_length is very large.
Martin
--
http://mjambon.com/
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] Buffer.add_channel hangs
2010-03-17 20:27 Buffer.add_channel hangs Stas Miasnikou
2010-03-17 23:20 ` [Caml-list] " Martin Jambon
@ 2010-03-18 2:53 ` Goswin von Brederlow
2010-03-18 17:52 ` Stas Miasnikou
2 siblings, 0 replies; 7+ messages in thread
From: Goswin von Brederlow @ 2010-03-18 2:53 UTC (permalink / raw)
To: Stas Miasnikou; +Cc: caml-list
Stas Miasnikou <stas.miasnikou@gmail.com> writes:
> Hi,
>
> OCaml 3.11.1, OpenBSD 4.6, i386.
>
> I am trying to read whole file by doing:
>
> let read_file_bin name =
> let ic = open_in_bin name in
> let b = Buffer.create 1024 in
> (try Buffer.add_channel b ic max_int with _ -> ()); (* <-- HERE *)
> close_in ic;
> Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
>
> but it hangs on the line marked. Am I doing something wrong?
>
> Stas
For the problem see the other mail.
For a better solution I suggest you look at the Bigarray module. You can
mmap your file as int8_unsigned array and have your read_file function
done all in simple step.
MfG
Goswin
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] Buffer.add_channel hangs
2010-03-17 23:20 ` [Caml-list] " Martin Jambon
@ 2010-03-18 6:47 ` Stas Miasnikou
2010-03-18 9:09 ` Fabrice Le Fessant
0 siblings, 1 reply; 7+ messages in thread
From: Stas Miasnikou @ 2010-03-18 6:47 UTC (permalink / raw)
To: Martin Jambon; +Cc: caml-list
On 3/18/10, Martin Jambon <martin.jambon@ens-lyon.org> wrote:
> Stas Miasnikou wrote:
>> OCaml 3.11.1, OpenBSD 4.6, i386.
>>
>> I am trying to read whole file by doing:
>>
>> let read_file_bin name =
>> let ic = open_in_bin name in
>> let b = Buffer.create 1024 in
>> (try Buffer.add_channel b ic max_int with _ -> ()); (* <-- HERE *)
>> close_in ic;
>> Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
>>
>> but it hangs on the line marked. Am I doing something wrong?
>
> The problem is max_int and the fact that Buffer.add_channel and
> Buffer.resize
> do not check for this possibility:
>
> let add_channel b ic len =
> if b.position + len > b.length then resize b len;
> really_input ic b.buffer b.position len;
> b.position <- b.position + len
>
> Something like the following would be better:
>
> let add_channel b ic len =
> if len < 0 || len > Sys.max_string_length then
> invalid_arg "Buffer.add_channel";
> ...
Oh, never thought OCaml has bugs! ;-)
> Since you uncovered this problem, please kindly submit a proper bug report
> at
> http://caml.inria.fr/mantis
I've submitted it.
> (and figure what to do if the file is larger than 16MB on 32-bit systems)
>
> Of course, you can see from the implementation of the Buffer module that a
> string of your maximum length is created no matter what, which you surely
> want
> to avoid especially on 64-bit systems where Sys.max_string_length is very
> large.
Erm... yes. I think I follow the other advice and will use Bigarray.
Stas
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] Buffer.add_channel hangs
2010-03-18 6:47 ` Stas Miasnikou
@ 2010-03-18 9:09 ` Fabrice Le Fessant
0 siblings, 0 replies; 7+ messages in thread
From: Fabrice Le Fessant @ 2010-03-18 9:09 UTC (permalink / raw)
To: Stas Miasnikou; +Cc: Martin Jambon, caml-list
Hi,
Maybe you should just use (in_channel_length ic) to get the size of the
file before hand, so that you can directly create a string with that
size instead of a Buffer.t ?
Regards,
--Fabrice
Stas Miasnikou wrote, On 03/18/2010 07:47 AM:
> On 3/18/10, Martin Jambon <martin.jambon@ens-lyon.org> wrote:
>> Stas Miasnikou wrote:
>>> OCaml 3.11.1, OpenBSD 4.6, i386.
>>>
>>> I am trying to read whole file by doing:
>>>
>>> let read_file_bin name =
>>> let ic = open_in_bin name in
>>> let b = Buffer.create 1024 in
>>> (try Buffer.add_channel b ic max_int with _ -> ()); (* <-- HERE *)
>>> close_in ic;
>>> Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
>>>
>>> but it hangs on the line marked. Am I doing something wrong?
>> The problem is max_int and the fact that Buffer.add_channel and
>> Buffer.resize
>> do not check for this possibility:
>>
>> let add_channel b ic len =
>> if b.position + len > b.length then resize b len;
>> really_input ic b.buffer b.position len;
>> b.position <- b.position + len
>>
>> Something like the following would be better:
>>
>> let add_channel b ic len =
>> if len < 0 || len > Sys.max_string_length then
>> invalid_arg "Buffer.add_channel";
>> ...
>
> Oh, never thought OCaml has bugs! ;-)
>
>> Since you uncovered this problem, please kindly submit a proper bug report
>> at
>> http://caml.inria.fr/mantis
>
> I've submitted it.
>
>> (and figure what to do if the file is larger than 16MB on 32-bit systems)
>>
>> Of course, you can see from the implementation of the Buffer module that a
>> string of your maximum length is created no matter what, which you surely
>> want
>> to avoid especially on 64-bit systems where Sys.max_string_length is very
>> large.
>
> Erm... yes. I think I follow the other advice and will use Bigarray.
>
> Stas
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>
--
Fabrice LE FESSANT
Chercheur, Equipe ASAP
(As Scalable As Possible)
http://www.lefessant.net/
INRIA-Futurs, Bat P - 112
Parc Orsay Université
2-4, rue Jacques Monod
F-91893 Orsay Cedex, FRANCE
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Buffer.add_channel hangs
2010-03-17 20:27 Buffer.add_channel hangs Stas Miasnikou
2010-03-17 23:20 ` [Caml-list] " Martin Jambon
2010-03-18 2:53 ` Goswin von Brederlow
@ 2010-03-18 17:52 ` Stas Miasnikou
2010-03-20 8:29 ` Stas Miasnikou
2 siblings, 1 reply; 7+ messages in thread
From: Stas Miasnikou @ 2010-03-18 17:52 UTC (permalink / raw)
To: caml-list
On 3/17/10, Stas Miasnikou <stas.miasnikou@gmail.com> wrote:
> OCaml 3.11.1, OpenBSD 4.6, i386.
>
> I am trying to read whole file by doing:
>
> let read_file_bin name =
> let ic = open_in_bin name in
> let b = Buffer.create 1024 in
> (try Buffer.add_channel b ic max_int with _ -> ()); (* <-- HERE *)
> close_in ic;
> Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
>
> but it hangs on the line marked. Am I doing something wrong?
More on this, when doing:
let read_file_bin name =
let ic = open_in_bin name in
let b = Buffer.create 1024 in
(try Buffer.add_channel b ic (n + 100) with _ -> ());
close_in ic;
print_int (Buffer.length b); print_newline ();
Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
With file length equal to n (65536) I get nothing read, i.e. after
reading Buffer.length b returns 0. Can anyone check this, so I know
whether this is OCaml or my OpenBSD 4.6 port of it issue?
Stas
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Buffer.add_channel hangs
2010-03-18 17:52 ` Stas Miasnikou
@ 2010-03-20 8:29 ` Stas Miasnikou
0 siblings, 0 replies; 7+ messages in thread
From: Stas Miasnikou @ 2010-03-20 8:29 UTC (permalink / raw)
To: caml-list
On 3/18/10, Stas Miasnikou <stas.miasnikou@gmail.com> wrote:
> On 3/17/10, Stas Miasnikou <stas.miasnikou@gmail.com> wrote:
>> OCaml 3.11.1, OpenBSD 4.6, i386.
>>
>> I am trying to read whole file by doing:
>>
>> let read_file_bin name =
>> let ic = open_in_bin name in
>> let b = Buffer.create 1024 in
>> (try Buffer.add_channel b ic max_int with _ -> ()); (* <-- HERE *)
>> close_in ic;
>> Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
>>
>> but it hangs on the line marked. Am I doing something wrong?
>
> More on this, when doing:
>
> let read_file_bin name =
> let ic = open_in_bin name in
> let b = Buffer.create 1024 in
> (try Buffer.add_channel b ic (n + 100) with _ -> ());
> close_in ic;
> print_int (Buffer.length b); print_newline ();
> Array.init (Buffer.length b) (fun i -> int_of_char (Buffer.nth b i))
>
> With file length equal to n (65536) I get nothing read, i.e. after
> reading Buffer.length b returns 0. Can anyone check this, so I know
> whether this is OCaml or my OpenBSD 4.6 port of it issue?
Aha, this behaviour is documented, mea culpa.
Stas
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-03-20 8:29 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-17 20:27 Buffer.add_channel hangs Stas Miasnikou
2010-03-17 23:20 ` [Caml-list] " Martin Jambon
2010-03-18 6:47 ` Stas Miasnikou
2010-03-18 9:09 ` Fabrice Le Fessant
2010-03-18 2:53 ` Goswin von Brederlow
2010-03-18 17:52 ` Stas Miasnikou
2010-03-20 8:29 ` Stas Miasnikou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox