blob: 7333ffc9068899e575242f914ecdf2a9dac5d3d0 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * Copyright 1987, 1988 by MIT Student Information Processing Board
3 *
Theodore Ts'o06cefee1999-10-23 01:16:22 +00004 * Permission to use, copy, modify, and distribute this software and
5 * its documentation for any purpose is hereby granted, provided that
6 * the names of M.I.T. and the M.I.T. S.I.P.B. not be used in
7 * advertising or publicity pertaining to distribution of the software
8 * without specific, written prior permission. M.I.T. and the
9 * M.I.T. S.I.P.B. make no representations about the suitability of
10 * this software for any purpose. It is provided "as is" without
11 * express or implied warranty.
Theodore Ts'o4e9bf7f2002-07-07 16:32:46 -040012 *
13 * This quote is just too good to not pass on:
14 *
15 * "BTW, I would have rejected the name Story Server because its
16 * initials are SS, the name of the secret police in Nazi
17 * Germany, probably the most despised pair of letters in western
18 * culture." --- http://scriptingnewsarchive.userland.com/1999/12/13
19 *
20 * Let no one say political correctness isn't dead....
Theodore Ts'o3839e651997-04-26 13:21:57 +000021 */
22
23#ifndef _ss_h
24#define _ss_h __FILE__
25
Theodore Ts'o3839e651997-04-26 13:21:57 +000026#include <ss/ss_err.h>
27
Theodore Ts'o3839e651997-04-26 13:21:57 +000028#define __SS_CONST const
29#define __SS_PROTO (int, const char * const *, int, void *)
Theodore Ts'o3839e651997-04-26 13:21:57 +000030
Theodore Ts'o54434922003-12-07 01:28:50 -050031#ifdef __GNUC__
32#define __SS_ATTR(x) __attribute__(x)
33#else
34#define __SS_ATTR(x)
35#endif
36
37
Theodore Ts'o3839e651997-04-26 13:21:57 +000038typedef __SS_CONST struct _ss_request_entry {
39 __SS_CONST char * __SS_CONST *command_names; /* whatever */
40 void (* __SS_CONST function) __SS_PROTO; /* foo */
41 __SS_CONST char * __SS_CONST info_string; /* NULL */
42 int flags; /* 0 */
43} ss_request_entry;
44
45typedef __SS_CONST struct _ss_request_table {
46 int version;
47 ss_request_entry *requests;
48} ss_request_table;
49
50#define SS_RQT_TBL_V2 2
51
52typedef struct _ss_rp_options { /* DEFAULT VALUES */
53 int version; /* SS_RP_V1 */
54 void (*unknown) __SS_PROTO; /* call for unknown command */
55 int allow_suspend;
56 int catch_int;
57} ss_rp_options;
58
59#define SS_RP_V1 1
60
61#define SS_OPT_DONT_LIST 0x0001
62#define SS_OPT_DONT_SUMMARIZE 0x0002
63
64void ss_help __SS_PROTO;
Theodore Ts'of3db3561997-04-26 13:34:30 +000065#if 0
66char *ss_current_request(); /* This is actually a macro */
67#endif
Theodore Ts'o91835c12003-03-30 22:26:13 -050068
Theodore Ts'of3db3561997-04-26 13:34:30 +000069char *ss_name(int sci_idx);
Theodore Ts'o54434922003-12-07 01:28:50 -050070void ss_error (int, long, char const *, ...)
71 __SS_ATTR((format(printf, 3, 4)));
Theodore Ts'o3839e651997-04-26 13:21:57 +000072void ss_perror (int, long, char const *);
Theodore Ts'o54434922003-12-07 01:28:50 -050073
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000074int ss_create_invocation(const char *, const char *, void *,
75 ss_request_table *, int *);
Theodore Ts'o3839e651997-04-26 13:21:57 +000076void ss_delete_invocation(int);
77int ss_listen(int);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000078int ss_execute_line(int, char *);
Theodore Ts'o3839e651997-04-26 13:21:57 +000079void ss_add_request_table(int, ss_request_table *, int, int *);
80void ss_delete_request_table(int, ss_request_table *, int *);
Theodore Ts'of3db3561997-04-26 13:34:30 +000081void ss_abort_subsystem(int sci_idx, int code);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000082void ss_quit(int argc, const char * const *argv, int sci_idx, void *infop);
83void ss_self_identify(int argc, const char * const *argv, int sci_idx, void *infop);
84void ss_subsystem_name(int argc, const char * const *argv,
85 int sci_idx, void *infop);
86void ss_subsystem_version(int argc, const char * const *argv,
87 int sci_idx, void *infop);
88void ss_unimplemented(int argc, const char * const *argv,
89 int sci_idx, void *infop);
Theodore Ts'o546a1ff2002-03-07 23:52:56 -050090void ss_set_prompt(int sci_idx, char *new_prompt);
91char *ss_get_prompt(int sci_idx);
Theodore Ts'o3ae497e2003-03-16 06:26:25 -050092void ss_get_readline(int sci_idx);
JP Abgralle0ed7402014-03-19 19:08:39 -070093char *ss_safe_getenv(const char *arg);
Theodore Ts'o91835c12003-03-30 22:26:13 -050094
Theodore Ts'o3839e651997-04-26 13:21:57 +000095extern ss_request_table ss_std_requests;
96#endif /* _ss_h */