File size: 6,232 Bytes
a9842d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#include "interpreter.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdint.h>

/* Global sync request flag (set by commands that modify state) */
static int sync_requested = 0;

void interpreter_request_sync(void) {
    sync_requested = 1;
}

/* Command table – add your own commands here */
static Command commands[] = {
    { "boot",   boot_disk },
    { "diag",   run_diagnostic },
    { "status", get_status },
    { "replan", cmd_replan },   /* new command */
    { NULL, NULL }              /* sentinel */
};

/* ------------------------------------------------------------------
 * Dynamic string builder (internal use)
 * ------------------------------------------------------------------ */
typedef struct {
    char *str;
    size_t len;
    size_t cap;
} string_builder;

static void sb_init(string_builder *sb) {
    sb->str = NULL;
    sb->len = 0;
    sb->cap = 0;
}

static int sb_append_char(string_builder *sb, char c) {
    if (sb->len + 2 > sb->cap) {
        size_t new_cap = sb->cap ? sb->cap * 2 : 32;
        char *new_str = realloc(sb->str, new_cap);
        if (!new_str) return -1;
        sb->str = new_str;
        sb->cap = new_cap;
    }
    sb->str[sb->len++] = c;
    sb->str[sb->len] = '\0';
    return 0;
}

static int sb_append_str(string_builder *sb, const char *s) {
    while (*s) {
        if (sb_append_char(sb, *s++) < 0) return -1;
    }
    return 0;
}

static void sb_free(string_builder *sb) {
    free(sb->str);
    sb->str = NULL;
    sb->len = sb->cap = 0;
}

/* ------------------------------------------------------------------
 * Split quoted string into argv (handles escaped quotes and backslashes)
 * Returns NULL on error (memory or unterminated quote).
 * Caller must free each argv[i] and then free argv.
 * ------------------------------------------------------------------ */
static char** split_quoted(const char* input, int* argc) {
    char **argv = NULL;
    int capacity = 0;
    *argc = 0;
    const char *p = input;

    while (*p) {
        while (isspace(*p)) p++;
        if (!*p) break;

        if (*argc >= capacity) {
            capacity = capacity ? capacity * 2 : 8;
            char **new_argv = realloc(argv, capacity * sizeof(char*));
            if (!new_argv) goto error;
            argv = new_argv;
        }

        string_builder sb;
        sb_init(&sb);
        char quote = 0;

        if (*p == '"' || *p == '\'') {
            quote = *p++;
        }

        int escaped = 0;
        while (*p) {
            if (escaped) {
                if (sb_append_char(&sb, *p++) < 0) goto error;
                escaped = 0;
            } else if (*p == '\\') {
                escaped = 1;
                p++;
            } else if (quote && *p == quote) {
                p++; /* closing quote */
                break;
            } else if (!quote && isspace(*p)) {
                break;
            } else {
                if (sb_append_char(&sb, *p++) < 0) goto error;
            }
        }

        if (quote && !*p) {  /* unterminated quote */
            sb_free(&sb);
            goto error;
        }

        argv[(*argc)++] = sb.str;  /* sb.str is now owned by argv */
    }

    return argv;

error:
    for (int i = 0; i < *argc; i++) free(argv[i]);
    free(argv);
    return NULL;
}

/* ------------------------------------------------------------------
 * Main interpreter
 * ------------------------------------------------------------------ */
char* interpret_command(const char* input) {
    if (!input || *input == '\0')
        return strdup("No input provided.");

    int argc = 0;
    char **argv = split_quoted(input, &argc);
    if (!argv) return strdup("Memory error or unterminated quote.");

    if (argc == 0) {
        free(argv);
        return strdup("");
    }

    char *result = NULL;
    for (Command *c = commands; c->name; c++) {
        if (strcmp(c->name, argv[0]) == 0) {
            /* Build argument string safely */
            string_builder sb;
            sb_init(&sb);
            for (int i = 1; i < argc; i++) {
                if (i > 1) {
                    if (sb_append_char(&sb, ' ') < 0) {
                        sb_free(&sb);
                        for (int j = 0; j < argc; j++) free(argv[j]);
                        free(argv);
                        return strdup("Memory error");
                    }
                }
                if (sb_append_str(&sb, argv[i]) < 0) {
                    sb_free(&sb);
                    for (int j = 0; j < argc; j++) free(argv[j]);
                    free(argv);
                    return strdup("Memory error");
                }
            }
            result = c->fn(sb.str ? sb.str : "");
            sb_free(&sb);
            break;
        }
    }

    for (int i = 0; i < argc; i++) free(argv[i]);
    free(argv);

    if (!result) result = strdup("Unknown command.");
    return result;
}

/* ------------------------------------------------------------------
 * Example command implementations
 * ------------------------------------------------------------------ */
char* boot_disk(const char* args) {
    size_t len = strlen("Booting disk with args: ") + strlen(args) + 1;
    char *buf = malloc(len);
    if (!buf) return strdup("Memory error");
    snprintf(buf, len, "Booting disk with args: %s", args);
    return buf;
}

char* run_diagnostic(const char* args) {
    (void)args;
    return strdup("Running diagnostic...");
}

char* get_status(const char* args) {
    (void)args;
    return strdup("Status: All systems nominal.");
}

/* ------------------------------------------------------------------
 * New command: /replan – forces a fresh LLM call
 * Returns a special marker that the main loop will recognize.
 * ------------------------------------------------------------------ */
char* cmd_replan(const char* args) {
    (void)args;
    /* Request a soul sync (though this command doesn't modify state) */
    interpreter_request_sync();
    /* Return the replan marker */
    char *marker = malloc(strlen(INTERPRETER_MARKER_REPLAN) + 1);
    if (!marker) return strdup("Memory error");
    strcpy(marker, INTERPRETER_MARKER_REPLAN);
    return marker;
}