urbit/include/v/vere.h

1232 lines
38 KiB
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* include/v/vere.h
**
** This file is in the public domain.
*/
/** Quasi-tunable parameters.
**/
/* First kernel this executable can boot.
*/
2014-01-07 00:37:42 +04:00
# define FirstKernel 164
# define DefaultKernel 164
2014-03-14 21:47:17 +04:00
2013-09-29 00:21:18 +04:00
#define RECK
/** Data types.
**/
struct _u2_http;
/* u2_hhed: http header.
*/
typedef struct _u2_hhed {
struct _u2_hhed* nex_u;
c3_c* nam_c;
c3_c* val_c;
} u2_hhed;
/* u2_hbod: http body block. Also used for responses.
*/
typedef struct _u2_hbod {
2014-03-14 21:47:17 +04:00
struct _u2_hbod* nex_u;
2013-09-29 00:21:18 +04:00
c3_w len_w;
c3_y hun_y[0];
} u2_hbod;
/* u2_hrat: http parser state.
*/
typedef enum {
2014-03-14 21:47:17 +04:00
u2_hreq_non,
2013-09-29 00:21:18 +04:00
u2_hreq_nam,
u2_hreq_val
} u2_hrat;
2014-02-27 04:37:47 +04:00
/* u2_csat: client connection state.
*/
typedef enum {
u2_csat_dead = 0, // connection dead
u2_csat_addr = 1, // connection addressed
u2_csat_clyr = 2, // connection open in cleartext
u2_csat_crop = 3, // connection open, ssl needs hs
u2_csat_sing = 4, // connection handshaking ssl
u2_csat_cryp = 5, // connection open, ssl open
2014-02-27 04:37:47 +04:00
} u2_csat;
2013-09-29 00:21:18 +04:00
/* u2_hmet: http method. Matches jhttp encoding.
*/
typedef enum {
u2_hmet_delete,
u2_hmet_get,
u2_hmet_head,
u2_hmet_post,
u2_hmet_put,
2014-02-27 04:37:47 +04:00
u2_hmet_nop, // virtual method
2013-09-29 00:21:18 +04:00
u2_hmet_other // ie, unsupported
} u2_hmet;
2014-03-14 21:47:17 +04:00
2013-09-29 00:21:18 +04:00
/* u2_hreq: incoming http request.
*/
typedef struct _u2_hreq {
struct _u2_hcon* hon_u; // connection
c3_w seq_l; // sequence within connection
u2_hmet met_e; // method
u2_hrat rat_e; // parser state
void* par_u; // struct http_parser *
c3_c* url_c; // url
c3_w ipf_w; // ipv4
2013-09-29 00:21:18 +04:00
u2_bean liv; // keepalive
u2_bean end; // all responses added
2014-03-14 21:47:17 +04:00
u2_hhed* hed_u; // headers
2014-03-03 23:51:35 +04:00
u2_hbod* bod_u; // body parts (exit)
u2_hbod* dob_u; // body parts (entry)
2013-09-29 00:21:18 +04:00
struct _u2_hreq* nex_u; // next in request queue
u2_hbod* rub_u; // exit of write queue
u2_hbod* bur_u; // entry of write queue
} u2_hreq;
/* u2_hrep: outgoing http response.
*/
typedef struct _u2_hrep {
2014-03-20 02:40:40 +04:00
c3_w sev_l; // server number
2013-09-29 00:21:18 +04:00
c3_w coq_l; // connection number
c3_w seq_l; // request number
c3_w sas_w; // status
u2_hhed* hed_u; // headers
u2_hbod* bod_u; // body (one part)
} u2_hrep;
/* u2_hcon: incoming http connection.
*/
typedef struct _u2_hcon {
uv_tcp_t wax_u; // event handler state
c3_w coq_l; // connection number
c3_w seq_l; // next request number
2014-03-14 21:47:17 +04:00
struct _u2_http* htp_u; // backlink to server
2013-09-29 00:21:18 +04:00
struct _u2_hcon* nex_u; // next in server's list
struct _u2_hreq* ruc_u; // request under construction
struct _u2_hreq* req_u; // exit of request queue
struct _u2_hreq* qer_u; // entry of request queue
} u2_hcon;
/* u2_http: http server.
*/
typedef struct _u2_http {
uv_tcp_t wax_u; // event handler state
c3_w sev_l; // server number
c3_w coq_l; // next connection number
c3_w por_w; // running port
2014-03-20 02:40:40 +04:00
u2_bean sec; // logically secure
2013-09-29 00:21:18 +04:00
struct _u2_hcon* hon_u; // connection list
struct _u2_http* nex_u; // next in list
} u2_http;
2014-02-27 04:37:47 +04:00
/* u2_cres: response to http client.
*/
typedef struct _u2_cres {
u2_hrat rat_e; // parser state
void* par_u; // struct http_parser *
c3_w sas_w; // status code
2014-03-14 21:47:17 +04:00
u2_hhed* hed_u; // headers
2014-03-03 23:51:35 +04:00
u2_hbod* bod_u; // exit of body queue
u2_hbod* dob_u; // entry of body queue
2014-02-27 04:37:47 +04:00
} u2_cres;
2013-09-29 00:21:18 +04:00
/* u2_creq: outgoing http request.
*/
typedef struct _u2_creq { // client request
2014-02-27 04:37:47 +04:00
c3_l num_l; // request number
2014-03-03 02:31:03 +04:00
c3_c* hot_c; // host
c3_s por_s; // port
2013-09-29 00:21:18 +04:00
c3_c* url_c; // url
2014-02-27 04:37:47 +04:00
u2_bean sec; // yes == https
2013-09-29 00:21:18 +04:00
u2_hmet met_e; // method
u2_hhed* hed_u; // headers
u2_hbod* bod_u; // body
2014-02-27 04:37:47 +04:00
u2_cres* res_u; // nascent response
struct _u2_ccon* coc_u; // parent connection
2013-10-30 22:26:51 +04:00
struct _u2_creq* nex_u; // next in queue
2013-09-29 00:21:18 +04:00
} u2_creq;
/* u2_sslx: per-connection ssl context.
*/
typedef struct _u2_sslx {
void* ssl_u; // struct SSL*
void* rio_u; // struct BIO* for read
void* wio_u; // struct BIO* for write
} u2_sslx;
2013-09-29 00:21:18 +04:00
/* u2_ccon: outgoing http connection.
*/
typedef struct _u2_ccon { // client connection
uv_tcp_t wax_u; // i/o handler state
2014-03-14 21:47:17 +04:00
uv_connect_t cot_u; // connection handler state
2014-02-27 04:37:47 +04:00
uv_getaddrinfo_t adr_u; // resolver state
u2_sslx ssl; // ssl state
2014-02-27 04:37:47 +04:00
u2_csat sat_e; // connection state
2014-03-03 02:31:03 +04:00
c3_c* hot_c; // hostname
2013-10-30 22:26:51 +04:00
c3_s por_s; // port
2014-02-27 04:37:47 +04:00
c3_w ipf_w; // IP
2013-09-29 00:21:18 +04:00
u2_bean sec; // yes == https
2013-10-30 22:26:51 +04:00
u2_hbod* rub_u; // exit of send queue
u2_hbod* bur_u; // entry of send queue
u2_creq* ceq_u; // exit of request queue
u2_creq* qec_u; // entry of request queue
2013-09-29 00:21:18 +04:00
struct _u2_ccon* pre_u; // previous in list
struct _u2_ccon* nex_u; // next in list
} u2_ccon;
2014-02-27 04:37:47 +04:00
/* u2_chot: foreign host (not yet used).
*/
typedef struct _u2_chot {
c3_w ipf_w; // ip address (or 0)
2014-03-03 02:31:03 +04:00
c3_c* hot_c; // hostname (no port) (or 0)
2014-02-27 04:37:47 +04:00
struct _u2_ccon* ins_u; // insecure connection (or 0)
struct _u2_ccon* sec_u; // secure connection (or 0)
} u2_chot;
2013-09-29 00:21:18 +04:00
/* u2_cttp: http client.
*/
typedef struct _u2_cttp {
2013-10-30 22:26:51 +04:00
struct _u2_ccon* coc_u; // connection list
2013-09-29 00:21:18 +04:00
} u2_cttp;
/* u2_apac: ames packet, coming or going.
*/
typedef struct _u2_apac {
struct _u2_apac* nex_u; // next in queue
c3_w pip_w; // IPv4 address, to
c3_s por_s; // IPv4 port, to
c3_w len_w; // length in bytes
c3_y hun_y[0]; // data
} u2_apac;
/* u2_ames: ames networking.
*/
typedef struct _u2_ames { // packet network state
uv_udp_t wax_u; // socket state
uv_timer_t tim_u; // network timer
u2_bean alm; // alarm on
c3_s por_s; // public IPv4 port
c3_w imp_w[256]; // imperial IPs
} u2_ames;
/* u2_save: checkpoint control.
*/
typedef struct _u2_save {
2013-10-14 22:23:55 +04:00
uv_timer_t tim_u; // checkpoint timer
uv_signal_t sil_u; // child signal
c3_w ent_w; // event number, XX 64
c3_w pid_w; // pid of checkpoint process
2013-09-29 00:21:18 +04:00
} u2_save;
/* u2_ubuf: unix tty i/o buffer.
*/
typedef struct _u2_ubuf {
2014-03-14 21:47:17 +04:00
struct _u2_ubuf* nex_u;
2013-09-29 00:21:18 +04:00
c3_w len_w;
c3_y hun_y[0]; // bytes to send
} u2_ubuf;
/* u2_utat: unix terminal state.
*/
typedef struct {
struct {
c3_l col_l; // columns
c3_l row_l; // rows
} siz;
struct {
c3_w* lin_w; // current line (utf32)
c3_w len_w; // length of current line
c3_w cus_w; // cursor position
} mir;
struct { // escape code control
2014-03-14 21:47:17 +04:00
u2_bean ape; // escape received
2013-09-29 00:21:18 +04:00
u2_bean bra; // bracket or O received
} esc;
struct {
c3_y syb_y[5]; // utf8 code buffer
c3_w len_w; // present length
c3_w wid_w; // total width
} fut;
} u2_utat;
/* u2_uled: event log header.
*/
typedef struct {
c3_l mag_l; // mug of log format, 'a', 'b'...
c3_w kno_w; // kernel number validated with
c3_l sal_l; // salt for passcode
c3_l key_l; // mug of crypto key, or 0
c3_l sev_l; // host process identity
c3_l tno_l; // terminal count in host
} u2_uled;
/* u2_olar: event log trailer, old version.
*/
typedef struct {
c3_w syn_w; // must equal mug of address
c3_w ent_w; // event sequence number
c3_w len_w; // word length of this event
c3_w mug_w; // mug of entry
} u2_olar;
2013-09-29 00:21:18 +04:00
/* u2_ular: event log trailer.
*/
typedef struct {
c3_w syn_w; // must equal mug of address
c3_w ent_w; // event sequence number
c3_w len_w; // word length of this event
c3_w mug_w; // mug of entry
c3_w tem_w; // raft term of event
c3_w typ_w; // type of event, %ra|%ov
2013-09-29 00:21:18 +04:00
} u2_ular;
/* u2_ulog: unix event log.
*/
typedef struct {
c3_i fid_i; // file descriptor
2014-01-27 22:48:55 +04:00
c3_d len_d; // length in words
2013-09-29 00:21:18 +04:00
} u2_ulog;
struct _u2_uhot;
struct _u2_udir;
struct _u2_ufil;
/* u2_unod: file or directory.
*/
typedef struct _u2_unod {
uv_fs_event_t was_u; // stat watcher
2014-03-14 21:47:17 +04:00
u2_bean dir; // always
2013-09-29 00:21:18 +04:00
u2_bean dry; // ie, unmodified
c3_c* pax_c; // absolute path
struct _u2_udir* par_u; // in directory
} u2_unod;
/* u2_ufil: synchronized file.
*/
typedef struct _u2_ufil {
uv_fs_event_t was_u; // stat watcher
u2_bean non; // always u2_no
u2_bean dry; // ie, unmodified
c3_c* pax_c; // absolute path
struct _u2_udir* par_u; // in directory
c3_c* dot_c; // extension point or 0
mpz_t mod_mp; // mtime as @da
struct _u2_ufil* nex_u; // internal list
} u2_ufil;
/* u2_udir: synchronized directory.
*/
typedef struct _u2_udir {
uv_fs_event_t was_u; // stat watcher
u2_bean yes; // always u2_yes
u2_bean dry; // ie, unmodified
c3_c* pax_c; // absolute path
struct _u2_udir* par_u; // parent directory
struct _u2_udir* dis_u; // subdirectories
struct _u2_ufil* fil_u; // files
struct _u2_udir* nex_u; // internal list
} u2_udir;
/* u2_uhot: synchronized host.
*/
typedef struct _u2_uhot {
u2_udir dir_u; // root directory
mpz_t who_mp; // owner as GMP
struct _u2_uhot* nex_u; // internal list
} u2_uhot;
/* u2_usig: receive signals.
*/
typedef struct _u2_usig {
uv_signal_t sil_u;
c3_i num_i;
struct _u2_usig* nex_u;
} u2_usig;
2014-03-14 21:47:17 +04:00
/* u2_unix: clay support system, also
2013-09-29 00:21:18 +04:00
*/
typedef struct _u2_unix {
uv_timer_t tim_u; // clay timer
u2_bean alm; // alarm
u2_uhot* hot_u; // host state
u2_usig* sig_u; // signal list
} u2_unix;
/* u2_batz: just a timer for now
*/
typedef struct _u2_batz {
2013-11-21 10:43:12 +04:00
uv_timer_t tim_u; // clay timer
c3_w run_w; // run of consecutive alarms
u2_bean alm; // alarm
2013-09-29 00:21:18 +04:00
} u2_batz;
/* u2_utfo: unix terminfo strings.
*/
typedef struct {
struct {
const c3_y* kcuu1_y; // key_up
2014-03-14 21:47:17 +04:00
const c3_y* kcud1_y; // key_down
2013-09-29 00:21:18 +04:00
const c3_y* kcub1_y; // key_back
const c3_y* kcuf1_y; // key_forward
c3_w max_w; // maximum input sequence length
} inn;
struct {
const c3_y* clear_y; // clear_screen
2014-03-14 21:47:17 +04:00
const c3_y* el_y; // clr_bol clear to beginning
2013-09-29 00:21:18 +04:00
// const c3_y* el1_y; // clr_eol clear to end
const c3_y* ed_y; // clear to end of screen
const c3_y* bel_y; // bel sound bell
const c3_y* cub1_y; // parm_left
const c3_y* cuf1_y; // parm_right
const c3_y* cuu1_y; // parm_up
const c3_y* cud1_y; // parm_down
// const c3_y* cub_y; // parm_left_cursor #num
2014-03-14 21:47:17 +04:00
// const c3_y* cuf_y; // parm_right_cursor #num
2013-09-29 00:21:18 +04:00
} out;
} u2_utfo;
#if 0
/* u2_uwen: unix alarm.
*/
typedef struct _u2_uwen {
c3_y* pax_y; // printed path
c3_d wen_d[2]; // timer expire
};
/* u2_utim: unix timer control.
*/
typedef struct _u2_utim {
uv_timer_t wat_u; // libev timer control
u2_uwen* wen_u; // timers in ascending order
};
#endif
/* u2_utty: unix tty.
*/
typedef struct _u2_utty {
#if 0
uv_tty_t wax_u; // event handler state
#else
2013-12-19 21:45:41 +04:00
union {
uv_poll_t wax_u;
uv_pipe_t pop_u;
};
2013-09-29 00:21:18 +04:00
#endif
struct termios bak_u; // cooked terminal state
struct termios raw_u; // raw terminal state
c3_i fid_i; // file descriptor
# if 1
c3_i cug_i; // blocking fcntl flags
c3_i nob_i; // nonblocking fcntl flags
# endif
c3_w tid_l; // terminal identity number
u2_utfo ufo_u; // terminfo strings
# if 1
u2_ubuf* tou_u; // entry of output queue
u2_ubuf* out_u; // exit of output queue
# endif
u2_utat tat_u; // control state
struct _u2_utty* nex_u; // next in host list
} u2_utty;
/* u2_raty: raft server type.
*/
typedef enum {
u2_raty_none,
u2_raty_foll,
u2_raty_cand,
u2_raty_lead
} u2_raty;
/* u2_raft: raft state.
*/
typedef struct {
2014-03-12 23:25:45 +04:00
uv_tcp_t wax_u; // TCP listener
uv_timer_t tim_u; // election/heartbeat timer
u2_ulog lug_u; // event log
c3_w ent_w; // last log index
c3_w lat_w; // last log term
u2_raty typ_e; // server type
struct _u2_rnam* nam_u; // list of peers
struct _u2_rcon* run_u; // unknown connections
c3_w pop_w; // population count
c3_w vot_w; // votes in this election
c3_c* str_c; // our name
// persistent state
c3_w tem_w; // current term
c3_c* vog_c; // who we voted for this term
// end persistent state
} u2_raft;
2014-03-05 05:43:40 +04:00
/* u2_rreq: raft request.
*/
typedef struct _u2_rreq {
struct _u2_rmsg* msg_u;
struct _u2_rreq* nex_u;
struct _u2_rcon* ron_u;
} u2_rreq;
/* u2_rbuf: raft input buffer.
*/
typedef struct _u2_rbuf {
c3_w len_w;
c3_w cap_w;
c3_y buf_y[0];
} u2_rbuf;
2014-02-27 03:46:34 +04:00
/* u2_rcon: raft connection.
*/
typedef struct _u2_rcon {
2014-03-12 23:25:45 +04:00
uv_tcp_t wax_u; // TCP handle
struct _u2_rnam* nam_u; // peer we're connected to
u2_rbuf* red_u; // read buffer
u2_bean red; // u2_yes on new data
u2_rbuf* wri_u; // write buffer
u2_raft* raf_u; // back-reference to server
u2_rreq* out_u; // exit of request queue
u2_rreq* tou_u; // entry of request queue
struct _u2_rcon* nex_u; // pointer to next con
u2_bean liv; // are we live?
2014-02-27 03:46:34 +04:00
} u2_rcon;
/* u2_rnam: raft peer name.
*/
typedef struct _u2_rnam {
2014-03-12 23:25:45 +04:00
c3_c* str_c; // our name
c3_c* nam_c; // hostname
c3_c* por_c; // port
u2_rcon* ron_u; // connection
struct _u2_rnam* nex_u; // pointer to next peer
u2_bean vog; // did they vote for us?
} u2_rnam;
/* u2_opts:
2013-09-29 00:21:18 +04:00
*/
typedef struct _u2_opts {
c3_c* cpu_c;
c3_c* imp_c;
2014-03-14 21:47:17 +04:00
c3_c* hom_c;
2014-01-17 21:42:47 +04:00
c3_c* nam_c;
c3_c* raf_c;
2013-09-29 00:21:18 +04:00
c3_w kno_w;
c3_w fuz_w;
2014-01-15 21:16:50 +04:00
c3_s por_s;
c3_s rop_s;
2013-09-29 00:21:18 +04:00
u2_bean abo;
2014-01-16 05:41:30 +04:00
u2_bean bat;
2013-09-29 00:21:18 +04:00
u2_bean gab;
u2_bean dem;
u2_bean loh;
u2_bean pro;
u2_bean veb;
u2_bean pas;
u2_bean rez;
u2_bean sow;
u2_bean nuu;
u2_bean vno;
2013-09-29 00:21:18 +04:00
} u2_opts;
/* u2_host: entire host.
*/
typedef struct _u2_host {
u2_wire wir_r; // noun system, 1 per thread
c3_w kno_w; // current executing stage
c3_c* cpu_c; // computer path
c3_d now_d; // event tick
uv_loop_t* lup_u; // libuv event loop
u2_http* htp_u; // http servers
2014-02-27 04:37:47 +04:00
u2_cttp ctp_u; // http clients
2014-03-14 21:47:17 +04:00
u2_utty* uty_u; // all terminals
2013-09-29 00:21:18 +04:00
u2_utty* tem_u; // main terminal (1)
u2_ames sam_u; // packet interface
u2_save sav_u; // autosave
u2_opts ops_u; // commandline options
u2_unix unx_u; // sync and clay
u2_batz beh_u; // batz timer
u2_bean liv; // if u2_no, shut down
void* ssl_u; // struct SSL_CTX*
2013-09-29 00:21:18 +04:00
u2_reck* arv_u; // runtime
} u2_host; // host == computer == process
# define u2L u2_Host.lup_u // global event loop
# define u2R (&(u2_Raft))
# define u2S u2_Host.ssl_u
2013-09-29 00:21:18 +04:00
/* u2_funk: standard system function.
*/
typedef u2_noun (*u2_funk)(u2_reck* rec_u, u2_noun);
/** Global variables.
**/
c3_global u2_host u2_Host;
c3_global u2_wire u2_Wire;
c3_global u2_raft u2_Raft;
2013-09-29 00:21:18 +04:00
c3_global c3_c* u2_Local;
c3_global c3_c* u2_System;
c3_global u2_bean u2_Flag_Abort;
c3_global u2_bean u2_Flag_Garbage;
c3_global u2_bean u2_Flag_Profile;
c3_global u2_bean u2_Flag_Verbose;
# define u2_ve_at() ( &u2_Host.ver_e[u2_Host.kno_w] )
/** Functions.
**/
/* Urbit time: 128 bits, leap-free.
**
** High 64 bits: 0x8000.000c.cea3.5380 + Unix time at leap 25 (Jul 2012)
** Low 64 bits: 1/2^64 of a second.
**
** Seconds per Gregorian 400-block: 12.622.780.800
** 400-blocks from 0 to 0AD: 730.692.561
** Years from 0 to 0AD: 292.277.024.400
** Seconds from 0 to 0AD: 9.223.372.029.693.628.800
** Seconds between 0A and Unix epoch: 62.167.219.200
** Seconds before Unix epoch: 9.223.372.091.860.848.000
** The same, in C hex notation: 0x8000000cce9e0d80ULL
**
** New leap seconds after July 2012 (leap second 25) are ignored. The
** platform OS will not ignore them, of course, so they must be detected
** and counteracted. Perhaps this phenomenon will soon find an endpoint.
*/
2014-03-14 21:47:17 +04:00
/* u2_time_sec_in(): urbit seconds from unix time.
2013-09-29 00:21:18 +04:00
**
** Adjust (externally) for future leap secs!
*/
c3_d
u2_time_sec_in(c3_w unx_w);
2014-03-14 21:47:17 +04:00
/* u2_time_sec_out(): unix time from urbit seconds.
2013-09-29 00:21:18 +04:00
**
** Adjust (externally) for future leap secs!
*/
c3_w
u2_time_sec_out(c3_d urs_d);
/* u2_time_fsc_in(): urbit fracto-seconds from unix microseconds.
*/
c3_d
u2_time_fsc_in(c3_w usc_w);
/* u2_time_fsc_out: unix microseconds from urbit fracto-seconds.
*/
c3_w
u2_time_fsc_out(c3_d ufc_d);
/* u2_time_in_tv(): urbit time from struct timeval.
*/
u2_atom
u2_time_in_tv(struct timeval* tim_tv);
/* u2_time_out_tv(): struct timeval from urbit time.
*/
void
u2_time_out_tv(struct timeval* tim_tv, u2_noun now);
/* u2_time_in_ts(): urbit time from struct timespec.
*/
u2_atom
u2_time_in_ts(struct timespec* tim_ts);
#if defined(U2_OS_linux)
/* u2_time_t_in_ts(): urbit time from time_t.
*/
u2_atom
u2_time_t_in_ts(time_t tim);
#endif
/* u2_time_out_ts(): struct timespec from urbit time.
*/
void
u2_time_out_ts(struct timespec* tim_ts, u2_noun now);
/* u2_time_gap_ms(): (wen - now) in ms.
*/
c3_d
u2_time_gap_ms(u2_noun now, u2_noun wen);
/** Filesystem (new api).
**/
/* u2_walk_load(): load file or bail.
*/
u2_noun
u2_walk_load(c3_c* pas_c);
/* u2_walk_safe(): load file or 0.
*/
u2_noun
u2_walk_safe(c3_c* pas_c);
/* u2_walk_save(): save file or bail.
*/
void
u2_walk_save(c3_c* pas_c, u2_noun tim, u2_atom pad);
/* u2_sync_reck(): traverse filesystem for changes -> lamb
*/
u2_noun
u2_sync_reck(u2_reck* rec_u);
/* u2_walk(): traverse `dir_c` to produce an arch, updating `old`.
*/
u2_noun
u2_walk(u2_reck* rec_u, const c3_c* dir_c, u2_noun old);
2014-03-14 21:47:17 +04:00
/* u2_path(): C unix path in computer for file or directory.
2013-09-29 00:21:18 +04:00
*/
c3_c*
u2_path(u2_bean fyl, u2_noun pax);
/** Filesystem (old api).
**/
/* u2_ve_file(): load internal file as atom from local or system.
*/
u2_weak
u2_ve_file(c3_c* ext_c, u2_noun tah);
/* u2_ve_frep(): load [.~ %rep myp {now} tah].
**
** File is either ~ or [nbytes mdate atom].
*/
u2_noun
u2_ve_frep(u2_noun myp, u2_noun tah);
/* u2_ve_date(): date internal file.
*/
c3_d
u2_ve_date(c3_c* ext_c, u2_noun tah);
/* u2_ve_save(): save internal file as atom.
*/
u2_bean
u2_ve_save(c3_c* ext_c, u2_noun tah, u2_noun dat);
/* u2_ve_zeus(): prayer to internal file path. Return unit.
*/
u2_noun
u2_ve_zeus(u2_noun hap);
/** Output.
**/
/* u2_ve_tank(): print a tank at `tab`.
*/
void
u2_ve_tank(c3_l tab_l, u2_noun tac);
/** Kernel control.
**/
/* u2_reck_do(): use a kernel function.
*/
# define u2_do(t, a) u2_reck_do(t, a)
# define u2_dc(t, a1, a2) u2_reck_do(t, u2nc(a1, a2))
# define u2_dt(t, a1, a2, a3) u2_reck_do(t, u2nt(a1, a2, a3))
# define u2_dq(t, a1, a2, a3, a4) u2_reck_do(t, u2nq(a1, a2, a3, a4))
u2_noun
u2_reck_do(const c3_c* txt_c, u2_noun arg);
/* u2_reck_line(): apply a reck line (protected).
*/
void
u2_reck_line(u2_reck* rec_u, u2_noun lin);
/* u2_reck_numb(): set the instance number.
*/
void
u2_reck_numb(u2_reck* rec_u);
/* u2_reck_http_request(): hear http request on channel.
*/
void
2014-03-14 21:47:17 +04:00
u2_reck_http_request(u2_reck* rec_u,
2013-09-29 00:21:18 +04:00
u2_bean sec,
2014-03-14 21:47:17 +04:00
u2_noun pox,
2013-09-29 00:21:18 +04:00
u2_noun req);
/* u2_reck_http_respond(): apply http response.
*/
void
u2_reck_http_respond(u2_reck* rec_u, u2_noun pox, u2_noun rep);
/* u2_reck_boot(): boot the reck engine (unprotected).
*/
void
u2_reck_boot(u2_reck* rec_u);
/* u2_reck_launch(): launch the reck engine (unprotected).
*/
u2_bean
u2_reck_launch(u2_reck* rec_u);
/* u2_reck_nick(): transform enveloped packets, [vir cor].
*/
u2_noun
u2_reck_nick(u2_reck* rec_u, u2_noun vir, u2_noun cor);
2013-09-29 00:21:18 +04:00
/* u2_reck_peek(): query the reck namespace (protected).
*/
u2_noun
2014-01-06 04:02:34 +04:00
u2_reck_peek(u2_reck* rec_u, u2_noun hap);
2013-09-29 00:21:18 +04:00
/* u2_reck_keep(): measure timer.
*/
2014-03-14 21:47:17 +04:00
u2_noun
2013-09-29 00:21:18 +04:00
u2_reck_keep(u2_reck* rec_u, u2_noun hap);
/* u2_reck_pike(): poke with floating core.
*/
u2_noun
u2_reck_pike(u2_reck* rec_u, u2_noun ovo, u2_noun cor);
2013-09-29 00:21:18 +04:00
/* u2_reck_poke(): insert and apply an input ovum (protected).
*/
u2_noun
u2_reck_poke(u2_reck* rec_u, u2_noun ovo);
/* u2_reck_prick(): query the reck namespace (unprotected).
*/
u2_noun
2014-01-06 04:02:34 +04:00
u2_reck_prick(u2_reck* rec_u, u2_noun hap);
2013-09-29 00:21:18 +04:00
/* u2_reck_kick(): handle effect.
*/
void
u2_reck_kick(u2_reck* rec_u, u2_noun ovo);
/* u2_reck_sync(): poll and apply sync events (protected).
*/
void
u2_reck_sync(u2_reck* rec_u);
/* u2_reck_time(): set the reck time.
*/
void
u2_reck_time(u2_reck* rec_u);
2014-03-14 21:47:17 +04:00
2013-09-29 00:21:18 +04:00
/* u2_reck_wind(): set the reck time artificially.
*/
void
u2_reck_wind(u2_reck* rec_u, u2_noun now);
/* u2_reck_plan(): queue ovum (external).
*/
void
u2_reck_plan(u2_reck* rec_u,
u2_noun pax,
u2_noun fav);
/* u2_reck_plow(): queue ovum list in order (external).
*/
void
u2_reck_plow(u2_reck* rec_u, u2_noun ova);
/* u2_reck_work(): flush ova (unprotected).
*/
void
u2_reck_work(u2_reck* rec_u);
/** Main loop, new style.
**/
2014-03-01 02:52:00 +04:00
/* u2_lo_loop(): enter main event loop.
2014-01-16 05:41:30 +04:00
*/
void
2014-03-01 02:52:00 +04:00
u2_lo_loop(void);
2014-01-16 05:41:30 +04:00
2014-03-01 02:52:00 +04:00
/* u2_lo_lead(): actions on promotion to leader.
2013-09-29 00:21:18 +04:00
*/
void
2014-03-01 02:52:00 +04:00
u2_lo_lead(u2_reck* rec_u);
2013-09-29 00:21:18 +04:00
/* u2_lo_exit(): shut down io across pier.
*/
void
u2_lo_exit(void);
2013-09-29 00:21:18 +04:00
/* u2_lo_show(): print typeless noun.
*/
void
u2_lo_show(c3_c* cap_c, u2_noun nun);
#define u2ls(cap_c, nun) u2_lo_show(cap_c, nun)
/* u2_lo_bail(): clean up all event state.
*/
void
u2_lo_bail(u2_reck* rec_u);
/* u2_lo_tank(): dump single tank.
*/
void
u2_lo_tank(c3_l tab_l, u2_noun tac);
/* u2_lo_punt(): dump tank list.
*/
void
u2_lo_punt(c3_l tab_l, u2_noun tac);
/* u2_lo_sway(): print trace.
*/
void
u2_lo_sway(c3_l tab_l, u2_noun tax);
/* u2_lo_soft(): standard soft wrapper. Unifies unix and nock errors.
**
** Produces [%$ result] or %error (list tank)].
*/
u2_noun
u2_lo_soft(u2_reck* rec_u, c3_w sec_w, u2_funk fun_f, u2_noun arg);
2013-11-09 03:37:38 +04:00
/* u2_lo_grab(): garbage-collect the world, plus roots; end with u2_none
2013-09-29 00:21:18 +04:00
*/
void
2013-11-09 03:37:38 +04:00
u2_lo_grab(c3_c* cap_c, u2_noun som, ...);
2013-09-29 00:21:18 +04:00
/* u2_lo_open(): begin callback processing.
*/
void
u2_lo_open(void);
/* u2_lo_shut(): end callback processing.
*/
void
u2_lo_shut(u2_bean);
/** Terminal, new style.
**/
/* u2_term_get_blew(): return window size [columns rows].
*/
u2_noun
u2_term_get_blew(c3_l tid_l);
/* u2_term_ef_boil(): initial effects for restored server.
*/
void
u2_term_ef_boil(c3_l ono_l);
/* u2_term_ef_winc(): window change.
*/
void
u2_term_ef_winc(void);
/* u2_term_ef_ctlc(): send ^C.
*/
void
u2_term_ef_ctlc(void);
2014-03-14 21:47:17 +04:00
2013-09-29 00:21:18 +04:00
/* u2_term_ef_bake(): initial effects for new server.
*/
void
u2_term_ef_bake(u2_noun fav);
/* u2_term_ef_blit(): send %blit effect to to terminal.
*/
void
u2_term_ef_blit(c3_l tid_l,
u2_noun blt);
/* u2_term_io_init(): initialize terminal I/O.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_term_io_init(void);
/* u2_term_io_exit(): terminate terminal I/O.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_term_io_exit(void);
/* u2_term_io_poll(): update terminal IO state.
*/
void
u2_term_io_poll(void);
2014-03-14 21:47:17 +04:00
2013-09-29 00:21:18 +04:00
/* u2_term_io_hija(): hijack console for cooked print.
*/
FILE*
u2_term_io_hija(void);
/* u2_term_io_loja(): release console from cooked print.
*/
void
u2_term_io_loja(int x);
/* uL, uH: wrap hijack/lojack around fprintf.
**
** uL(fprintf(uH, ...));
*/
# define uH u2_term_io_hija()
# define uL(x) u2_term_io_loja(x)
/** Ames, packet networking.
**/
/* u2_ames_ef_send(): send packet to network.
*/
void
u2_ames_ef_send(u2_noun lan,
u2_noun pac);
/* u2_ames_io_init(): initialize ames I/O.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_ames_io_init(void);
2014-01-17 12:12:05 +04:00
/* u2_ames_io_talk(): bring up listener.
*/
void
u2_ames_io_talk(void);
2013-09-29 00:21:18 +04:00
/* u2_ames_io_exit(): terminate ames I/O.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_ames_io_exit(void);
/* u2_ames_io_poll(): update ames IO state.
*/
void
u2_ames_io_poll(void);
/** Autosave.
**/
2013-10-04 00:38:37 +04:00
/* u2_save_ef_chld(): report SIGCHLD.
*/
void
u2_save_ef_chld(void);
2013-09-29 00:21:18 +04:00
/* u2_save_io_init(): initialize autosave.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_save_io_init(void);
/* u2_save_io_exit(): terminate autosave.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_save_io_exit(void);
/* u2_save_io_poll(): update autosave state.
*/
void
u2_save_io_poll(void);
/** Storage, new school.
**/
2014-03-14 21:47:17 +04:00
/* u2_unix_ef_hold():
2013-09-29 00:21:18 +04:00
*/
void
u2_unix_ef_hold();
/* u2_unix_ef_move():
*/
void
u2_unix_ef_move();
/* u2_unix_ef_look(): update filesystem, inbound.
*/
void
u2_unix_ef_look(void);
/* u2_unix_ef_init(): update filesystem for new acquisition.
*/
void
u2_unix_ef_init(u2_noun who);
/* u2_unix_ef_ergo(): update filesystem, outbound.
*/
void
u2_unix_ef_ergo(u2_noun who,
u2_noun syd,
u2_noun rel);
/* u2_unix_io_init(): initialize storage.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_unix_io_init(void);
2014-01-17 12:12:05 +04:00
/* u2_unix_io_talk(): start listening for fs events.
*/
void
u2_unix_io_talk(void);
2013-09-29 00:21:18 +04:00
/* u2_unix_io_exit(): terminate storage.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_unix_io_exit(void);
/* u2_unix_io_poll(): update storage state.
*/
void
u2_unix_io_poll(void);
/** Behn, just a timer.
**/
/* u2_batz_io_init(): initialize batz timer.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_batz_io_init(void);
/* u2_batz_io_exit(): terminate timer.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_batz_io_exit(void);
/* u2_batz_io_poll(): update batz IO state.
*/
void
u2_batz_io_poll(void);
2014-02-27 04:37:47 +04:00
/** HTTP server.
2013-09-29 00:21:18 +04:00
**/
2014-03-14 21:47:17 +04:00
/* u2_http_ef_thou(): send %thou effect to http.
2013-09-29 00:21:18 +04:00
*/
void
2014-03-20 02:40:40 +04:00
u2_http_ef_thou(c3_l sev_l,
c3_l coq_l,
2013-09-29 00:21:18 +04:00
c3_l seq_l,
u2_noun rep);
2014-02-27 04:37:47 +04:00
/* u2_cttp_ef_thus(): send %thus effect to cttp.
2013-10-27 07:55:53 +04:00
*/
void
2014-02-27 04:37:47 +04:00
u2_cttp_ef_thus(c3_l num_l,
2013-10-27 07:55:53 +04:00
u2_noun req);
2013-09-29 00:21:18 +04:00
/* u2_http_ef_bake(): create new http server.
*/
void
u2_http_ef_bake(void);
/* u2_http_io_init(): initialize http I/O.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_http_io_init(void);
2014-01-17 12:12:05 +04:00
/* u2_http_io_talk(): start http listener.
*/
void
u2_http_io_talk(void);
2013-09-29 00:21:18 +04:00
/* u2_http_io_exit(): terminate http I/O.
*/
2014-03-14 21:47:17 +04:00
void
2013-09-29 00:21:18 +04:00
u2_http_io_exit(void);
/* u2_http_io_poll(): update http IO state.
*/
void
u2_http_io_poll(void);
/** Raft log syncing.
**/
/* u2_raft_readopt(): parse command line options.
*/
u2_rnam*
u2_raft_readopt(const c3_c* arg_c, c3_c* our_c, c3_s oup_s);
2014-03-01 02:52:00 +04:00
/* u2_raft_init(): start Raft process.
*/
void
2014-03-01 02:52:00 +04:00
u2_raft_init(void);
/* u2_raft_work(): poke, kick, and push pending events.
*/
void
u2_raft_work(u2_reck* rec_u);
/** Disk persistence.
**/
/* u2_sist_boot(): restore or create pier from disk.
*/
void
u2_sist_boot(void);
/* u2_sist_pack(): write a log entry to disk.
**
** XX Synchronous.
**
** typ_w is a mote describing the entry type: %ov for Arvo
** logs, %ra for Raft events.
**
** Returns the entry's sequence number.
*/
c3_w
u2_sist_pack(u2_reck* rec_u,
c3_w tem_w,
c3_w typ_w,
c3_w* bob_w,
c3_w len_w);
2014-02-27 04:37:47 +04:00
/* u2_sist_put(): moronic key-value store put.
**
** u2_sist_put will do its best to associate the passed key with
** the passed value in a way that will persist across process
** restarts. It will probably do so by writing a file named for
** the key with contents identical to the value. To rely on it
** for anything heavy-duty would be a mistake.
**
** Why would we even have something like this? Because sometimes
** we need to maintain files completely independently of the
** noun state.
*/
void
u2_sist_put(const c3_c* key_c, const c3_y* val_y, size_t siz_i);
/* u2_sist_nil(): moronic key-value store rm.
**
** Does its best to expunge all records on the given key. Has
** no effect if the key doesn't exist.
*/
void
u2_sist_nil(const c3_c* key_c);
/* u2_sist_has(): moronic key-value store existence check.
**
** Returns the byte length of the value previously stored via
** u2_sist_put, or -1 if it couldn't find one.
*/
ssize_t
u2_sist_has(const c3_c* key_c);
/* u2_sist_get(): moronic key-value store get.
**
** u2_sist_get is the mirror of u2_sist_put. It writes to val_y,
** which had better be at least as big as the return value from
** u2_sist_has, the value that you previously put.
**
** Needless to say, u2_sist_get crashes if it can't find your
** value.
*/
void
u2_sist_get(const c3_c* key_c, c3_y* val_y);
2014-02-27 04:37:47 +04:00
/** HTTP client.
**/
/* u2_cttp_ef_thus(): send %thus effect to cttp.
*/
void
u2_cttp_ef_thus(c3_l num_l,
u2_noun req);
/* u2_cttp_io_init(): initialize cttp I/O.
*/
2014-03-14 21:47:17 +04:00
void
2014-02-27 04:37:47 +04:00
u2_cttp_io_init(void);
/* u2_cttp_io_exit(): terminate cttp I/O.
*/
2014-03-14 21:47:17 +04:00
void
2014-02-27 04:37:47 +04:00
u2_cttp_io_exit(void);
/* u2_cttp_io_poll(): update cttp IO state.
*/
void
u2_cttp_io_poll(void);