2018-02-08 13:51:01 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
open Error_monad
|
2018-02-08 13:51:01 +04:00
|
|
|
|
|
|
|
let read_bytes ?(pos = 0) ?len fd buf =
|
|
|
|
let len = match len with None -> Bytes.length buf - pos | Some l -> l in
|
|
|
|
let rec inner pos len =
|
|
|
|
if len = 0 then
|
|
|
|
Lwt.return_unit
|
|
|
|
else
|
|
|
|
Lwt_unix.read fd buf pos len >>= function
|
|
|
|
| 0 -> Lwt.fail End_of_file (* other endpoint cleanly closed its connection *)
|
|
|
|
| nb_read -> inner (pos + nb_read) (len - nb_read)
|
|
|
|
in
|
|
|
|
inner pos len
|
|
|
|
|
|
|
|
let read_mbytes ?(pos=0) ?len fd buf =
|
|
|
|
let len = match len with None -> MBytes.length buf - pos | Some l -> l in
|
|
|
|
let rec inner pos len =
|
|
|
|
if len = 0 then
|
|
|
|
Lwt.return_unit
|
|
|
|
else
|
|
|
|
Lwt_bytes.read fd buf pos len >>= function
|
|
|
|
| 0 -> Lwt.fail End_of_file (* other endpoint cleanly closed its connection *)
|
|
|
|
| nb_read -> inner (pos + nb_read) (len - nb_read)
|
|
|
|
in
|
|
|
|
inner pos len
|
|
|
|
|
|
|
|
let write_mbytes ?(pos=0) ?len descr buf =
|
|
|
|
let len = match len with None -> MBytes.length buf - pos | Some l -> l in
|
|
|
|
let rec inner pos len =
|
|
|
|
if len = 0 then
|
|
|
|
Lwt.return_unit
|
|
|
|
else
|
|
|
|
Lwt_bytes.write descr buf pos len >>= function
|
|
|
|
| 0 -> Lwt.fail End_of_file (* other endpoint cleanly closed its connection *)
|
|
|
|
| nb_written -> inner (pos + nb_written) (len - nb_written) in
|
|
|
|
inner pos len
|
|
|
|
|
|
|
|
let write_bytes ?(pos=0) ?len descr buf =
|
|
|
|
let len = match len with None -> Bytes.length buf - pos | Some l -> l in
|
|
|
|
let rec inner pos len =
|
|
|
|
if len = 0 then
|
|
|
|
Lwt.return_unit
|
|
|
|
else
|
|
|
|
Lwt_unix.write descr buf pos len >>= function
|
|
|
|
| 0 -> Lwt.fail End_of_file (* other endpoint cleanly closed its connection *)
|
|
|
|
| nb_written -> inner (pos + nb_written) (len - nb_written) in
|
|
|
|
inner pos len
|
|
|
|
|
|
|
|
let (>>=) = Lwt.bind
|
|
|
|
|
|
|
|
let remove_dir dir =
|
|
|
|
let rec remove dir =
|
|
|
|
let files = Lwt_unix.files_of_directory dir in
|
|
|
|
Lwt_stream.iter_s
|
|
|
|
(fun file ->
|
|
|
|
if file = "." || file = ".." then
|
|
|
|
Lwt.return ()
|
|
|
|
else begin
|
|
|
|
let file = Filename.concat dir file in
|
|
|
|
if Sys.is_directory file
|
|
|
|
then remove file
|
|
|
|
else Lwt_unix.unlink file
|
|
|
|
end)
|
|
|
|
files >>= fun () ->
|
|
|
|
Lwt_unix.rmdir dir in
|
|
|
|
if Sys.file_exists dir && Sys.is_directory dir then
|
|
|
|
remove dir
|
|
|
|
else
|
|
|
|
Lwt.return ()
|
|
|
|
|
|
|
|
let rec create_dir ?(perm = 0o755) dir =
|
|
|
|
Lwt_unix.file_exists dir >>= function
|
|
|
|
| false ->
|
|
|
|
create_dir (Filename.dirname dir) >>= fun () ->
|
|
|
|
Lwt_unix.mkdir dir perm
|
|
|
|
| true ->
|
|
|
|
Lwt_unix.stat dir >>= function
|
|
|
|
| { st_kind = S_DIR ; _ } -> Lwt.return_unit
|
|
|
|
| _ -> Pervasives.failwith "Not a directory"
|
|
|
|
|
|
|
|
let create_file ?(perm = 0o644) name content =
|
|
|
|
Lwt_unix.openfile name Unix.([O_TRUNC; O_CREAT; O_WRONLY]) perm >>= fun fd ->
|
|
|
|
Lwt_unix.write_string fd content 0 (String.length content) >>= fun _ ->
|
|
|
|
Lwt_unix.close fd
|
|
|
|
|
|
|
|
let safe_close fd =
|
|
|
|
Lwt.catch
|
|
|
|
(fun () -> Lwt_unix.close fd)
|
|
|
|
(fun _ -> Lwt.return_unit)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let of_sockaddr = function
|
|
|
|
| Unix.ADDR_UNIX _ -> None
|
|
|
|
| Unix.ADDR_INET (addr, port) ->
|
|
|
|
match Ipaddr_unix.of_inet_addr addr with
|
|
|
|
| V4 addr -> Some (Ipaddr.v6_of_v4 addr, port)
|
|
|
|
| V6 addr -> Some (addr, port)
|
|
|
|
|
|
|
|
let getaddrinfo ~passive ~node ~service =
|
|
|
|
let open Lwt_unix in
|
|
|
|
getaddrinfo node service
|
|
|
|
( AI_SOCKTYPE SOCK_STREAM ::
|
|
|
|
(if passive then [AI_PASSIVE] else []) ) >>= fun addr ->
|
|
|
|
let points =
|
|
|
|
TzList.filter_map
|
|
|
|
(fun { ai_addr ; _ } -> of_sockaddr ai_addr)
|
|
|
|
addr in
|
|
|
|
Lwt.return points
|
2018-02-08 13:51:01 +04:00
|
|
|
|
|
|
|
|
|
|
|
module Json = struct
|
|
|
|
|
|
|
|
let to_root = function
|
|
|
|
| `O ctns -> `O ctns
|
|
|
|
| `A ctns -> `A ctns
|
|
|
|
| `Null -> `O []
|
|
|
|
| oth -> `A [ oth ]
|
|
|
|
|
|
|
|
let write_file file json =
|
|
|
|
let json = to_root json in
|
|
|
|
protect begin fun () ->
|
|
|
|
Lwt_io.with_file ~mode:Output file begin fun chan ->
|
|
|
|
let str = Data_encoding.Json.to_string ~minify:false json in
|
|
|
|
Lwt_io.write chan str >>= fun _ ->
|
|
|
|
return ()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
let read_file file =
|
|
|
|
protect begin fun () ->
|
|
|
|
Lwt_io.with_file ~mode:Input file begin fun chan ->
|
|
|
|
Lwt_io.read chan >>= fun str ->
|
|
|
|
return (Ezjsonm.from_string str :> Data_encoding.json)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2018-02-08 13:51:01 +04:00
|
|
|
|
|
|
|
module Protocol = struct
|
|
|
|
|
|
|
|
let name = "TEZOS_PROTOCOL"
|
|
|
|
|
|
|
|
open Protocol
|
|
|
|
|
|
|
|
let (//) = Filename.concat
|
|
|
|
|
|
|
|
let to_file ~dir:dirname ?hash ?env_version modules =
|
|
|
|
let config_file =
|
|
|
|
Data_encoding.Json.construct
|
|
|
|
Meta.encoding
|
|
|
|
{ hash ; expected_env_version = env_version ; modules } in
|
|
|
|
Json.write_file (dirname // name) config_file
|
|
|
|
|
|
|
|
let of_file ~dir:dirname =
|
|
|
|
Json.read_file (dirname // name) >>=? fun json ->
|
|
|
|
return (Data_encoding.Json.destruct Meta.encoding json)
|
|
|
|
|
|
|
|
let find_component dirname module_name =
|
|
|
|
let name_lowercase = String.uncapitalize_ascii module_name in
|
|
|
|
let implementation = dirname // name_lowercase ^ ".ml" in
|
|
|
|
let interface = implementation ^ "i" in
|
|
|
|
match Sys.file_exists implementation, Sys.file_exists interface with
|
|
|
|
| false, _ -> Pervasives.failwith @@ "Not such file: " ^ implementation
|
|
|
|
| true, false ->
|
|
|
|
let implementation = Utils.read_file ~bin:false implementation in
|
|
|
|
{ name = module_name; interface = None; implementation }
|
|
|
|
| _ ->
|
|
|
|
let interface = Utils.read_file ~bin:false interface in
|
|
|
|
let implementation = Utils.read_file ~bin:false implementation in
|
|
|
|
{ name = module_name; interface = Some interface; implementation }
|
|
|
|
|
|
|
|
let read_dir dir =
|
|
|
|
of_file ~dir >>=? fun meta ->
|
|
|
|
let components = List.map (find_component dir) meta.modules in
|
|
|
|
let expected_env =
|
|
|
|
match meta.expected_env_version with
|
|
|
|
| None -> V1
|
|
|
|
| Some v -> v in
|
|
|
|
let protocol = { expected_env ; components } in
|
|
|
|
let hash =
|
|
|
|
match meta.hash with
|
|
|
|
| None -> hash protocol
|
|
|
|
| Some hash -> hash in
|
|
|
|
return (hash, protocol)
|
|
|
|
|
|
|
|
open Lwt.Infix
|
|
|
|
|
|
|
|
let create_files dir units =
|
|
|
|
remove_dir dir >>= fun () ->
|
|
|
|
create_dir dir >>= fun () ->
|
|
|
|
Lwt_list.map_s
|
|
|
|
(fun { name ; interface ; implementation } ->
|
|
|
|
let name = String.lowercase_ascii name in
|
|
|
|
let ml = dir // (name ^ ".ml") in
|
|
|
|
let mli = dir // (name ^ ".mli") in
|
|
|
|
create_file ml implementation >>= fun () ->
|
|
|
|
match interface with
|
|
|
|
| None -> Lwt.return [ml]
|
|
|
|
| Some content ->
|
|
|
|
create_file mli content >>= fun () ->
|
|
|
|
Lwt.return [ mli ; ml ])
|
|
|
|
units >>= fun files ->
|
|
|
|
let files = List.concat files in
|
|
|
|
Lwt.return files
|
|
|
|
|
|
|
|
let write_dir dir ?hash (p: t) =
|
|
|
|
create_files dir p.components >>= fun _files ->
|
|
|
|
to_file
|
|
|
|
~dir
|
|
|
|
?hash
|
|
|
|
~env_version:p.expected_env
|
|
|
|
(List.map (fun { name ; _ } -> String.capitalize_ascii name) p.components)
|
|
|
|
|
|
|
|
end
|