forked from tylerneylon/lua_api_demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apidemo.c
964 lines (852 loc) · 35.8 KB
/
apidemo.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
// apidemo.c
//
// This is a Lua module written to simulate Lua's C API, except that it is run
// from within Lua itself. This is written for educational purposes.
//
// Implementation notes:
//
// This module maintains a table in the registry with the key
// "ApiDemo.SavedStates". The keys in this table are references controlled by
// luaL_{ref,unref}, and the values are used to save/load the Lua state being
// simulated.
//
#include "lua.h"
#include "lauxlib.h"
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#define states_table_key "ApiDemo.SavedStates"
#define demo_state_metatable "ApiDemo.LuaState"
// # The help string.
const char *help_string =
" \n"
"-- writing values to the stack ----------------------------------------- \n"
" \n"
" lua_pushboolean(L, int) [-0 +1 -] \n"
" --- lua_pushfstring(L, str, ...) [-0 +1 m] \n"
" --- lua_pushinteger(L, lua_Integer) [-0 +1 -] \n"
" lua_pushlstring(L, str, size_t) [-0 +1 m] \n"
" lua_pushnil(L) [-0 +1 -] \n"
" lua_pushnumber(L, lua_Number) [-0 +1 -] \n"
" lua_pushstring(L, str) [-0 +1 m] \n"
" \n"
" \n"
"-- stack manipulation -------------------------------------------------- \n"
" \n"
" int lua_checkstack(L, int) ensure stack capacity [-0 +0 m] \n"
" int lua_gettop(L) get stack size [-0 +0 -] \n"
" lua_insert(L, int i) mv top -> i [-1 +1 -] \n"
" lua_pushvalue(L, int i) cp i -> top [-0 +1 m] \n"
" lua_remove(L, int i) rm i [-1 +0 -] \n"
" lua_replace(L, int i) rm i, mv top -> i [-1 +0 -] \n"
" lua_settop(L, int) set stack size [-? +? -] \n"
" \n"
" \n"
"-- reading values from the stack --------------------------------------- \n"
" \n"
" int lua_isboolean(L, int i) is stack[i] a bool? [-0 +0 -] \n"
" int lua_isfunction(L, int i) is stack[i] a fn? [-0 +0 -] \n"
" int lua_isnil(L, int i) is stack[i] a nil? [-0 +0 -] \n"
" int lua_isnone(L, int i) nothing at stack[i]? [-0 +0 -] \n"
" int lua_isnumber(L, int i) is stack[i] a number? [-0 +0 -] \n"
" int lua_isstring(L, int i) is stack[i] a string? [-0 +0 -] \n"
" int lua_istable(L, int i) is stack[i] a table? [-0 +0 -] \n"
" --- lua_isuserdata(L, int i) is stack[i] a udata? [-0 +0 -] \n"
" \n"
" int lua_toboolean(L, int i) bool(stack[i]) [-0 +0 -] \n"
" l_I lua_tointeger(L, int i) lua_Integer(stack[i]) [-0 +0 -] \n"
" str lua_tolstring(L, int, size_t *) mem is owned by Lua [-0 +0 -] \n"
" l_N lua_tonumber(L, int i) lua_Number(stack[i]) [-0 +0 -] \n"
" str lua_tostring(L, int i) mem is owned by Lua [-0 +0 -] \n"
" --- lua_touserdata(L, int i) returns void * [-0 +0 -] \n"
" \n"
" int lua_type(L, int i) LUA_T{NIL,TABLE,etc} [-0 +0 -] \n"
" str lua_typename(L, int tp) LUA_T{NIL,etc}->name [-0 +0 -] \n"
" str luaL_typename(L, int i) typename(stack[i])) [-0 +0 -] \n"
" \n"
" int luaL_optint(L, int n, int d) int(stack[n]) or d [-0 +0 v] \n"
" --- luaL_optinteger(L, int n, l_I d) l_I(stack[n]) or d [-0 +0 v] \n"
" --- luaL_optlong(L, int n, long d) long(stack[n]) or d [-0 +0 v] \n"
" l_N luaL_optnumber(L, int n, l_N d) l_N(stack[n]) or d [-0 +0 v] \n"
" str luaL_optstring(L, int n, str d) str(stack[n]) or d [-0 +0 v] \n"
" \n"
" \n"
"-- table operations ---------------------------------------------------- \n"
" \n"
" lua_newtable(L) pushes {} [-0 +1 m] \n"
" --- lua_createtable(L, int m, int n) m,n=arr,rec capacity [-0 +1 m] \n"
" \n"
" lua_settable(L, int i) pops k,v; stk[i][k]=v [-2 +0 e] \n"
" lua_setfield(L, int i, str k) pops v; stk[i][k]=v [-1 +0 e] \n"
" lua_rawset(L, int i) settable,no metacalls [-2 +0 e] \n"
" lua_rawseti(L, int i, int n) stk[i][n]=pop'd;no mt [-1 +0 e] \n"
" \n"
" lua_gettable(L, int i) pop k; push stk[i][k] [-1 +1 e] \n"
" lua_getfield(L, int i, str k) push stk[i][k] [-0 +1 e] \n"
" lua_rawget(L, int i) gettable,no metacalls [-1 +1 -] \n"
" lua_rawgeti(L, int i, int n) push stk[i][n];no mt [-0 +1 -] \n"
" \n"
" int lua_setmetatable(L, int i) pop mt; mt(stk[i])=mt [-1 +0 -] \n"
" int lua_getmetatable(L, int i) push mt(stk[i])if any [-1 +0|1 -] \n"
" \n"
" int lua_next(L, int i) pop k/push k,v if any [-1 +0|2 e] \n"
" szt lua_objlen(L, int i) #stk[i], assuming seq [-0 +0 -] \n"
" \n"
" lua_setglobal(L, str name) pops v; _G[name]=v [-1 +0 e] \n"
" lua_getglobal(L, str name) pushes _G[name] [-0 +1 e] \n"
" \n"
" int luaL_getmetafield(L, int i, str) +mt(stk[i])[s] if any [-1 +0|1 e] \n"
" \n"
" \n"
"-- basic operators ----------------------------------------------------- \n"
" \n"
" lua_concat(L, int n) str cat top n vals [-n +1 e] \n"
" int lua_equal(L, int i, int j) 1 if stk[i] == stk[j] [-0 +0 e] \n"
" int lua_lessthan(L, int i, int j) 1 if stk[i] < stk[j] [-0 +0 e] \n"
" int lua_rawequal(L, int i, int j) equal?; no metacalls [-0 +0 -] \n"
" \n"
" \n"
"-- function calls ------------------------------------------------------ \n"
" \n"
" --- lua_atpanic(L, lua_CFunciton f) set panic fn; ret old [-0 +0 -] \n"
" lua_call(L, int m, int n) -/call f(m-args); +n [-(m+1) +n e]\n"
" int lua_pcall(L, int m, n, e) call w/ errfn=stk[e] [-(m+1) \n"
" err:push msg; ret!=0 +n|1 e]\n"
" --- lua_cpcall(L, l_CFn f, void *ud) call f(ud);+1 if err [-0 +0|1 -] \n"
" int luaL_callmeta(L, int o, str s) mt(stk[o])[s] if any [-0 +0|1 e] \n"
" \n"
" \n"
"-- error handling ------------------------------------------------------ \n"
" \n"
" int lua_error(L) pop errmsg; throw it [-1 +0 v] \n"
" --- luaL_error(L, str fmt, ...) throw errmsg fmt [-0 +0 v] \n"
" \n"
" luaL_checkany(L, int n) err if stk[n] is none [-0 +0 v] \n"
" int luaL_checkint(L, int n) int(stk[n]) or err [-0 +0 v] \n"
" --- luaL_checkinteger(L, int n) l_I(stk[n]) or err [-0 +0 v] \n"
" --- luaL_checklong(L, int n) lng(stk[n]) or err [-0 +0 v] \n"
" --- luaL_checklstring(L, n, szt *l) str(stk[n]) or err [-0 +0 v] \n"
" l_N luaL_checknumber(L, int n) l_N(stk[n]) or err [-0 +0 v] \n"
" str luaL_checkstring(L, int n) str(stk[n]) or err [-0 +0 v] \n"
" \n"
" luaL_checktype(L, int n, int tp) err if tp(stk[n])!=tp [-0 +0 v] \n"
" int luaL_typerror(L, int n, str msg) err;msg=expected type [-0 +0 v] \n"
" \n"
" \n"
"-- running Lua code ---------------------------------------------------- \n"
" \n"
" --- lua_load(L, lua_Reader, void*, str) loads code;push fn [-0 +1 -] \n"
" err:ret non0/push msg \n"
" \n"
" int luaL_loadfile(L, str filename) loadfile; push as fn [-0 +1 m] \n"
" int luaL_loadstring(L, str code) load code; push as fn [-0 +1 m] \n"
" \n"
" int luaL_dofile(L, str filename) load and run file [-0 +? m] \n"
" int luaL_dostring(L, str code) load and run code [-0 +? m] \n"
" \n"
" \n"
"-- key ----------------------------------------------------------------- \n"
" \n"
" Notation [-a +b X] means: 1st pops last a values, then pushes b values \n"
" X = - never throws an error \n"
" X = m may throw a memory error \n"
" X = v may throw an error by request \n"
" X = e may throw any error \n"
" \n"
" Notation [-a +b|c X] means pushes b values if retval is 0; c otherwise \n"
" \n"
" --- before a function means it's not implemented in this demo api \n"
" \n"
" Abbreviations: \n"
" str = const char * szt = size_t \n"
" l_I = lua_Integer (often int32 or int64) stk = stack \n"
" l_N = lua_Number (often double) tp = type \n"
" \n";
// # Internal typedefs.
typedef struct {
int ref;
} FakeLuaState;
// # Internal globals, besides the help string.
static FakeLuaState *current_state;
// # Internal functions.
// ## Functions used to print the stack.
static void print_item(lua_State *L, int i, int as_key);
static int is_identifier(const char *s) {
while (*s) {
if (!isalnum(*s) && *s != '_') return 0;
++s;
}
return 1;
}
static int is_seq(lua_State *L, int i) {
// stack = [..]
lua_pushnil(L);
// stack = [.., nil]
int keynum = 1;
while (lua_next(L, i)) {
// stack = [.., key, value]
lua_rawgeti(L, i, keynum);
// stack = [.., key, value, t[keynum]]
if (lua_isnil(L, -1)) {
lua_pop(L, 3);
// stack = [..]
return 0;
}
lua_pop(L, 2);
// stack = [.., key]
keynum++;
}
// stack = [..]
return 1;
}
static void print_seq(lua_State *L, int i) {
printf("{");
int k;
for (k = 1;; ++k) {
// stack = [..]
lua_rawgeti(L, i, k);
// stack = [.., t[k]]
if (lua_isnil(L, -1)) break;
if (k > 1) printf(", ");
print_item(L, -1, 0); // 0 --> as_key
lua_pop(L, 1);
// stack = [..]
}
// stack = [.., nil]
lua_pop(L, 1);
// stack = [..]
printf("}");
}
static void print_table(lua_State *L, int i) {
// Ensure i is an absolute index as we'll be pushing/popping things after it.
if (i < 0) i = lua_gettop(L) + i + 1;
const char *prefix = "{";
if (is_seq(L, i)) {
print_seq(L, i); // This case includes all empty tables.
} else {
// stack = [..]
lua_pushnil(L);
// stack = [.., nil]
while (lua_next(L, i)) {
printf("%s", prefix);
// stack = [.., key, value]
print_item(L, -2, 1); // 1 --> as_key
printf(" = ");
print_item(L, -1, 0); // 0 --> as_key
lua_pop(L, 1); // So the last-used key is on top.
// stack = [.., key]
prefix = ", ";
}
// stack = [..]
printf("}");
}
}
static char *get_fn_string(lua_State *L, int i) {
static char fn_name[1024];
// Ensure i is an absolute index as we'll be pushing/popping things after it.
if (i < 0) i = lua_gettop(L) + i + 1;
// Check to see if the function has a global name.
// stack = [..]
lua_getglobal(L, "_G");
// stack = [.., _G]
lua_pushnil(L);
// stack = [.., _G, nil]
while (lua_next(L, -2)) {
// stack = [.., _G, key, value]
if (lua_rawequal(L, i, -1)) {
snprintf(fn_name, 1024, "function:%s", lua_tostring(L, -2));
lua_pop(L, 3);
// stack = [..]
return fn_name;
}
// stack = [.., _G, key, value]
lua_pop(L, 1);
// stack = [.., _G, key]
}
// If we get here, the function didn't have a global name; print a pointer.
// stack = [.., _G]
lua_pop(L, 1);
// stack = [..]
snprintf(fn_name, 1024, "function:%p", lua_topointer(L, i));
return fn_name;
}
static void print_item(lua_State *L, int i, int as_key) {
int ltype = lua_type(L, i);
// Set up first, last and start and end delimiters.
const char *first = (as_key ? "[" : "");
const char *last = (as_key ? "]" : "");
switch(ltype) {
case LUA_TNIL:
printf("nil"); // This can't be a key, so we can ignore as_key here.
return;
case LUA_TNUMBER:
printf("%s%g%s", first, lua_tonumber(L, i), last);
return;
case LUA_TBOOLEAN:
printf("%s%s%s", first, lua_toboolean(L, i) ? "true" : "false", last);
return;
case LUA_TSTRING:
{
const char *s = lua_tostring(L, i);
if (is_identifier(s) && as_key) {
printf("%s", s);
} else {
printf("%s'%s'%s", first, s, last);
}
}
return;
case LUA_TTABLE:
printf("%s", first);
print_table(L, i);
printf("%s", last);
return;
case LUA_TFUNCTION:
printf("%s%s%s", first, get_fn_string(L, i), last);
return;
case LUA_TUSERDATA:
case LUA_TLIGHTUSERDATA:
printf("%suserdata:", first);
break;
case LUA_TTHREAD:
printf("%sthread:", first);
break;
default:
printf("<internal_error_in_print_stack_item!>");
return;
}
// If we reach here, then we've got a type that we print as a pointer.
printf("%p%s", lua_topointer(L, i), last);
}
static void print_stack(lua_State *L, int omit) {
int n = lua_gettop(L) - omit;
printf("stack:");
int i;
for (i = 1; i <= n; ++i) {
printf(" ");
print_item(L, i, 0); // 0 --> as_key
}
if (n == 0) printf(" <empty>");
printf("\n");
}
// ## Functions for loading and saving demo Lua states.
// This loads the states table onto the top of the stack.
// It creates the table and sets it in the registry if it doesn't exist yet.
static void load_states_table(lua_State *L) {
// The states table is stored in the registry with key states_table_key.
// The registory is a table located at the pseudo-index LUA_REGISTRYINDEX.
// stack = [..]
lua_getfield(L, LUA_REGISTRYINDEX, states_table_key);
// stack = [.., states_table | nil]
if (lua_isnil(L, -1)) { // The table doesn't exist yet, so let's create it.
// stack = [.., nil]
lua_pop(L, 1);
// stack = [..]
lua_newtable(L);
// stack = [.., states_table = {}]
lua_pushvalue(L, -1);
// stack = [.., states_table, states_table]
lua_setfield(L, LUA_REGISTRYINDEX, states_table_key);
}
// stack = [.., states_table]
}
static void load_state(lua_State *L, FakeLuaState *demo_state) {
// We expect every load_state to be paired by a following save_state call.
// If that expectation is not met, this assert may be triggered.
assert(current_state == NULL);
// Clear the stack and load the states table.
lua_settop(L, 0);
// stack = []
load_states_table(L);
// stack = [states_table]
// Load the table for this demo_state.
lua_rawgeti(L, 1, demo_state->ref);
// stack = [states_table, demo_state_data]
lua_remove(L, 1);
// stack = [demo_state_data]
// Load the state.
lua_getfield(L, 1, "num_items");
// stack = [demo_state_data, num_items]
assert(lua_isnumber(L, 2));
int num_items = lua_tointeger(L, 2);
lua_pop(L, 1);
int k;
for (k = 1; k <= num_items; ++k) {
// stack = [demo_state_data, <first k-1 items of saved stack>]
lua_rawgeti(L, 1, k);
// stack = [demo_state_data, <first k-1 items of saved stack>, item[k]]
}
// stack = [demo_state_data, <loaded state>]
lua_remove(L, 1);
// stack = [<loaded state>]
// Set the current_state for later use.
current_state = demo_state;
}
// This function uses the global current_state as a save location.
// This can work because Lua is single threaded.
static void save_state(lua_State *L, int omit) {
// Load the states table.
// stack = [<state_to_save>]
load_states_table(L);
// stack = [<state_to_save>, states_table]
// Load the table for this demo_state (in current_state).
lua_rawgeti(L, -1, current_state->ref);
// stack = [<state_to_save>, states_table, demo_state_data]
lua_remove(L, -2);
// stack = [<state_to_save>, demo_state_data]
// Save num_items using the key "num_items".
int num_items = lua_gettop(L) - 1 - omit;
assert(num_items + omit >= 0);
if (num_items < 0) num_items = 0; // The omit value may have been high.
lua_pushnumber(L, num_items);
// stack = [<state_to_save>, demo_state_data, num_items]
lua_setfield(L, -2, "num_items");
// stack = [<state_to_save>, demo_state_data]
// Set each item by int keys, counting up from 1.
int k;
for (k = 1; k <= num_items; ++k) {
// stack = [<state_to_save>, demo_state_data]
lua_pushvalue(L, k);
// stack = [<state_to_save>, demo_state_data, item[k]]
lua_rawseti(L, -2, k);
}
// stack = [<state_to_save>, demo_state_data]
lua_pop(L, 1);
// stack = [<state_to_save>]
// Clear current_state.
current_state = NULL;
}
// ## Functions that simulate the C API.
static int demo_luaL_newstate(lua_State *L) {
// stack = []
FakeLuaState *demo_state =
(FakeLuaState *)lua_newuserdata(L, sizeof(FakeLuaState));
// stack = [demo_L]
luaL_getmetatable(L, demo_state_metatable);
// stack = [demo_L, mt]
lua_setmetatable(L, 1);
// stack = [demo_L]
load_states_table(L);
// stack = [demo_L, states_table]
lua_newtable(L);
// stack = [demo_L, states_table, demo_state_data = {}]
lua_pushnumber(L, 0);
// stack = [demo_L, states_table, demo_state_data, 0]
lua_setfield(L, 3, "num_items"); // TODO Drop magic string.
// stack = [demo_L, states_table, demo_state_data]
demo_state->ref = luaL_ref(L, 2); // Set states_table[ref] = demo_state_data.
// stack = [demo_L, states_table]
lua_pop(L, 1);
// stack = [demo_L]
return 1; // Number of values to return that are on the stack.
}
// ### Macros that make it easy to wrap Lua C API functions.
// A typical wrapper function will look something like this pseudocode:
//
// static int demo_lua_dosomething(lua_State *L) {
// FakeLuaState *demo_state =
// (FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
// intype1 arg1 = luaL_checktype1(L, 2);
// intype2 arg2 = luaL_checktype2(L, 3);
// load_state(L, demo_state);
// outtype out = lua_dosomething(L, arg1, arg2);
// print_stack(L, 0); // 0 --> omit 0 tail values
// save_stack(L, 0); // 0 --> omit 0 tail values
// lua_pushouttype(L, out);
// return 1;
// }
//
// In more natural language, the process works like this:
// 1. Extract inputs from L.
// 2. Load demo Lua state.
// 3. Run the API function.
// 4. Print the stack.
// 5. Save the demo Lua state.
// 6. Return any output values.
//
// Most of that code is identical for most API functions. The major differences
// are the types and numbers of the inputs and outputs. The macros below help
// simplify the creation of these wrapper functions. As an example, the API
// functions lua_pushstring can be wrapped with this simple macro call:
//
// fn_string_in(lua_pushstring);
//
// In general, the final macros take the format:
//
// fn_<intype1>_<intype2>_in[_<outtype>_out] (lua_fn_name);
//
#define fn_start(lua_fn_name) \
static int demo_ ## lua_fn_name(lua_State *L) { \
FakeLuaState *demo_state = \
(FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
#define fn_end \
print_stack(L, 0); \
save_state(L, 0); \
return 0; \
}
#define fn_end_number_out \
print_stack(L, 0); \
save_state(L, 0); \
lua_pushnumber(L, out1); \
return 1; \
}
#define fn_end_string_out \
print_stack(L, 0); \
save_state(L, 0); \
if (out1) { \
lua_pushstring(L, out1); \
} else { \
lua_pushnumber(L, 0); \
} \
return 1; \
}
#define fn_end_0_arg(lua_fn_name) \
load_state(L, demo_state); \
lua_fn_name(L); \
fn_end
#define fn_end_1_arg(lua_fn_name) \
load_state(L, demo_state); \
lua_fn_name(L, arg1); \
fn_end
#define fn_end_2_arg(lua_fn_name) \
load_state(L, demo_state); \
lua_fn_name(L, arg1, arg2); \
fn_end
#define fn_end_1_arg_1_out(lua_fn_name) \
load_state(L, demo_state); \
int out1 = lua_fn_name(L, arg1); \
fn_end_number_out
#define fn_end_2_arg_1_out(lua_fn_name) \
load_state(L, demo_state); \
int out1 = lua_fn_name(L, arg1, arg2); \
fn_end_number_out
#define fn_end_1_arg_double_out(lua_fn_name) \
load_state(L, demo_state); \
double out1 = lua_fn_name(L, arg1); \
fn_end_number_out
#define fn_end_1_arg_str_out(lua_fn_name) \
load_state(L, demo_state); \
const char *out1 = lua_fn_name(L, arg1); \
fn_end_string_out
#define fn_end_0_arg_1_out(lua_fn_name) \
load_state(L, demo_state); \
int out1 = lua_fn_name(L); \
fn_end_number_out
#define fn_nothing_in(lua_fn_name) \
fn_start(lua_fn_name); \
fn_end_0_arg(lua_fn_name)
#define fn_nothing_in_int_out(lua_fn_name) \
fn_start(lua_fn_name); \
fn_end_0_arg_1_out(lua_fn_name)
#define fn_int_in(lua_fn_name) \
fn_start(lua_fn_name); \
int arg1 = luaL_checkint(L, 2); \
fn_end_1_arg(lua_fn_name)
#define fn_string_in(lua_fn_name) \
fn_start(lua_fn_name); \
const char *arg1 = luaL_checkstring(L, 2); \
fn_end_1_arg(lua_fn_name)
#define fn_int_string_in(lua_fn_name) \
fn_start(lua_fn_name); \
int arg1 = luaL_checkint(L, 2); \
const char *arg2 = luaL_checkstring(L, 3); \
fn_end_2_arg(lua_fn_name)
#define fn_string_int_in(lua_fn_name) \
fn_start(lua_fn_name); \
const char *arg1 = luaL_checkstring(L, 2); \
int arg2 = luaL_checkint(L, 3); \
fn_end_2_arg(lua_fn_name)
#define fn_int_int_in(lua_fn_name) \
fn_start(lua_fn_name); \
int arg1 = luaL_checkint(L, 2); \
int arg2 = luaL_checkint(L, 3); \
fn_end_2_arg(lua_fn_name)
#define fn_number_in(lua_fn_name) \
fn_start(lua_fn_name); \
lua_Number arg1 = luaL_checknumber(L, 2); \
fn_end_1_arg(lua_fn_name)
#define fn_int_in_int_out(lua_fn_name) \
fn_start(lua_fn_name); \
int arg1 = luaL_checkint(L, 2); \
fn_end_1_arg_1_out(lua_fn_name)
#define fn_int_in_double_out(lua_fn_name) \
fn_start(lua_fn_name); \
int arg1 = luaL_checkint(L, 2); \
fn_end_1_arg_double_out(lua_fn_name)
#define fn_int_string_in_int_out(lua_fn_name) \
fn_start(lua_fn_name); \
int arg1 = luaL_checkint(L, 2); \
const char *arg2 = luaL_checkstring(L, 3); \
fn_end_2_arg_1_out(lua_fn_name)
#define fn_string_in_int_out(lua_fn_name) \
fn_start(lua_fn_name); \
const char *arg1 = luaL_checkstring(L, 2); \
fn_end_1_arg_1_out(lua_fn_name)
#define fn_int_in_string_out(lua_fn_name) \
fn_start(lua_fn_name); \
int arg1 = luaL_checkint(L, 2); \
fn_end_1_arg_str_out(lua_fn_name)
// ### Wrappers around C API functions defined using the above macros.
// Please keep these alphabetized by API function name.
fn_int_int_in (lua_call);
fn_int_in_int_out (lua_checkstack);
fn_int_in (lua_concat);
fn_int_int_in (lua_equal);
fn_int_string_in (lua_getfield);
fn_string_in (lua_getglobal);
fn_int_in_int_out (lua_getmetatable);
fn_int_in (lua_gettable);
fn_nothing_in_int_out (lua_gettop);
// Defined below: lua_error
fn_int_in (lua_insert);
fn_int_in_int_out (lua_isboolean);
fn_int_in_int_out (lua_isfunction);
fn_int_in_int_out (lua_isnil);
fn_int_in_int_out (lua_isnone);
fn_int_in_int_out (lua_isnoneornil);
fn_int_in_int_out (lua_isnumber);
fn_int_in_int_out (lua_isstring);
fn_int_in_int_out (lua_istable);
fn_int_int_in (lua_lessthan);
fn_nothing_in (lua_newtable);
fn_int_in_int_out (lua_next);
fn_int_in_int_out (lua_objlen);
fn_int_in (lua_pop);
fn_int_in (lua_pushboolean);
fn_string_int_in (lua_pushlstring);
fn_nothing_in (lua_pushnil);
fn_number_in (lua_pushnumber);
fn_string_in (lua_pushstring);
fn_int_in (lua_pushvalue);
fn_int_int_in (lua_rawequal);
fn_int_in (lua_rawget);
fn_int_int_in (lua_rawgeti);
fn_int_in (lua_rawset);
fn_int_int_in (lua_rawseti);
fn_int_in (lua_remove);
fn_int_in (lua_replace);
fn_int_string_in (lua_setfield);
fn_string_in (lua_setglobal);
fn_int_in_int_out (lua_setmetatable);
fn_int_in (lua_settable);
fn_int_in (lua_settop);
fn_int_in_int_out (lua_toboolean);
fn_int_in_int_out (lua_tointeger);
fn_int_in_double_out (lua_tonumber);
fn_int_in_string_out (lua_tostring);
fn_int_in_int_out (lua_type);
fn_int_in_string_out (lua_typename);
fn_int_string_in_int_out (luaL_argerror);
fn_int_string_in_int_out (luaL_callmeta);
fn_int_in (luaL_checkany);
fn_int_in_int_out (luaL_checkint);
fn_int_in_double_out (luaL_checknumber);
fn_int_in_string_out (luaL_checkstring);
fn_int_int_in (luaL_checktype);
fn_string_in_int_out (luaL_dofile);
fn_string_in_int_out (luaL_dostring);
fn_int_string_in_int_out (luaL_getmetafield);
fn_string_in_int_out (luaL_loadfile);
fn_string_in_int_out (luaL_loadstring);
// Defined below: luaL_optint
// Defined below: luaL_optnumber
// Defined below: luaL_optstring
fn_int_in_string_out (luaL_typename);
fn_int_string_in_int_out (luaL_typerror);
// ### Function wrappers that need special-case code.
// This is a special case function as it doesn't return; yet we'd still like to
// leave in a valid state as the encompassing Lua environment may continue to
// run.
int demo_lua_error(lua_State *L) {
FakeLuaState *demo_state =
(FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
load_state(L, demo_state);
print_stack(L, 1); // 1 --> tail values to omit
save_state(L, 1); // 1 --> tail values to omit
return lua_error(L);
}
int demo_lua_tolstring(lua_State *L) {
FakeLuaState *demo_state =
(FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
int arg1 = luaL_checkint(L, 2);
load_state(L, demo_state);
const char *out1 = lua_tolstring(L, arg1, NULL); // NULL --> *len
print_stack(L, 0); // 0 --> tail values to omit
save_state(L, 0); // 0 --> tail values to omit
lua_pushstring(L, out1);
return 1; // Number of values to return that are on the stack.
}
int demo_luaL_optint(lua_State *L) {
FakeLuaState *demo_state =
(FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
int arg1 = luaL_checkint(L, 2);
int arg2 = luaL_checkint(L, 3);
load_state(L, demo_state);
int out1 = luaL_optint(L, arg1, arg2);
print_stack(L, 0); // 0 --> tail values to omit
save_state(L, 0); // 0 --> tail values to omit
lua_pushnumber(L, out1);
return 1; // Number of values to return that are on the stack.
}
int demo_luaL_optnumber(lua_State *L) {
FakeLuaState *demo_state =
(FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
int arg1 = luaL_checkint(L, 2);
double arg2 = luaL_checknumber(L, 3);
load_state(L, demo_state);
double out1 = luaL_optnumber(L, arg1, arg2);
print_stack(L, 0); // 0 --> tail values to omit
save_state(L, 0); // 0 --> tail values to omit
lua_pushnumber(L, out1);
return 1; // Number of values to return that are on the stack.
}
int demo_luaL_optstring(lua_State *L) {
FakeLuaState *demo_state =
(FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
int arg1 = luaL_checkint(L, 2);
const char *arg2 = luaL_checkstring(L, 3);
load_state(L, demo_state);
const char *out1 = luaL_optstring(L, arg1, arg2);
print_stack(L, 0); // 0 --> tail values to omit
save_state(L, 0); // 0 --> tail values to omit
lua_pushstring(L, out1);
return 1; // Number of values to return that are on the stack.
}
int demo_lua_pcall(lua_State *L) {
FakeLuaState *demo_state =
(FakeLuaState *)luaL_checkudata(L, 1, demo_state_metatable);
int arg1 = luaL_checkint(L, 2);
int arg2 = luaL_checkint(L, 3);
int arg3 = luaL_checkint(L, 4);
load_state(L, demo_state);
int out1 = lua_pcall(L, arg1, arg2, arg3);
print_stack(L, 0); // 0 --> tail values to omit
save_state(L, 0); // 0 --> tail values to omit
lua_pushnumber(L, out1);
return 1; // Number of values to return that are on the stack.
}
// ### Define setup_globals.
// setup_globals is a single Lua-facing function to register all our C-API-like
// functions in a single go.
#define register_fn(lua_fn_name) \
lua_register(L, #lua_fn_name, demo_ ## lua_fn_name)
#define register_const(const_name) \
lua_pushnumber(L, (lua_Number)const_name); \
lua_setglobal(L, #const_name);
static int setup_globals(lua_State *L) {
register_fn(luaL_newstate);
// Please keep these alphabetized.
register_fn(lua_call);
register_fn(lua_checkstack);
register_fn(lua_concat);
register_fn(lua_equal);
register_fn(lua_getfield);
register_fn(lua_getglobal);
register_fn(lua_getmetatable);
register_fn(lua_gettable);
register_fn(lua_gettop);
register_fn(lua_error);
register_fn(lua_insert);
register_fn(lua_isboolean);
register_fn(lua_isfunction);
register_fn(lua_isnil);
register_fn(lua_isnone);
register_fn(lua_isnoneornil);
register_fn(lua_isnumber);
register_fn(lua_isstring);
register_fn(lua_istable);
register_fn(lua_lessthan);
register_fn(lua_newtable);
register_fn(lua_next);
register_fn(lua_objlen);
register_fn(lua_pcall);
register_fn(lua_pop);
register_fn(lua_pushboolean);
register_fn(lua_pushlstring);
register_fn(lua_pushnil);
register_fn(lua_pushnumber);
register_fn(lua_pushstring);
register_fn(lua_pushvalue);
register_fn(lua_rawequal);
register_fn(lua_rawget);
register_fn(lua_rawgeti);
register_fn(lua_rawset);
register_fn(lua_rawseti);
register_fn(lua_remove);
register_fn(lua_replace);
register_fn(lua_setfield);
register_fn(lua_setglobal);
register_fn(lua_setmetatable);
register_fn(lua_settable);
register_fn(lua_settop);
register_fn(lua_toboolean);
register_fn(lua_tointeger);
register_fn(lua_tolstring);
register_fn(lua_tonumber);
register_fn(lua_tostring);
register_fn(lua_type);
register_fn(lua_typename);
register_fn(luaL_argerror);
register_fn(luaL_callmeta);
register_fn(luaL_checkany);
register_fn(luaL_checkint);
register_fn(luaL_checknumber);
register_fn(luaL_checkstring);
register_fn(luaL_checktype);
register_fn(luaL_dofile);
register_fn(luaL_dostring);
register_fn(luaL_getmetafield);
register_fn(luaL_loadfile);
register_fn(luaL_loadstring);
register_fn(luaL_optint);
register_fn(luaL_optnumber);
register_fn(luaL_optstring);
register_fn(luaL_typename);
register_fn(luaL_typerror);
// Set up C-like constants.
lua_pushnumber(L, 0);
lua_setglobal(L, "NULL");
register_const(LUA_ERRRUN);
register_const(LUA_ERRSYNTAX);
register_const(LUA_ERRMEM);
register_const(LUA_ERRERR);
register_const(LUA_ERRFILE);
register_const(LUA_TNONE);
register_const(LUA_TNIL);
register_const(LUA_TBOOLEAN);
register_const(LUA_TLIGHTUSERDATA);
register_const(LUA_TNUMBER);
register_const(LUA_TSTRING);
register_const(LUA_TTABLE);
register_const(LUA_TFUNCTION);
register_const(LUA_TUSERDATA);
register_const(LUA_TTHREAD);
register_const(LUA_REGISTRYINDEX);
register_const(LUA_GLOBALSINDEX);
register_const(LUA_MULTRET);
return 0; // Number of values to return that are on the stack.
}
int show_help(lua_State *L) {
printf("%s", help_string);
return 0;
}
// ## The main entry point, and only directly public-facing function.
int luaopen_apidemo(lua_State *L) {
// Set up the unique metatable for our userdata instances.
// This table is empty and only used to verify that the userdata instances we
// receive are valid.
// stack = []
luaL_newmetatable(L, demo_state_metatable);
// stack = [mt = demo_state_metatable]
lua_pop(L, 1);
// stack = []
// Register the public-facing Lua methods of our module.
luaL_Reg fns[] = {
{"setup_globals", setup_globals},
{"help", show_help},
{NULL, NULL}
};
luaL_register(L, "apidemo", fns);
// stack = [apidemo]
return 1; // Number of Lua-facing return values on the Lua stack in L.
}