Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
string_io.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
(*{{{ Copyright (c) 2014 Andy Ray * Copyright (c) 2014 Anil Madhavapeddy <anil@recoil.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * }}}*) (* input channel type - a string with a (file) position and length *) type buf = { str : string; mutable pos : int; len : int } let open_in str = { str; pos = 0; len = String.length str } module M = struct type 'a t = 'a let return a = a type conn = buf let ( >>= ) = ( |> ) type ic = buf (* output channels are just buffers *) type oc = Buffer.t (* the following read/write logic has only been lightly tested... *) let read_rest x = let s = String.sub x.str x.pos (x.len - x.pos) in x.pos <- x.len; s let read_line' x = if x.pos < x.len then let start = x.pos in try while x.str.[x.pos] != '\n' do x.pos <- x.pos + 1 done; let l = if x.pos > 0 && x.str.[x.pos - 1] = '\r' then x.pos - start - 1 else x.pos - start in let s = String.sub x.str start l in x.pos <- x.pos + 1; Some s with _ -> Some (read_rest x) else None let read_line x = return (read_line' x) let read_exactly' x n = if x.len - x.pos < n then None else let s = String.sub x.str x.pos n in x.pos <- x.pos + n; Some s let read x n = match read_exactly' x n with | None when x.pos >= x.len -> raise End_of_file | None -> return (read_rest x) | Some x -> return x let write x s = Buffer.add_string x s; return () let flush _x = return () end