-
Notifications
You must be signed in to change notification settings - Fork 0
/
jset.c
220 lines (202 loc) · 4.41 KB
/
jset.c
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
/*
* bash-json
* <http://github.com/Wiguwbe/bash-json>
*
* Copyright (c) 2023 Tiago Teixeira
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include "common.h"
int jset_builtin(WORD_LIST *list)
{
/*
// the index, to append, may be -1, which may be confused with
// an option
if(no_options(list))
return EX_USAGE;
*/
PD("list %p", list);
//list = loptend;
if(!list) return EX_USAGE;
if(!list->next)
// at least 2 arguments
return EX_USAGE;
PD("next %p", list->next);
// but no more than 3
if(list->next->next)
if(list->next->next->next)
// 4+ arguments
return EX_USAGE;
void *shm = shmem_init(shm_name);
if(!shm)
{
PE("failed to open shared memory");
return EXECUTION_FAILURE;
}
long obj;
// either one of these
int index;
char *key;
long value = -1;
int obj_type;
if(list->next->next)
{
// 3 arguments, all from CLI
char *obj_handler = list->word->word;
if(!is_handler(obj_handler))
{
PE("invalid handler");
goto _usage;
}
obj = get_handler(obj_handler);
list = list->next;
}
else if(!isatty(fileno(stdin)))
{
obj = get_handler_stdin();
}
else
{
goto _usage;
}
if(obj < 0)
{
PE("invalid object handler");
goto _fail;
}
// key/index
obj_type = j_type(shm, obj);
if(obj_type == JTYPE_DICT)
{
char *key_input = list->word->word;
if(is_handler(key_input))
{
long key_obj = get_handler(key_input);
if(key_obj < 0)
{
PE("invalid handler for key");
goto _fail;
}
if(j_type(shm, key_obj) != JTYPE_STR)
{
PE("key is not a string");
goto _fail;
}
key = j_str_val(shm, key_obj);
}
else
key = key_input;
PD("key is %s", key);
}
else if(obj_type == JTYPE_LIST)
{
char *index_input = list->word->word;
if(is_handler(index_input))
{
long index_obj = get_handler(index_input);
if(index_obj < 0)
{
PE("invalid handler for index");
goto _fail;
}
if(j_type(shm, index_obj) != JTYPE_INT)
{
PE("index is not an integer");
goto _fail;
}
index = (int)j_int_val(shm, index_obj);
}
else
{
char *end;
index = (int)strtol(index_input, &end, 10);
if(*end)
{
PE("index is not an integer");
goto _fail;
}
}
PD("index is %d", index);
}
else
{
PE("cant `jdel` from non dict/list");
goto _fail;
}
list = list->next;
// the value to set
{
char *value_input = list->word->word;
// check handler
if(is_handler(value_input))
{
value = get_handler(value_input);
}
// check JSON string
if(value < 0)
{
value = j_parse_buffer(shm, value_input, strlen(value_input), 1);
}
// fallback to string literal (should catch the other cases on the previous branches
if(value < 0)
{
value = j_str_new(shm, value_input);
}
}
if(value < 0)
{
PE("failed to get/create JSON object from input");
goto _fail;
}
{
int r;
if(obj_type == JTYPE_DICT)
r = j_dict_set(shm, obj, key, value);
else
r = j_list_set(shm, obj, index, value);
if(r)
{
PE("failed to set");
goto _fail;
}
}
shmem_fini(shm);
return EXECUTION_SUCCESS;
_usage:
shmem_fini(shm);
return EX_USAGE;
_fail:
shmem_fini(shm);
return EXECUTION_FAILURE;
}
// no load/unload
char *jset_doc[] = {
"jset <handler> <key|index> <JSON|handler>",
"",
"Set object in list/dict, to append to a list pass '-1' as index",
NULL
};
struct builtin jset_struct = {
"jset",
jset_builtin,
BUILTIN_ENABLED,
jset_doc,
"jset <handler> <key|index> <JSON|handler>",
0
};