aboutsummaryrefslogtreecommitdiffstats
path: root/amend/commands.c
blob: 75ff82840139b658b2e4d6b0f42fd24db675684a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*
 * Copyright (C) 2007 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "symtab.h"
#include "commands.h"

#if 1
#define TRACE(...)  printf(__VA_ARGS__)
#else
#define TRACE(...)  /**/
#endif

typedef enum {
    CMD_TYPE_UNKNOWN = -1,
    CMD_TYPE_COMMAND = 0,
    CMD_TYPE_FUNCTION
} CommandType;

typedef struct {
    const char *name;
    void *cookie;
    CommandType type;
    CommandArgumentType argType;
    CommandHook hook;
} CommandEntry;

static struct {
    SymbolTable *symbolTable;
    bool commandStateInitialized;
} gCommandState;

int
commandInit()
{
    if (gCommandState.commandStateInitialized) {
        return -1;
    }
    gCommandState.symbolTable = createSymbolTable();
    if (gCommandState.symbolTable == NULL) {
        return -1;
    }
    gCommandState.commandStateInitialized = true;
    return 0;
}

void
commandCleanup()
{
    if (gCommandState.commandStateInitialized) {
        gCommandState.commandStateInitialized = false;
        deleteSymbolTable(gCommandState.symbolTable);
        gCommandState.symbolTable = NULL;
//xxx need to free the entries and names in the symbol table
    }
}

static int
registerCommandInternal(const char *name, CommandType type,
        CommandArgumentType argType, CommandHook hook, void *cookie)
{
    CommandEntry *entry;

    if (!gCommandState.commandStateInitialized) {
        return -1;
    }
    if (name == NULL || hook == NULL) {
        return -1;
    }
    if (type != CMD_TYPE_COMMAND && type != CMD_TYPE_FUNCTION) {
        return -1;
    }
    if (argType != CMD_ARGS_BOOLEAN && argType != CMD_ARGS_WORDS) {
        return -1;
    }

    entry = (CommandEntry *)malloc(sizeof(CommandEntry));
    if (entry != NULL) {
        entry->name = strdup(name);
        if (entry->name != NULL) {
            int ret;

            entry->cookie = cookie;
            entry->type = type;
            entry->argType = argType;
            entry->hook = hook;
            ret = addToSymbolTable(gCommandState.symbolTable,
                        entry->name, entry->type, entry);
            if (ret == 0) {
                return 0;
            }
        }
        free(entry);
    }

    return -1;
}

int
registerCommand(const char *name,
        CommandArgumentType argType, CommandHook hook, void *cookie)
{
    return registerCommandInternal(name,
            CMD_TYPE_COMMAND, argType, hook, cookie);
}

int
registerFunction(const char *name, FunctionHook hook, void *cookie)
{
    return registerCommandInternal(name,
            CMD_TYPE_FUNCTION, CMD_ARGS_WORDS, (CommandHook)hook, cookie);
}

Command *
findCommand(const char *name)
{
    return (Command *)findInSymbolTable(gCommandState.symbolTable,
            name, CMD_TYPE_COMMAND);
}

Function *
findFunction(const char *name)
{
    return (Function *)findInSymbolTable(gCommandState.symbolTable,
            name, CMD_TYPE_FUNCTION);
}

CommandArgumentType
getCommandArgumentType(Command *cmd)
{
    CommandEntry *entry = (CommandEntry *)cmd;

    if (entry != NULL) {
        return entry->argType;
    }
    return CMD_ARGS_UNKNOWN;
}

static int
callCommandInternal(CommandEntry *entry, int argc, const char *argv[],
        PermissionRequestList *permissions)
{
    if (entry != NULL && entry->argType == CMD_ARGS_WORDS &&
            (argc == 0 || (argc > 0 && argv != NULL)))
    {
        if (permissions == NULL) {
            int i;
            for (i = 0; i < argc; i++) {
                if (argv[i] == NULL) {
                    goto bail;
                }
            }
        }
        TRACE("calling command %s\n", entry->name);
        return entry->hook(entry->name, entry->cookie, argc, argv, permissions);
//xxx if permissions, make sure the entry has added at least one element.
    }
bail:
    return -1;
}

static int
callBooleanCommandInternal(CommandEntry *entry, bool arg,
        PermissionRequestList *permissions)
{
    if (entry != NULL && entry->argType == CMD_ARGS_BOOLEAN) {
        TRACE("calling boolean command %s\n", entry->name);
        return entry->hook(entry->name, entry->cookie, arg ? 1 : 0, NULL,
                permissions);
//xxx if permissions, make sure the entry has added at least one element.
    }
    return -1;
}

int
callCommand(Command *cmd, int argc, const char *argv[])
{
    return callCommandInternal((CommandEntry *)cmd, argc, argv, NULL);
}

int
callBooleanCommand(Command *cmd, bool arg)
{
    return callBooleanCommandInternal((CommandEntry *)cmd, arg, NULL);
}

int
getCommandPermissions(Command *cmd, int argc, const char *argv[],
        PermissionRequestList *permissions)
{
    if (permissions != NULL) {
        return callCommandInternal((CommandEntry *)cmd, argc, argv,
                permissions);
    }
    return -1;
}

int
getBooleanCommandPermissions(Command *cmd, bool arg,
        PermissionRequestList *permissions)
{
    if (permissions != NULL) {
        return callBooleanCommandInternal((CommandEntry *)cmd, arg,
                permissions);
    }
    return -1;
}

int
callFunctionInternal(CommandEntry *entry, int argc, const char *argv[],
        char **result, size_t *resultLen, PermissionRequestList *permissions)
{
    if (entry != NULL && entry->argType == CMD_ARGS_WORDS &&
            (argc == 0 || (argc > 0 && argv != NULL)))
    {
        if ((permissions == NULL && result != NULL) ||
                (permissions != NULL && result == NULL))
        {
            if (permissions == NULL) {
                /* This is the actual invocation of the function,
                 * which means that none of the arguments are allowed
                 * to be NULL.
                 */
                int i;
                for (i = 0; i < argc; i++) {
                    if (argv[i] == NULL) {
                        goto bail;
                    }
                }
            }
            TRACE("calling function %s\n", entry->name);
            return ((FunctionHook)entry->hook)(entry->name, entry->cookie,
                    argc, argv, result, resultLen, permissions);
//xxx if permissions, make sure the entry has added at least one element.
        }
    }
bail:
    return -1;
}

int
callFunction(Function *fn, int argc, const char *argv[],
        char **result, size_t *resultLen)
{
    return callFunctionInternal((CommandEntry *)fn, argc, argv,
            result, resultLen, NULL);
}

int
getFunctionPermissions(Function *fn, int argc, const char *argv[],
        PermissionRequestList *permissions)
{
    if (permissions != NULL) {
        return callFunctionInternal((CommandEntry *)fn, argc, argv,
                NULL, NULL, permissions);
    }
    return -1;
}