forked from justinpettit/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-ovsdb.c
2000 lines (1732 loc) · 58.1 KB
/
test-ovsdb.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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
*
* 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 <config.h>
#include <assert.h>
#include <fcntl.h>
#include <getopt.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include "command-line.h"
#include "dynamic-string.h"
#include "json.h"
#include "jsonrpc.h"
#include "ovsdb-data.h"
#include "ovsdb-error.h"
#include "ovsdb-idl.h"
#include "ovsdb-types.h"
#include "ovsdb/column.h"
#include "ovsdb/condition.h"
#include "ovsdb/file.h"
#include "ovsdb/log.h"
#include "ovsdb/mutation.h"
#include "ovsdb/ovsdb.h"
#include "ovsdb/query.h"
#include "ovsdb/row.h"
#include "ovsdb/server.h"
#include "ovsdb/table.h"
#include "ovsdb/transaction.h"
#include "ovsdb/trigger.h"
#include "poll-loop.h"
#include "stream.h"
#include "svec.h"
#include "tests/idltest.h"
#include "timeval.h"
#include "util.h"
#include "vlog.h"
static void usage(void) NO_RETURN;
static void parse_options(int argc, char *argv[]);
static struct command *get_all_commands(void);
int
main(int argc, char *argv[])
{
set_program_name(argv[0]);
parse_options(argc, argv);
run_command(argc - optind, argv + optind, get_all_commands());
return 0;
}
static void
parse_options(int argc, char *argv[])
{
static const struct option long_options[] = {
{"timeout", required_argument, NULL, 't'},
{"verbose", optional_argument, NULL, 'v'},
{"help", no_argument, NULL, 'h'},
{NULL, 0, NULL, 0},
};
char *short_options = long_options_to_short_options(long_options);
for (;;) {
unsigned long int timeout;
int c;
c = getopt_long(argc, argv, short_options, long_options, NULL);
if (c == -1) {
break;
}
switch (c) {
case 't':
timeout = strtoul(optarg, NULL, 10);
if (timeout <= 0) {
ovs_fatal(0, "value %s on -t or --timeout is not at least 1",
optarg);
} else {
time_alarm(timeout);
}
break;
case 'h':
usage();
case 'v':
vlog_set_verbosity(optarg);
break;
case '?':
exit(EXIT_FAILURE);
default:
abort();
}
}
free(short_options);
}
static void
usage(void)
{
printf("%s: Open vSwitch database test utility\n"
"usage: %s [OPTIONS] COMMAND [ARG...]\n\n"
" log-io FILE FLAGS COMMAND...\n"
" open FILE with FLAGS, run COMMANDs\n"
" default-atoms\n"
" test ovsdb_atom_default()\n"
" default-data\n"
" test ovsdb_datum_default()\n"
" parse-atomic-type TYPE\n"
" parse TYPE as OVSDB atomic type, and re-serialize\n"
" parse-base-type TYPE\n"
" parse TYPE as OVSDB base type, and re-serialize\n"
" parse-type JSON\n"
" parse JSON as OVSDB type, and re-serialize\n"
" parse-atoms TYPE ATOM...\n"
" parse JSON ATOMs as atoms of TYPE, and re-serialize\n"
" parse-atom-strings TYPE ATOM...\n"
" parse string ATOMs as atoms of given TYPE, and re-serialize\n"
" sort-atoms TYPE ATOM...\n"
" print JSON ATOMs in sorted order\n"
" parse-data TYPE DATUM...\n"
" parse JSON DATUMs as data of given TYPE, and re-serialize\n"
" parse-data-strings TYPE DATUM...\n"
" parse string DATUMs as data of given TYPE, and re-serialize\n"
" parse-column NAME OBJECT\n"
" parse column NAME with info OBJECT, and re-serialize\n"
" parse-table NAME OBJECT [DEFAULT-IS-ROOT]\n"
" parse table NAME with info OBJECT\n"
" parse-row TABLE ROW..., and re-serialize\n"
" parse each ROW of defined TABLE\n"
" compare-row TABLE ROW...\n"
" mutually compare all of the ROWs, print those that are equal\n"
" parse-conditions TABLE CONDITION...\n"
" parse each CONDITION on TABLE, and re-serialize\n"
" evaluate-conditions TABLE [CONDITION,...] [ROW,...]\n"
" test CONDITIONS on TABLE against each ROW, print results\n"
" parse-mutations TABLE MUTATION...\n"
" parse each MUTATION on TABLE, and re-serialize\n"
" execute-mutations TABLE [MUTATION,...] [ROW,...]\n"
" execute MUTATIONS on TABLE on each ROW, print results\n"
" query TABLE [ROW,...] [CONDITION,...]\n"
" add each ROW to TABLE, then query and print the rows that\n"
" satisfy each CONDITION.\n"
" query-distinct TABLE [ROW,...] [CONDITION,...] COLUMNS\n"
" add each ROW to TABLE, then query and print the rows that\n"
" satisfy each CONDITION and have distinct COLUMNS.\n"
" parse-schema JSON\n"
" parse JSON as an OVSDB schema, and re-serialize\n"
" transact COMMAND\n"
" execute each specified transactional COMMAND:\n"
" commit\n"
" abort\n"
" insert UUID I J\n"
" delete UUID\n"
" modify UUID I J\n"
" print\n"
" execute SCHEMA TRANSACTION...\n"
" executes each TRANSACTION on an initially empty database\n"
" the specified SCHEMA\n"
" trigger SCHEMA TRANSACTION...\n"
" executes each TRANSACTION on an initially empty database\n"
" the specified SCHEMA. A TRANSACTION of the form\n"
" [\"advance\", NUMBER] advances NUMBER milliseconds in\n"
" simulated time, for causing triggers to time out.\n"
" idl SERVER [TRANSACTION...]\n"
" connect to SERVER and dump the contents of the database\n"
" as seen initially by the IDL implementation and after\n"
" executing each TRANSACTION. (Each TRANSACTION must modify\n"
" the database or this command will hang.)\n",
program_name, program_name);
vlog_usage();
printf("\nOther options:\n"
" -t, --timeout=SECS give up after SECS seconds\n"
" -h, --help display this help message\n");
exit(EXIT_SUCCESS);
}
/* Command helper functions. */
static struct json *
parse_json(const char *s)
{
struct json *json = json_from_string(s);
if (json->type == JSON_STRING) {
ovs_fatal(0, "\"%s\": %s", s, json->u.string);
}
return json;
}
static struct json *
unbox_json(struct json *json)
{
if (json->type == JSON_ARRAY && json->u.array.n == 1) {
struct json *inner = json->u.array.elems[0];
json->u.array.elems[0] = NULL;
json_destroy(json);
return inner;
} else {
return json;
}
}
static void
print_and_free_json(struct json *json)
{
char *string = json_to_string(json, JSSF_SORT);
json_destroy(json);
puts(string);
free(string);
}
static void
print_and_free_ovsdb_error(struct ovsdb_error *error)
{
char *string = ovsdb_error_to_string(error);
ovsdb_error_destroy(error);
puts(string);
free(string);
}
static void
check_ovsdb_error(struct ovsdb_error *error)
{
if (error) {
char *s = ovsdb_error_to_string(error);
ovsdb_error_destroy(error);
ovs_fatal(0, "%s", s);
}
}
static void
die_if_error(char *error)
{
if (error) {
ovs_fatal(0, "%s", error);
}
}
/* Command implementations. */
static void
do_log_io(int argc, char *argv[])
{
const char *name = argv[1];
char *mode_string = argv[2];
struct ovsdb_error *error;
enum ovsdb_log_open_mode mode;
struct ovsdb_log *log;
int i;
if (!strcmp(mode_string, "read-only")) {
mode = OVSDB_LOG_READ_ONLY;
} else if (!strcmp(mode_string, "read/write")) {
mode = OVSDB_LOG_READ_WRITE;
} else if (!strcmp(mode_string, "create")) {
mode = OVSDB_LOG_CREATE;
} else {
ovs_fatal(0, "unknown log-io open mode \"%s\"", mode_string);
}
check_ovsdb_error(ovsdb_log_open(name, mode, -1, &log));
printf("%s: open successful\n", name);
for (i = 3; i < argc; i++) {
const char *command = argv[i];
if (!strcmp(command, "read")) {
struct json *json;
error = ovsdb_log_read(log, &json);
if (!error) {
printf("%s: read: ", name);
if (json) {
print_and_free_json(json);
} else {
printf("end of log\n");
}
continue;
}
} else if (!strncmp(command, "write:", 6)) {
struct json *json = parse_json(command + 6);
error = ovsdb_log_write(log, json);
json_destroy(json);
} else if (!strcmp(command, "commit")) {
error = ovsdb_log_commit(log);
} else {
ovs_fatal(0, "unknown log-io command \"%s\"", command);
}
if (error) {
char *s = ovsdb_error_to_string(error);
printf("%s: %s failed: %s\n", name, command, s);
free(s);
ovsdb_error_destroy(error);
} else {
printf("%s: %s successful\n", name, command);
}
}
ovsdb_log_close(log);
}
static void
do_default_atoms(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
{
int type;
for (type = 0; type < OVSDB_N_TYPES; type++) {
union ovsdb_atom atom;
if (type == OVSDB_TYPE_VOID) {
continue;
}
printf("%s: ", ovsdb_atomic_type_to_string(type));
ovsdb_atom_init_default(&atom, type);
if (!ovsdb_atom_equals(&atom, ovsdb_atom_default(type), type)) {
printf("wrong\n");
exit(1);
}
ovsdb_atom_destroy(&atom, type);
printf("OK\n");
}
}
static void
do_default_data(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
{
unsigned int n_min;
int key, value;
for (n_min = 0; n_min <= 1; n_min++) {
for (key = 0; key < OVSDB_N_TYPES; key++) {
if (key == OVSDB_TYPE_VOID) {
continue;
}
for (value = 0; value < OVSDB_N_TYPES; value++) {
struct ovsdb_datum datum;
struct ovsdb_type type;
ovsdb_base_type_init(&type.key, key);
ovsdb_base_type_init(&type.value, value);
type.n_min = n_min;
type.n_max = 1;
assert(ovsdb_type_is_valid(&type));
printf("key %s, value %s, n_min %u: ",
ovsdb_atomic_type_to_string(key),
ovsdb_atomic_type_to_string(value), n_min);
ovsdb_datum_init_default(&datum, &type);
if (!ovsdb_datum_equals(&datum, ovsdb_datum_default(&type),
&type)) {
printf("wrong\n");
exit(1);
}
ovsdb_datum_destroy(&datum, &type);
ovsdb_type_destroy(&type);
printf("OK\n");
}
}
}
}
static void
do_parse_atomic_type(int argc OVS_UNUSED, char *argv[])
{
enum ovsdb_atomic_type type;
struct json *json;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_atomic_type_from_json(&type, json));
json_destroy(json);
print_and_free_json(ovsdb_atomic_type_to_json(type));
}
static void
do_parse_base_type(int argc OVS_UNUSED, char *argv[])
{
struct ovsdb_base_type base;
struct json *json;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_base_type_from_json(&base, json));
json_destroy(json);
print_and_free_json(ovsdb_base_type_to_json(&base));
ovsdb_base_type_destroy(&base);
}
static void
do_parse_type(int argc OVS_UNUSED, char *argv[])
{
struct ovsdb_type type;
struct json *json;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_type_from_json(&type, json));
json_destroy(json);
print_and_free_json(ovsdb_type_to_json(&type));
ovsdb_type_destroy(&type);
}
static void
do_parse_atoms(int argc, char *argv[])
{
struct ovsdb_base_type base;
struct json *json;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_base_type_from_json(&base, json));
json_destroy(json);
for (i = 2; i < argc; i++) {
struct ovsdb_error *error;
union ovsdb_atom atom;
json = unbox_json(parse_json(argv[i]));
error = ovsdb_atom_from_json(&atom, &base, json, NULL);
json_destroy(json);
if (error) {
print_and_free_ovsdb_error(error);
} else {
print_and_free_json(ovsdb_atom_to_json(&atom, base.type));
ovsdb_atom_destroy(&atom, base.type);
}
}
ovsdb_base_type_destroy(&base);
}
static void
do_parse_atom_strings(int argc, char *argv[])
{
struct ovsdb_base_type base;
struct json *json;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_base_type_from_json(&base, json));
json_destroy(json);
for (i = 2; i < argc; i++) {
union ovsdb_atom atom;
struct ds out;
die_if_error(ovsdb_atom_from_string(&atom, &base, argv[i], NULL));
ds_init(&out);
ovsdb_atom_to_string(&atom, base.type, &out);
puts(ds_cstr(&out));
ds_destroy(&out);
ovsdb_atom_destroy(&atom, base.type);
}
ovsdb_base_type_destroy(&base);
}
static void
do_parse_data__(int argc, char *argv[],
struct ovsdb_error *
(*parse)(struct ovsdb_datum *datum,
const struct ovsdb_type *type,
const struct json *json,
struct ovsdb_symbol_table *symtab))
{
struct ovsdb_type type;
struct json *json;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_type_from_json(&type, json));
json_destroy(json);
for (i = 2; i < argc; i++) {
struct ovsdb_datum datum;
json = unbox_json(parse_json(argv[i]));
check_ovsdb_error(parse(&datum, &type, json, NULL));
json_destroy(json);
print_and_free_json(ovsdb_datum_to_json(&datum, &type));
ovsdb_datum_destroy(&datum, &type);
}
ovsdb_type_destroy(&type);
}
static void
do_parse_data(int argc, char *argv[])
{
do_parse_data__(argc, argv, ovsdb_datum_from_json);
}
static void
do_parse_data_strings(int argc, char *argv[])
{
struct ovsdb_type type;
struct json *json;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_type_from_json(&type, json));
json_destroy(json);
for (i = 2; i < argc; i++) {
struct ovsdb_datum datum;
struct ds out;
die_if_error(ovsdb_datum_from_string(&datum, &type, argv[i], NULL));
ds_init(&out);
ovsdb_datum_to_string(&datum, &type, &out);
puts(ds_cstr(&out));
ds_destroy(&out);
ovsdb_datum_destroy(&datum, &type);
}
ovsdb_type_destroy(&type);
}
static enum ovsdb_atomic_type compare_atoms_atomic_type;
static int
compare_atoms(const void *a_, const void *b_)
{
const union ovsdb_atom *a = a_;
const union ovsdb_atom *b = b_;
return ovsdb_atom_compare_3way(a, b, compare_atoms_atomic_type);
}
static void
do_sort_atoms(int argc OVS_UNUSED, char *argv[])
{
struct ovsdb_base_type base;
union ovsdb_atom *atoms;
struct json *json, **json_atoms;
size_t n_atoms;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_base_type_from_json(&base, json));
json_destroy(json);
json = unbox_json(parse_json(argv[2]));
if (json->type != JSON_ARRAY) {
ovs_fatal(0, "second argument must be array");
}
/* Convert JSON atoms to internal representation. */
n_atoms = json->u.array.n;
atoms = xmalloc(n_atoms * sizeof *atoms);
for (i = 0; i < n_atoms; i++) {
check_ovsdb_error(ovsdb_atom_from_json(&atoms[i], &base,
json->u.array.elems[i], NULL));
}
json_destroy(json);
/* Sort atoms. */
compare_atoms_atomic_type = base.type;
qsort(atoms, n_atoms, sizeof *atoms, compare_atoms);
/* Convert internal representation back to JSON. */
json_atoms = xmalloc(n_atoms * sizeof *json_atoms);
for (i = 0; i < n_atoms; i++) {
json_atoms[i] = ovsdb_atom_to_json(&atoms[i], base.type);
ovsdb_atom_destroy(&atoms[i], base.type);
}
print_and_free_json(json_array_create(json_atoms, n_atoms));
free(atoms);
ovsdb_base_type_destroy(&base);
}
static void
do_parse_column(int argc OVS_UNUSED, char *argv[])
{
struct ovsdb_column *column;
struct json *json;
json = parse_json(argv[2]);
check_ovsdb_error(ovsdb_column_from_json(json, argv[1], &column));
json_destroy(json);
print_and_free_json(ovsdb_column_to_json(column));
ovsdb_column_destroy(column);
}
static void
do_parse_table(int argc OVS_UNUSED, char *argv[])
{
struct ovsdb_table_schema *ts;
bool default_is_root;
struct json *json;
default_is_root = argc > 3 && !strcmp(argv[3], "true");
json = parse_json(argv[2]);
check_ovsdb_error(ovsdb_table_schema_from_json(json, argv[1], &ts));
json_destroy(json);
print_and_free_json(ovsdb_table_schema_to_json(ts, default_is_root));
ovsdb_table_schema_destroy(ts);
}
static void
do_parse_rows(int argc, char *argv[])
{
struct ovsdb_column_set all_columns;
struct ovsdb_table_schema *ts;
struct ovsdb_table *table;
struct json *json;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_table_schema_from_json(json, "mytable", &ts));
json_destroy(json);
table = ovsdb_table_create(ts);
ovsdb_column_set_init(&all_columns);
ovsdb_column_set_add_all(&all_columns, table);
for (i = 2; i < argc; i++) {
struct ovsdb_column_set columns;
struct ovsdb_row *row;
ovsdb_column_set_init(&columns);
row = ovsdb_row_create(table);
json = unbox_json(parse_json(argv[i]));
check_ovsdb_error(ovsdb_row_from_json(row, json, NULL, &columns));
json_destroy(json);
print_and_free_json(ovsdb_row_to_json(row, &all_columns));
if (columns.n_columns) {
struct svec names;
size_t j;
char *s;
svec_init(&names);
for (j = 0; j < columns.n_columns; j++) {
svec_add(&names, columns.columns[j]->name);
}
svec_sort(&names);
s = svec_join(&names, ", ", "");
puts(s);
free(s);
svec_destroy(&names);
} else {
printf("<none>\n");
}
ovsdb_column_set_destroy(&columns);
ovsdb_row_destroy(row);
}
ovsdb_column_set_destroy(&all_columns);
ovsdb_table_destroy(table); /* Also destroys 'ts'. */
}
static void
do_compare_rows(int argc, char *argv[])
{
struct ovsdb_column_set all_columns;
struct ovsdb_table_schema *ts;
struct ovsdb_table *table;
struct ovsdb_row **rows;
struct json *json;
char **names;
int n_rows;
int i, j;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_table_schema_from_json(json, "mytable", &ts));
json_destroy(json);
table = ovsdb_table_create(ts);
ovsdb_column_set_init(&all_columns);
ovsdb_column_set_add_all(&all_columns, table);
n_rows = argc - 2;
rows = xmalloc(sizeof *rows * n_rows);
names = xmalloc(sizeof *names * n_rows);
for (i = 0; i < n_rows; i++) {
rows[i] = ovsdb_row_create(table);
json = parse_json(argv[i + 2]);
if (json->type != JSON_ARRAY || json->u.array.n != 2
|| json->u.array.elems[0]->type != JSON_STRING) {
ovs_fatal(0, "\"%s\" does not have expected form "
"[\"name\", {data}]", argv[i]);
}
names[i] = xstrdup(json->u.array.elems[0]->u.string);
check_ovsdb_error(ovsdb_row_from_json(rows[i], json->u.array.elems[1],
NULL, NULL));
json_destroy(json);
}
for (i = 0; i < n_rows; i++) {
uint32_t i_hash = ovsdb_row_hash_columns(rows[i], &all_columns, 0);
for (j = i + 1; j < n_rows; j++) {
uint32_t j_hash = ovsdb_row_hash_columns(rows[j], &all_columns, 0);
if (ovsdb_row_equal_columns(rows[i], rows[j], &all_columns)) {
printf("%s == %s\n", names[i], names[j]);
if (i_hash != j_hash) {
printf("but hash(%s) != hash(%s)\n", names[i], names[j]);
abort();
}
} else if (i_hash == j_hash) {
printf("hash(%s) == hash(%s)\n", names[i], names[j]);
}
}
}
for (i = 0; i < n_rows; i++) {
ovsdb_row_destroy(rows[i]);
free(names[i]);
}
free(rows);
free(names);
ovsdb_column_set_destroy(&all_columns);
ovsdb_table_destroy(table); /* Also destroys 'ts'. */
}
static void
do_parse_conditions(int argc, char *argv[])
{
struct ovsdb_table_schema *ts;
struct json *json;
int exit_code = 0;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_table_schema_from_json(json, "mytable", &ts));
json_destroy(json);
for (i = 2; i < argc; i++) {
struct ovsdb_condition cnd;
struct ovsdb_error *error;
json = parse_json(argv[i]);
error = ovsdb_condition_from_json(ts, json, NULL, &cnd);
if (!error) {
print_and_free_json(ovsdb_condition_to_json(&cnd));
} else {
char *s = ovsdb_error_to_string(error);
ovs_error(0, "%s", s);
free(s);
ovsdb_error_destroy(error);
exit_code = 1;
}
json_destroy(json);
ovsdb_condition_destroy(&cnd);
}
ovsdb_table_schema_destroy(ts);
exit(exit_code);
}
static void
do_evaluate_conditions(int argc OVS_UNUSED, char *argv[])
{
struct ovsdb_table_schema *ts;
struct ovsdb_table *table;
struct ovsdb_condition *conditions;
size_t n_conditions;
struct ovsdb_row **rows;
size_t n_rows;
struct json *json;
size_t i, j;
/* Parse table schema, create table. */
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_table_schema_from_json(json, "mytable", &ts));
json_destroy(json);
table = ovsdb_table_create(ts);
/* Parse conditions. */
json = parse_json(argv[2]);
if (json->type != JSON_ARRAY) {
ovs_fatal(0, "CONDITION argument is not JSON array");
}
n_conditions = json->u.array.n;
conditions = xmalloc(n_conditions * sizeof *conditions);
for (i = 0; i < n_conditions; i++) {
check_ovsdb_error(ovsdb_condition_from_json(ts, json->u.array.elems[i],
NULL, &conditions[i]));
}
json_destroy(json);
/* Parse rows. */
json = parse_json(argv[3]);
if (json->type != JSON_ARRAY) {
ovs_fatal(0, "ROW argument is not JSON array");
}
n_rows = json->u.array.n;
rows = xmalloc(n_rows * sizeof *rows);
for (i = 0; i < n_rows; i++) {
rows[i] = ovsdb_row_create(table);
check_ovsdb_error(ovsdb_row_from_json(rows[i], json->u.array.elems[i],
NULL, NULL));
}
json_destroy(json);
for (i = 0; i < n_conditions; i++) {
printf("condition %2"PRIuSIZE":", i);
for (j = 0; j < n_rows; j++) {
bool result = ovsdb_condition_evaluate(rows[j], &conditions[i]);
if (j % 5 == 0) {
putchar(' ');
}
putchar(result ? 'T' : '-');
}
printf("\n");
}
for (i = 0; i < n_conditions; i++) {
ovsdb_condition_destroy(&conditions[i]);
}
free(conditions);
for (i = 0; i < n_rows; i++) {
ovsdb_row_destroy(rows[i]);
}
free(rows);
ovsdb_table_destroy(table); /* Also destroys 'ts'. */
}
static void
do_parse_mutations(int argc, char *argv[])
{
struct ovsdb_table_schema *ts;
struct json *json;
int exit_code = 0;
int i;
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_table_schema_from_json(json, "mytable", &ts));
json_destroy(json);
for (i = 2; i < argc; i++) {
struct ovsdb_mutation_set set;
struct ovsdb_error *error;
json = parse_json(argv[i]);
error = ovsdb_mutation_set_from_json(ts, json, NULL, &set);
if (!error) {
print_and_free_json(ovsdb_mutation_set_to_json(&set));
} else {
char *s = ovsdb_error_to_string(error);
ovs_error(0, "%s", s);
free(s);
ovsdb_error_destroy(error);
exit_code = 1;
}
json_destroy(json);
ovsdb_mutation_set_destroy(&set);
}
ovsdb_table_schema_destroy(ts);
exit(exit_code);
}
static void
do_execute_mutations(int argc OVS_UNUSED, char *argv[])
{
struct ovsdb_table_schema *ts;
struct ovsdb_table *table;
struct ovsdb_mutation_set *sets;
size_t n_sets;
struct ovsdb_row **rows;
size_t n_rows;
struct json *json;
size_t i, j;
/* Parse table schema, create table. */
json = unbox_json(parse_json(argv[1]));
check_ovsdb_error(ovsdb_table_schema_from_json(json, "mytable", &ts));
json_destroy(json);
table = ovsdb_table_create(ts);
/* Parse mutations. */
json = parse_json(argv[2]);
if (json->type != JSON_ARRAY) {
ovs_fatal(0, "MUTATION argument is not JSON array");
}
n_sets = json->u.array.n;
sets = xmalloc(n_sets * sizeof *sets);
for (i = 0; i < n_sets; i++) {
check_ovsdb_error(ovsdb_mutation_set_from_json(ts,
json->u.array.elems[i],
NULL, &sets[i]));
}
json_destroy(json);
/* Parse rows. */
json = parse_json(argv[3]);
if (json->type != JSON_ARRAY) {
ovs_fatal(0, "ROW argument is not JSON array");
}
n_rows = json->u.array.n;
rows = xmalloc(n_rows * sizeof *rows);
for (i = 0; i < n_rows; i++) {
rows[i] = ovsdb_row_create(table);
check_ovsdb_error(ovsdb_row_from_json(rows[i], json->u.array.elems[i],
NULL, NULL));
}
json_destroy(json);
for (i = 0; i < n_sets; i++) {
printf("mutation %2"PRIuSIZE":\n", i);
for (j = 0; j < n_rows; j++) {
struct ovsdb_error *error;
struct ovsdb_row *row;
row = ovsdb_row_clone(rows[j]);
error = ovsdb_mutation_set_execute(row, &sets[i]);
printf("row %"PRIuSIZE": ", j);
if (error) {
print_and_free_ovsdb_error(error);
} else {
struct ovsdb_column_set columns;
struct shash_node *node;
ovsdb_column_set_init(&columns);
SHASH_FOR_EACH (node, &ts->columns) {
struct ovsdb_column *c = node->data;
if (!ovsdb_datum_equals(&row->fields[c->index],
&rows[j]->fields[c->index],
&c->type)) {
ovsdb_column_set_add(&columns, c);
}
}
if (columns.n_columns) {
print_and_free_json(ovsdb_row_to_json(row, &columns));
} else {
printf("no change\n");
}
ovsdb_column_set_destroy(&columns);
}
ovsdb_row_destroy(row);
}
printf("\n");
}
for (i = 0; i < n_sets; i++) {
ovsdb_mutation_set_destroy(&sets[i]);
}
free(sets);
for (i = 0; i < n_rows; i++) {
ovsdb_row_destroy(rows[i]);
}
free(rows);
ovsdb_table_destroy(table); /* Also destroys 'ts'. */
}
/* Inserts a row, without bothering to update metadata such as refcounts. */
static void
put_row(struct ovsdb_table *table, struct ovsdb_row *row)
{
const struct uuid *uuid = ovsdb_row_get_uuid(row);
if (!ovsdb_table_get_row(table, uuid)) {
hmap_insert(&table->rows, &row->hmap_node, uuid_hash(uuid));
}
}
struct do_query_cbdata {
struct uuid *row_uuids;
int *counts;
size_t n_rows;
};
static bool
do_query_cb(const struct ovsdb_row *row, void *cbdata_)
{
struct do_query_cbdata *cbdata = cbdata_;
size_t i;
for (i = 0; i < cbdata->n_rows; i++) {