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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
(***********************************************************************)
(* channel.ml *)
(* *)
(* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, *)
(* 2011, 2012, 2013 Yaron Minsky and Contributors *)
(* *)
(* This file is part of SKS. SKS is free software; you can *)
(* redistribute it and/or modify it under the terms of the GNU General *)
(* Public License as published by the Free Software Foundation; either *)
(* version 2 of the License, or (at your option) any later version. *)
(* *)
(* This program is distributed in the hope that it will be useful, but *)
(* WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *)
(* General Public License for more details. *)
(* *)
(* You should have received a copy of the GNU General Public License *)
(* along with this program; if not, write to the Free Software *)
(* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *)
(* USA or see <http://www.gnu.org/licenses/>. *)
(***********************************************************************)
open Bytes
open MoreLabels
open Common
module Unix=UnixLabels
(******************************************************************)
let rec lmax list = match list with
[] -> raise Not_found
| x::[] -> x
| x::y::tl -> lmax ((max x y)::tl)
let char_width = 8
let int_size = 4
let int32_size = 4
let int64_size = 8
let byte64 = Int64.of_int 0xFF
let byte32 = Int32.of_int 0xFF
(** creates function for reading strings that is safe for use with
non-blocking channels *)
let create_nb_really_input inchan =
let buffer = ref None
and pos = ref 0
in
let input len =
let buf =
match !buffer with
None ->
let buf = Bytes.create len in
buffer := Some buf;
pos := 0;
buf
| Some buf -> buf
in
if Bytes.length buf <> len then
failwith ("create_nb_really_input: attempt to redo incomplete " ^
"read with different size");
(* try to read all remaining bytes *)
begin
try
while !pos < len do
let r = input inchan buf !pos (len - !pos) in
if r = 0 then (raise End_of_file)
else pos := !pos + r
done
with
| Unix.Unix_error (Unix.EAGAIN,_,_)
| Unix.Unix_error (Unix.EWOULDBLOCK,_,_)
| Sys_blocked_io ->
raise Sys_blocked_io
end;
(* if we get here, then read was complete *)
buffer := None;
Bytes.unsafe_to_string buf
in
input
(* let intbuf = String.create (lmax [int_size;int32_size;int64_size]) *)
let read_binary_int64_internal cin ~size =
let intbuf = cin#read_string size in
let value = ref Int64.zero in
for i = 0 to size - 1 do
value := Int64.add (Int64.shift_left !value char_width)
(Int64.of_int (int_of_char intbuf.[i]))
done;
!value
let read_binary_int32_internal cin ~size =
let intbuf = cin#read_string size in
let value = ref Int32.zero in
for i = 0 to size - 1 do
value := Int32.add (Int32.shift_left !value char_width)
(Int32.of_int (int_of_char intbuf.[i]))
done;
!value
let read_binary_int_internal cin ~size =
let intbuf = cin#read_string size in
let value = ref 0 in
for i = 0 to size - 1 do
value := (!value lsl char_width) + (int_of_char intbuf.[i])
done;
!value
(***********************************************************************)
let rec read_all_rec cin sbuf buf =
let status = input cin sbuf 0 (Bytes.length sbuf) in
if status = 0 then ()
else (
Buffer.add_subbytes buf sbuf 0 status;
read_all_rec cin sbuf buf
)
let read_all cin ?len ()=
let len = match len with
None -> 1024 * 100
| Some x -> x
in
let sbuf = Bytes.create len
and buf = Buffer.create len in
read_all_rec cin sbuf buf;
Buffer.contents buf
(*********************************************************************)
class virtual out_channel_obj =
object (self)
method upcast = (self :> out_channel_obj)
method write_int x =
self#write_byte (0xFF land (x lsr 24));
self#write_byte (0xFF land (x lsr 16));
self#write_byte (0xFF land (x lsr 8));
self#write_byte (0xFF land (x lsr 0))
method virtual write_string : string -> unit
method virtual write_string_pos : buf:string -> pos:int -> len:int -> unit
method virtual write_char : char -> unit
method virtual write_byte : int -> unit
method write_int32 x =
for i = int32_size - 1 downto 0 do
let shifted = (Int32.shift_right_logical x (i * 8) ) in
self#write_byte (Int32.to_int (Int32.logand byte32 shifted))
done
method write_int64 x =
for i = int64_size - 1 downto 0 do
let shifted = (Int64.shift_right_logical x (i * 8) ) in
self#write_byte (Int64.to_int (Int64.logand byte64 shifted))
done
method write_float x =
let bits = Int64.bits_of_float x in
self#write_int64 bits
end
class virtual in_channel_obj =
object (self)
method upcast = (self :> in_channel_obj)
method virtual read_string_pos : buf:bytes -> pos:int -> len:int -> unit
method virtual read_char : char
method read_string len =
let buf = Bytes.create len in
self#read_string_pos ~buf ~pos:0 ~len;
Bytes.unsafe_to_string buf
method read_byte = int_of_char self#read_char
method read_int_size size = read_binary_int_internal self ~size
method read_int = read_binary_int_internal self ~size:int_size
method read_int32 = read_binary_int32_internal self ~size:int32_size
method read_int64 = read_binary_int64_internal self ~size:int64_size
method read_int64_size size = read_binary_int64_internal self ~size
method read_float =
let bits = read_binary_int64_internal self ~size:int64_size in
Int64.float_of_bits bits
end
(****************************************************)
class sys_out_channel cout =
object (self)
inherit out_channel_obj
method flush = flush cout
method close = close_out cout
method write_string str = output_string cout str
method write_string_pos ~buf ~pos ~len= output_substring cout buf pos len
method write_char char = output_char cout char
method write_byte byte = output_byte cout byte
method write_buf buf = Buffer.output_buffer cout buf
method outchan = cout
method fd = Unix.descr_of_out_channel cout
method skip n =
let skipped = Unix.lseek self#fd n ~mode:Unix.SEEK_CUR in
if skipped <> n then raise End_of_file
initializer
set_binary_mode_out cout true
end
(****************************************************)
class sys_in_channel cin =
let input = create_nb_really_input cin in
object (self)
inherit in_channel_obj
method close = close_in cin
method read_all = read_all cin ()
method read_string len = input len
method read_string_pos ~buf ~pos ~len =
let s = input len in
Bytes.blit_string s 0 buf pos len
method read_char =
input_char cin
method inchan = cin
method fd = Unix.descr_of_in_channel cin
initializer
set_binary_mode_in cin true
end
(****************************************************)
class buffer_out_channel buf =
object (self)
inherit out_channel_obj
method contents = Buffer.contents buf
method buffer_nocopy = buf
method write_string str = Buffer.add_string buf str
method write_string_pos ~buf:string ~pos ~len =
Buffer.add_substring buf string pos len
method write_char char = Buffer.add_char buf char
method write_byte byte = Buffer.add_char buf (char_of_int (0xFF land byte))
end
(****************************************************)
class string_in_channel string pos =
object (self)
inherit in_channel_obj
val slength = String.length string
val mutable pos = pos
method read_string len =
if pos + len > slength then raise End_of_file;
let rval = StringLabels.sub string ~pos ~len in
pos <- pos + len;
rval
method read_rest =
if pos >= slength then ""
else
let rval = StringLabels.sub string ~pos ~len:(slength - pos) in
pos <- slength;
rval
method read_string_pos ~buf ~pos:dst_pos ~len =
if pos + len > slength then raise End_of_file;
Bytes.blit_string string pos buf dst_pos len;
pos <- pos + len
method read_char =
if pos + 1 > slength then raise End_of_file;
let char = string.[pos] in
pos <- pos + 1;
char
method read_byte =
if pos + 1 > slength then raise End_of_file;
let byte = int_of_char string.[pos] in
pos <- pos + 1;
byte
method skip bytes =
if pos + bytes > slength then raise End_of_file;
pos <- pos + bytes
end
let new_buffer_outc size = new buffer_out_channel (Buffer.create size)
let sys_out_from_fd fd = new sys_out_channel (Unix.out_channel_of_descr fd)
let sys_in_from_fd fd = new sys_in_channel (Unix.in_channel_of_descr fd)
let sys_out_of_fd fd = sys_out_from_fd
let sys_in_of_fd fd = sys_in_from_fd
(****************************************************)
(* In Development: nonblocking operations *******)
(****************************************************)
(*
let mem_limit = 1024 * 1024 * 2 (* msgs can't be more than 2 megs *)
let sanity_check_length len =
if len < 0 then failwith "Channel.sanity_check_length: negative length";
if len > mem_limit then failwith
(Printf.sprintf
"Channel.sanity_check_length: length exceeds limit of %d bytes"
mem_limit)
(****************************************************)
type posbuf = { mutable pos: int;
data: string;
}
let nb_write fd b =
let len = String.length b.data in
assert (b.pos < len);
let bytes_written =
Unix.write fd ~buf:b.data ~pos:b.pos ~len:(len - b.pos)
in
b.pos <- b.pos + bytes_written;
if b.pos >= len then
begin
assert (b.pos = len);
true
end
else
false
let nb_read fd b =
let len = String.length b.data in
assert (b.pos < len);
let bytes_read =
Unix.read fd ~buf:b.data ~pos:b.pos ~len:(len - b.pos)
in
b.pos <- b.pos + bytes_read;
if b.pos >= len then
begin
assert (b.pos = len);
true
end
else
false
(****************************)
class nonblocking_reader fd =
object (self)
val lenbuf = { pos = 0; data = String.create int_size; }
val mutable databuf = { pos = 0; data = ""; }
val mutable data_ready = false
method private reset =
lenbuf.pos <- 0;
data_ready <- false;
databuf <- { pos = 0; data = ""; }
method private read_header =
if nb_read fd lenbuf
then
let len = Utils.int_from_bstring lenbuf.data
~pos:0 ~len:(String.length lenbuf.data)
in
databuf <- { pos = 0; data = String.create len; };
data_ready <- true;
self#read_data
else
None
method private read_data =
if nb_read fd databuf
then
let rval = Some (new string_in_channel databuf.data 0) in
self#reset;
rval
else None
method read = match data_ready with
| true -> self#read_header
| false -> self#read_data
initializer
Unix.set_nonblock fd
end
(**************************************************************)
let write_int_to_string str i =
str.[3] <- char_of_int (0xFF land (i lsl 24));
str.[2] <- char_of_int (0xFF land (i lsl 16));
str.[1] <- char_of_int (0xFF land (i lsl 8));
str.[0] <- char_of_int (0xFF land i)
(****************************)
type writestate = | Header | Data | Not_ready
class nonblocking_writer fd =
object (self)
val lenbuf = { pos = 0; data = String.create int_size; }
val mutable databuf = { pos = 0; data = ""; }
val mutable state = Not_ready
method set_data data =
state <- Header;
databuf <- { pos = 0; data = data; };
lenbuf.pos <- 0;
write_int_to_string lenbuf.data (String.length data)
method private reset =
state <- Not_ready;
databuf <- { pos = 0; data = ""; }
method private write_header =
if nb_write fd lenbuf
then (state <- Data; self#write_data)
else false
method private write_data =
if nb_write fd databuf
then (self#reset; true)
else false
method write = match state with
| Header -> self#write_header
| Data -> self#write_data
| Not_ready -> failwith "Write called when writer in Not_ready state"
initializer
Unix.set_nonblock fd
end
*)
|