updates.
[silc.git] / apps / silcd / command.h
1 /*
2
3   servercommand.h
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef COMMAND_H
22 #define COMMAND_H
23
24 /* 
25    Structure holding one command and pointer to its function. 
26
27    SilcCommandCb cb
28
29        Callback function called when this command is executed.
30
31    SilcCommand cmd
32
33        The actual command. Defined in silccore/silccommand.h
34
35    SilcCommandFlag flags
36
37        Flags for the command. These set how command behaves on different
38        situations. 
39
40 */
41 typedef struct {
42   SilcCommandCb cb;
43   SilcCommand cmd;
44   SilcCommandFlag flags;
45 } SilcServerCommand;
46
47 /* All server commands */
48 extern SilcServerCommand silc_command_list[];
49
50 /* Context sent as argument to all commands */
51 typedef struct {
52   SilcServer server;
53   SilcSocketConnection sock;
54   SilcCommandPayload payload;
55   SilcArgumentPayload args;
56   SilcPacketContext *packet;
57   int pending;                  /* Command is being re-processed when TRUE */
58   int users;                    /* Reference counter */
59 } *SilcServerCommandContext;
60
61 /* Pending Command callback destructor. This is called after calling the
62    pending callback or if error occurs while processing the pending command.
63    If error occurs then the callback won't be called at all, and only this
64    destructor is called. The `context' is the context given for the function
65    silc_server_command_pending. */
66 typedef void (*SilcServerPendingDestructor)(void *context);
67
68 /* Structure holding pending commands. If command is pending it will be
69    executed after command reply has been received and executed. */
70 typedef struct SilcServerCommandPendingStruct {
71   SilcServer server;
72   SilcCommand reply_cmd;
73   SilcCommandCb callback;
74   SilcServerPendingDestructor destructor;
75   void *context;
76   uint16 ident;
77   struct SilcServerCommandPendingStruct *next;
78 } SilcServerCommandPending;
79
80 #include "command_reply.h"
81
82 /* Macros */
83
84 /* Macro used for command declaration in command list structure */
85 #define SILC_SERVER_CMD(func, cmd, flags) \
86 { silc_server_command_##func, SILC_COMMAND_##cmd, flags }
87
88 /* Macro used to declare command functions */
89 #define SILC_SERVER_CMD_FUNC(func) \
90 void silc_server_command_##func(void *context)
91
92 /* Executed pending command */
93 #define SILC_SERVER_PENDING_EXEC(ctx, cmd)                              \
94 do {                                                                    \
95   if (ctx->callback)                                                    \
96     (*ctx->callback)(ctx->context);                                     \
97 } while(0)
98
99 /* Execute destructor for pending command */
100 #define SILC_SERVER_PENDING_DESTRUCTOR(ctx, cmd)                        \
101 do {                                                                    \
102   silc_server_command_pending_del(ctx->server, cmd, ctx->ident);        \
103   if (ctx->destructor)                                                  \
104     (*ctx->destructor)(ctx->context);                                   \
105 } while(0)
106
107 /* Prototypes */
108 void silc_server_command_process(SilcServer server,
109                                  SilcSocketConnection sock,
110                                  SilcPacketContext *packet);
111 SilcServerCommandContext silc_server_command_alloc();
112 void silc_server_command_free(SilcServerCommandContext ctx);
113 SilcServerCommandContext 
114 silc_server_command_dup(SilcServerCommandContext ctx);
115 void silc_server_command_pending(SilcServer server,
116                                  SilcCommand reply_cmd,
117                                  uint16 ident,
118                                  SilcServerPendingDestructor destructor,
119                                  SilcCommandCb callback,
120                                  void *context);
121 void silc_server_command_pending_del(SilcServer server,
122                                      SilcCommand reply_cmd,
123                                      uint16 ident);
124 int silc_server_command_pending_check(SilcServer server,
125                                       SilcServerCommandReplyContext ctx,
126                                       SilcCommand command, 
127                                       uint16 ident);
128 SILC_SERVER_CMD_FUNC(whois);
129 SILC_SERVER_CMD_FUNC(whowas);
130 SILC_SERVER_CMD_FUNC(identify);
131 SILC_SERVER_CMD_FUNC(newuser);
132 SILC_SERVER_CMD_FUNC(nick);
133 SILC_SERVER_CMD_FUNC(list);
134 SILC_SERVER_CMD_FUNC(topic);
135 SILC_SERVER_CMD_FUNC(invite);
136 SILC_SERVER_CMD_FUNC(quit);
137 SILC_SERVER_CMD_FUNC(kill);
138 SILC_SERVER_CMD_FUNC(info);
139 SILC_SERVER_CMD_FUNC(connect);
140 SILC_SERVER_CMD_FUNC(ping);
141 SILC_SERVER_CMD_FUNC(oper);
142 SILC_SERVER_CMD_FUNC(pass);
143 SILC_SERVER_CMD_FUNC(admin);
144 SILC_SERVER_CMD_FUNC(join);
145 SILC_SERVER_CMD_FUNC(motd);
146 SILC_SERVER_CMD_FUNC(umode);
147 SILC_SERVER_CMD_FUNC(cmode);
148 SILC_SERVER_CMD_FUNC(cumode);
149 SILC_SERVER_CMD_FUNC(kick);
150 SILC_SERVER_CMD_FUNC(ignore);
151 SILC_SERVER_CMD_FUNC(ban);
152 SILC_SERVER_CMD_FUNC(close);
153 SILC_SERVER_CMD_FUNC(shutdown);
154 SILC_SERVER_CMD_FUNC(silcoper);
155 SILC_SERVER_CMD_FUNC(leave);
156 SILC_SERVER_CMD_FUNC(users);
157 SILC_SERVER_CMD_FUNC(getkey);
158
159 #endif