Factor error message generation into a separate file; add '-tc' flag to domtool-client
[hcoop/zz_old/domtool2-proto.git] / src / main.sig
CommitLineData
e680130a 1(* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
ae3a5b8c 17 *)
e680130a 18
19(* Main interface *)
20
21signature MAIN = sig
22
53d222a3 23 val init : unit -> unit
12ad758b 24 val setupUser : unit -> string
e680130a 25
17ef447e 26 val check : string -> Env.env * Ast.exp option
27 val check' : Env.env -> string -> Env.env
f92c6883 28 val checkDir : string -> unit
17ef447e 29
30 val basis : unit -> Env.env
31
32 val reduce : string -> Ast.exp option
a11c0ff3 33 val eval : string -> unit
e680130a 34
1f8889bd 35 val request : string -> unit
c8a739af 36 val requestDir : string -> unit
37
93176f2b 38 val requestPing : unit -> OS.Process.status
4c68bd31 39 val requestShutdown : unit -> unit
e2130d9c 40 val requestGrant : Acl.acl -> unit
d1aa6a21 41 val requestRevoke : Acl.acl -> unit
646381db 42 val requestListPerms : string -> (string * string list) list option
d0e75410 43 val requestWhoHas : {class : string, value : string} -> string list option
aba1f07e 44 val requestRmdom : string list -> unit
f92c6883 45 val requestRegen : unit -> unit
aba1f07e 46 val requestRmuser : string -> unit
e2130d9c 47
aef9c54f 48 val requestSlavePing : unit -> OS.Process.status
49 val requestSlaveShutdown : unit -> unit
50
2569e66d 51 val service : unit -> unit
d330d9b8 52 val slave : unit -> unit
1f8889bd 53
e26d6b6e 54 val listBasis : unit -> string list
91c5a390 55 val autodocBasis : string -> unit
56
2bc895e7 57 val requestDbUser : {dbtype : string, passwd : string option} -> unit
dc6789fc 58 val requestDbPasswd : {dbtype : string, passwd : string} -> unit
d34cbcb8 59 val requestDbTable : {dbtype : string, dbname : string} -> unit
634d7082 60
0a58b2f3 61 val requestListMailboxes : string -> Vmail.listing
c45f1662 62 val requestNewMailbox : {domain : string, user : string,
63 passwd : string, mailbox : string} -> unit
64 val requestPasswdMailbox : {domain : string, user : string, passwd : string}
65 -> unit
66 val requestRmMailbox : {domain : string, user : string} -> unit
bb8cc8c9 67
68 val requestSaQuery : string -> unit
69 val requestSaSet : string * bool -> unit
c685120e 70
71 val requestSmtpLog : string -> unit
8301e970 72
73 val requestApt : {node : string, pkg : string} -> OS.Process.status
891b033c 74 val requestCron : {node : string, uname : string} -> OS.Process.status
75 val requestFtp : {node : string, uname : string} -> OS.Process.status
4ee81d53 76 val requestTrustedPath : {node : string, uname : string} -> OS.Process.status
9f063ecc 77 val requestSocketPerm : {node : string, uname : string} -> OS.Process.status
5514f5b5 78 val requestFirewall : {node : string, uname : string} -> OS.Process.status
e680130a 79end