-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommands.go
1036 lines (925 loc) · 25.2 KB
/
commands.go
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
package minidb
import (
"sync"
"time"
)
// CommandID represents the type of a command in the Exec() function.
type CommandID int
// The actual Exec() CommandID values. Names mirror the respective functions.
const (
// CmdOpen is the type of an Open command struct.
CmdOpen CommandID = iota + 1
// CmdBegin opens a transaction
CmdBegin
// CmdRollback rolls back a transaction
CmdRollback
// CmdCommit commits a transaction
CmdCommit
// CmdAddTable is the type of an AddTable command struct.
CmdAddTable
// CmdClose is the type of a Close command struct.
CmdClose
// CmdCount is the type of a Count command struct.
CmdCount
// CmdFind is the type of a Find command struct.
CmdFind
// CmdGet is the type of a Get command struct.
CmdGet
// CmdGetTables is the type of a GetTables command struct.
CmdGetTables
// CmdIsListField is the type of an IsListField command struct.
CmdIsListField
// CmdItemExists is the type of an ItemExists command struct.
CmdItemExists
// CmdListItems is the type of a ListItems command struct.
CmdListItems
// CmdNewItem is the type of a NewItem command struct.
CmdNewItem
// CmdParseFieldValues is the type of a ParseFieldValues command struct.
CmdParseFieldValues
// CmdSet is the type of a Set command struct.
CmdSet
// CmdTableExists is the type of a TableExists command struct.
CmdTableExists
// CmdToSQL is the type of a ToSQL command struct.
CmdToSQL
// CmdFieldIsNull is the type of a FieldIsNull command struct.
CmdFieldIsNull
// CmdFieldExists is the type of a FieldExists command struct.
CmdFieldExists
// CmdGetFields is the type of a GetFields command struct.
CmdGetFields
// CmdIsEmptyListField is the type of an IsEmptyListField command struct.
CmdIsEmptyListField
// CmdMustGetFieldType is the type of a MustGetFieldType command struct.
CmdMustGetFieldType
// CmdGetInt is the type of a GetInt command struct.
CmdGetInt
// CmdGetStr is the type of a GetStr command struct.
CmdGetStr
// CmdGetBlob is the type of a GetBlob command struct.
CmdGetBlob
// CmdGetDate is the type of a GetDate command struct.
CmdGetDate
// CmdSetInt is the type of a SetInt command struct.
CmdSetInt
// CmdSetStr is the type of a SetStr commmand struct.
CmdSetStr
// CmdSetBlob is the type of a SetBlob commmand struct.
CmdSetBlob
// CmdSetDate is the type of a SetDate command struct.
CmdSetDate
// CmdDeleteInt is the type of a DeleteInt command struct.
CmdDeleteInt
// CmdDeleteStr is the type of a DeleteStr command struct.
CmdDeleteStr
// CmdDeleteBlob is the type of a DeleteBlob command struct.
CmdDeleteBlob
// CmdDeleteDate is the type of a DeleteDate command struct.
CmdDeleteDate
// CmdHadInt is the type of a HasInt command struct.
CmdHasInt
// CmdHasStr is the type of a HasStr command struct.
CmdHasStr
// CmdHasBlob is the type of a HasBlob command struct.
CmdHasBlob
// CmdHasDate is the type of a HasDate command struct.
CmdHasDate
// CmdListInt is the type of a ListInt commmand struct.
CmdListInt
// CmdListStr is the type of a ListStr command struct.
CmdListStr
// CmdListBlob is the type of a ListBlob command struct.
CmdListBlob
// CmdListDate is the type of a ListDate command struct.
CmdListDate
// CmdSetDateStr is the type of a SetDateStr command struct.
CmdSetDateStr
// CmdFieldIsEmpty is the type of a FieldIsEmpty commmand struct.
CmdFieldIsEmpty
// CmdBackup is the type of a Backup commmand struct.
CmdBackup
// CmdRemoveItem is the type of a RemoveItem commmand struct.
CmdRemoveItem
// CmdIndex is the type of an Index command struct.
CmdIndex
)
// CommandDB is the database that has been opened.
type CommandDB string
// TxID is the ID of a transaction.
type TxID int64
// Command structures contains all information needed to execute an arbitrary command.
// Use Exec() to execute a command and get the result.
// Every function <Name> in minidb has a corresponding function <Name>Command that
// returns the corresponding command. Consult the API for <Name> for help, as the input parameters
// are exactly the same, except that the first two arguments are a database path of type CommandDB and
// often also a transaction id of type TxID.
// You should never use Command structures directly, but use the provided wrapper functions for strong typing.
// Result structures have the HasError field set to true if an error has occurred.
// Commands and results can be serialized to json.
type Command struct {
ID CommandID `json:"id"`
DB CommandDB `json:"dbid"`
Tx TxID `json:"txid"`
StrArgs []string `json:"strings"`
ItemArg Item `json:"item"`
FieldArgs []Field `json:"fields"`
ValueArgs []Value `json:"values"`
QueryArg Query `json:"query"`
IntArg int64 `json:"int"`
IntArg2 int64 `json:"int2"`
}
// Result is a structure representing the result of a command execution via Exec().
// If an error has occurred, then HasError is true and the Int and S fields contain
// the numeric error code and the error message string. Otherwise the respective fields
// are filled in, as corresponding to the return value(s) of the respective function call.
type Result struct {
Str string `json:"str"`
Strings []string `json:"strings"`
Int int64 `json:"int64"`
Bool bool `json:"bool"`
Items []Item `json:"items"`
Values []Value `json:"values"`
Fields []Field `json:"fields"`
Bytes []byte `json:"binary"`
Ints []int64 `json:"ints"`
HasError bool `json:"iserror"`
}
var openDBs map[CommandDB]*MDB
var openTxs map[TxID]*Tx
var connections map[CommandDB]int
var txCounter TxID
var mutex sync.RWMutex
// Numeric error codes returned by Exec() in a Result structure's Int field.
const (
NoErr int64 = iota + 1
ErrCannotOpen
ErrUnknownDB
ErrUnknownCommand
ErrAddTableFailed
ErrClosingDB
ErrCountFailed
ErrFindFailed
ErrGetFailed
ErrGetTablesFailed
ErrListItemsFailed
ErrNewItemFailed
ErrParseFieldValuesFailed
ErrSetFailed
ErrToSQLFailed
ErrFieldExistsFailed
ErrGetFieldsFailed
ErrInvalidDate
ErrBackupFailed
ErrRemoveItemFailed
ErrIndexFailed
ErrUnknownTx
ErrBeginFailed
ErrCommitFailed
ErrRollbackFailed
)
func getDB(cmd *Command) (*MDB, *Result) {
mutex.RLock()
defer mutex.RUnlock()
theDB, ok := openDBs[cmd.DB]
if ok {
return theDB, nil
}
r := Result{HasError: true, Int: ErrUnknownDB}
r.Str = Fail("exec failed: db '%s' unknown", cmd.DB).Error()
return nil, &r
}
func getTx(cmd *Command) (*Tx, *Result) {
mutex.RLock()
defer mutex.RUnlock()
theTx, ok := openTxs[cmd.Tx]
if ok {
return theTx, nil
}
r := Result{HasError: true, Int: ErrUnknownTx}
r.Str = Fail("exec failed: transaction '%d' unknown", int64(cmd.Tx)).Error()
return nil, &r
}
// CloseAllDBs closes all open DB connections and cleans up resources.
func CloseAllDBs() {
mutex.Lock()
defer mutex.Unlock()
for tx := range openTxs {
openTxs[tx].Commit()
openTxs[tx] = nil
}
for db := range openDBs {
openDBs[db].Close()
connections[db] = 0
openDBs[db] = nil
}
}
func init() {
openDBs = make(map[CommandDB]*MDB)
connections = make(map[CommandDB]int)
openTxs = make(map[TxID]*Tx)
txCounter++
}
// Exec takes a Command structure and executes it, returning a Result or an error.
// This function is a large switch, as a wrapper around the more specific API functions.
// It incurs a runtime penalty and should only used when needed (e.g. when commands
// have to be marshalled and unmarshalled).
func Exec(cmd *Command) *Result {
var r Result
var theDB *MDB
var theTx *Tx
var err error
var errResult *Result
if cmd.ID == CmdOpen {
mutex.Lock()
defer mutex.Unlock()
if _, ok := openDBs[CommandDB(cmd.StrArgs[1])]; ok {
connections[CommandDB(cmd.StrArgs[1])] += 1
} else {
theDB, err := Open(cmd.StrArgs[0], cmd.StrArgs[1])
if err != nil {
r.HasError = true
r.Int = ErrCannotOpen
r.Str = err.Error()
return &r
}
openDBs[CommandDB(cmd.StrArgs[1])] = theDB
connections[CommandDB(cmd.StrArgs[1])] = 1
}
return &r
}
if theDB, errResult = getDB(cmd); errResult != nil {
return errResult
}
theTx, errResult = getTx(cmd)
switch cmd.ID {
case CmdBegin:
mutex.Lock()
defer mutex.Unlock()
theTx, err = theDB.Begin()
if err != nil {
r.HasError = true
r.Int = ErrBeginFailed
r.Str = err.Error()
return &r
}
txCounter++
openTxs[txCounter] = theTx
r.Int = int64(txCounter)
case CmdCommit:
if theTx == nil {
return errResult
}
err = theTx.Commit()
if err != nil {
r.HasError = true
r.Int = ErrCommitFailed
r.Str = err.Error()
}
case CmdRollback:
if theTx == nil {
return errResult
}
err = theTx.Rollback()
if err != nil {
r.HasError = true
r.Int = ErrRollbackFailed
r.Str = err.Error()
}
case CmdAddTable:
err = theDB.AddTable(cmd.StrArgs[0], cmd.FieldArgs)
if err != nil {
r.HasError = true
r.Int = ErrAddTableFailed
r.Str = err.Error()
}
case CmdClose:
err = nil
mutex.Lock()
defer mutex.Unlock()
if connections[cmd.DB] == 1 {
err = theDB.Close()
delete(openDBs, cmd.DB)
delete(connections, cmd.DB)
} else {
connections[cmd.DB] -= 1
}
if err != nil {
r.HasError = true
r.Int = ErrClosingDB
r.Str = err.Error()
}
case CmdCount:
r.Int, err = theDB.Count(cmd.StrArgs[0])
if err != nil {
r.HasError = true
r.Int = ErrCountFailed
r.Str = err.Error()
}
case CmdFind:
r.Items, err = theDB.Find(&(cmd.QueryArg), cmd.IntArg)
if err != nil {
r.HasError = true
r.Int = ErrFindFailed
r.Str = err.Error()
}
case CmdGet:
r.Values, err = theDB.Get(cmd.StrArgs[0], cmd.ItemArg, cmd.StrArgs[1])
if err != nil {
r.HasError = true
r.Int = ErrGetFailed
r.Str = err.Error()
}
case CmdBackup:
err = theDB.Backup(cmd.StrArgs[0])
if err != nil {
r.HasError = true
r.Int = ErrBackupFailed
r.Str = err.Error()
}
case CmdGetTables:
r.Strings = theDB.GetTables()
case CmdIsListField:
r.Bool = theDB.IsListField(cmd.StrArgs[0], cmd.StrArgs[1])
case CmdItemExists:
r.Bool = theDB.ItemExists(cmd.StrArgs[0], cmd.ItemArg)
case CmdListItems:
r.Items, err = theDB.ListItems(cmd.StrArgs[0], cmd.IntArg)
if err != nil {
r.HasError = true
r.Int = ErrListItemsFailed
r.Str = err.Error()
}
case CmdNewItem:
item, err := theDB.NewItem(cmd.StrArgs[0])
if err != nil {
r.HasError = true
r.Int = ErrNewItemFailed
r.Str = err.Error()
return &r
}
r.Items = make([]Item, 1)
r.Items[0] = item
case CmdParseFieldValues:
r.Values, err = theDB.ParseFieldValues(cmd.StrArgs[0], cmd.StrArgs[1], cmd.StrArgs[2:])
if err != nil {
r.HasError = true
r.Int = ErrParseFieldValuesFailed
r.Str = err.Error()
}
case CmdSet:
if theTx == nil {
return errResult
}
err = theTx.Set(cmd.StrArgs[0], cmd.ItemArg, cmd.StrArgs[1], cmd.ValueArgs)
if err != nil {
r.HasError = true
r.Int = ErrSetFailed
r.Str = err.Error()
}
case CmdRemoveItem:
if theTx == nil {
return errResult
}
err = theTx.RemoveItem(cmd.StrArgs[0], cmd.ItemArg)
if err != nil {
r.HasError = true
r.Int = ErrRemoveItemFailed
r.Str = err.Error()
}
case CmdTableExists:
r.Bool = theDB.TableExists(cmd.StrArgs[0])
case CmdToSQL:
s, err := theDB.ToSql(cmd.StrArgs[0], &cmd.QueryArg, cmd.IntArg)
if err != nil {
r.HasError = true
r.Int = ErrToSQLFailed
r.Str = err.Error()
return &r
}
r.Strings = make([]string, 1)
r.Strings[0] = s
case CmdFieldIsNull:
r.Bool = theDB.FieldIsNull(cmd.StrArgs[0], cmd.ItemArg, cmd.StrArgs[1])
case CmdFieldIsEmpty:
r.Bool = theDB.FieldIsEmpty(cmd.StrArgs[0], cmd.ItemArg, cmd.StrArgs[1])
case CmdFieldExists:
r.Bool = theDB.FieldExists(cmd.StrArgs[0], cmd.StrArgs[1])
case CmdGetFields:
r.Fields, err = theDB.GetFields(cmd.StrArgs[0])
if err != nil {
r.HasError = true
r.Int = ErrGetFieldsFailed
r.Str = err.Error()
}
case CmdIsEmptyListField:
r.Bool = theDB.IsEmptyListField(cmd.StrArgs[0], cmd.ItemArg, cmd.StrArgs[1])
case CmdMustGetFieldType:
r.Int = int64(theDB.MustGetFieldType(cmd.StrArgs[0], cmd.StrArgs[1]))
case CmdGetInt:
r.Int = theDB.GetInt(cmd.IntArg)
case CmdGetStr:
r.Str = theDB.GetStr(cmd.IntArg)
case CmdGetBlob:
r.Bytes = theDB.GetBlob(cmd.IntArg)
case CmdGetDate:
r.Str = theDB.GetDateStr(cmd.IntArg)
case CmdSetInt:
if theTx == nil {
return errResult
}
theTx.SetInt(cmd.IntArg, cmd.IntArg2)
case CmdSetStr:
if theTx == nil {
return errResult
}
theTx.SetStr(cmd.IntArg, cmd.StrArgs[0])
case CmdSetBlob:
if theTx == nil {
return errResult
}
theTx.SetBlob(cmd.IntArg, []byte(cmd.StrArgs[0]))
case CmdSetDate:
if theTx == nil {
return errResult
}
t, err := ParseTime(cmd.StrArgs[0])
if err != nil {
r.HasError = true
r.Int = ErrInvalidDate
r.Str = err.Error()
} else {
theTx.SetDate(cmd.IntArg, t)
}
case CmdSetDateStr:
if theTx == nil {
return errResult
}
theTx.SetDateStr(cmd.IntArg, cmd.StrArgs[0])
case CmdHasInt:
r.Bool = theDB.HasInt(cmd.IntArg)
case CmdHasStr:
r.Bool = theDB.HasStr(cmd.IntArg)
case CmdHasBlob:
r.Bool = theDB.HasBlob(cmd.IntArg)
case CmdHasDate:
r.Bool = theDB.HasDate(cmd.IntArg)
case CmdDeleteInt:
if theTx == nil {
return errResult
}
theTx.DeleteInt(cmd.IntArg)
case CmdDeleteStr:
if theTx == nil {
return errResult
}
theTx.DeleteStr(cmd.IntArg)
case CmdDeleteBlob:
if theTx == nil {
return errResult
}
theTx.DeleteBlob(cmd.IntArg)
case CmdDeleteDate:
if theTx == nil {
return errResult
}
theTx.DeleteDate(cmd.IntArg)
case CmdListInt:
r.Ints = theDB.ListInt()
case CmdListStr:
r.Ints = theDB.ListStr()
case CmdListBlob:
r.Ints = theDB.ListBlob()
case CmdListDate:
r.Ints = theDB.ListDate()
case CmdIndex:
if theTx == nil {
return errResult
}
err := theTx.Index(cmd.StrArgs[0], cmd.StrArgs[1])
if err != nil {
r.HasError = true
r.Int = ErrIndexFailed
r.Str = err.Error()
}
default:
r.HasError = true
r.Str = Fail("exec failed: unhandled command").Error()
}
return &r
}
// OpenCommand returns a pointer to a command structure for mdb.Open().
func OpenCommand(driver string, file string) *Command {
return &Command{
ID: CmdOpen,
StrArgs: []string{driver, file},
}
}
// BeginCommand returns a pointer to a command structure for mdb.Begin().
func BeginCommand(db CommandDB) *Command {
return &Command{
ID: CmdBegin,
DB: db,
}
}
// CommitCommand returns a pointer to a command structure for tx.Commit().
func CommitCommand(db CommandDB, tx TxID) *Command {
return &Command{
ID: CmdCommit,
DB: db,
Tx: tx,
}
}
// RollbackCommand returns a pointer to a command structure for tx.Rollback().
func RollbackCommand(db CommandDB, tx TxID) *Command {
return &Command{
ID: CmdRollback,
DB: db,
Tx: tx,
}
}
// AddTableCommand returns a pointer to a command structure for mdb.AddTable().
func AddTableCommand(db CommandDB, table string, fields []Field) *Command {
return &Command{
ID: CmdAddTable,
DB: db,
StrArgs: []string{table},
FieldArgs: fields,
}
}
// CloseCommand returns a pointer to a command structure for mdb.Close().
func CloseCommand(db CommandDB) *Command {
return &Command{
ID: CmdClose,
DB: db,
}
}
// CountCommand returns a pointer to a command structure for tx.Count()
func CountCommand(db CommandDB, table string) *Command {
return &Command{
ID: CmdCount,
DB: db,
StrArgs: []string{table},
}
}
// FieldExistsCommand returns a pointer to a command structure for tx.FieldExists().
func FieldExistsCommand(db CommandDB, table string, field string) *Command {
return &Command{
ID: CmdFieldExists,
DB: db,
StrArgs: []string{table, field},
}
}
// FieldIsNullCommand returns a pointer to a command structure for tx.FieldIsNull().
func FieldIsNullCommand(db CommandDB, item Item, field string) *Command {
return &Command{
ID: CmdFieldIsNull,
DB: db,
StrArgs: []string{field},
ItemArg: item,
}
}
// FieldIsEmptyCommand returns a pointer to a command structure for tx.FieldIsEmpty().
func FieldIsEmptyCommand(db CommandDB, item Item, field string) *Command {
return &Command{
ID: CmdFieldIsEmpty,
DB: db,
StrArgs: []string{field},
ItemArg: item,
}
}
// FindCommand returns a pointer to a command structure for tx.Find().
func FindCommand(db CommandDB, query *Query, limit int64) *Command {
return &Command{
ID: CmdFind,
DB: db,
QueryArg: *query,
IntArg: limit,
}
}
// GetCommand returns a pointer to a command structure for tx.Get().
func GetCommand(db CommandDB, table string, item Item, field string) *Command {
return &Command{
ID: CmdGet,
DB: db,
StrArgs: []string{table, field},
ItemArg: item,
}
}
// GetFieldsCommand returns a pointer to a command structure for tx.GetFields().
func GetFieldsCommand(db CommandDB, table string) *Command {
return &Command{
ID: CmdGetFields,
DB: db,
StrArgs: []string{table},
}
}
// GetTablesCommand returns a pointer to a command structure for tx.GetTables().
func GetTablesCommand(db CommandDB) *Command {
return &Command{
ID: CmdGetTables,
DB: db,
}
}
// IsEmptyListFieldCommand returns a pointer to a command structure for tx.IsEmptyListField().
func IsEmptyListFieldCommand(db CommandDB, table string, item Item, field string) *Command {
return &Command{
ID: CmdIsEmptyListField,
DB: db,
StrArgs: []string{table, field},
ItemArg: item,
}
}
// IsListFieldCommand returns a pointer to a command structure for tx.IsListField().
func IsListFieldCommand(db CommandDB, table string, field string) *Command {
return &Command{
ID: CmdIsListField,
DB: db,
StrArgs: []string{table, field},
}
}
// ItemExistsCommand returns a pointer to a command structure for tx.ItemExists().
func ItemExistsCommand(db CommandDB, table string, item Item) *Command {
return &Command{
ID: CmdItemExists,
DB: db,
StrArgs: []string{table},
ItemArg: item,
}
}
// ListItemsCommand returns a pointer to a command structure for tx.ListItems().
func ListItemsCommand(db CommandDB, table string, limit int64) *Command {
return &Command{
ID: CmdListItems,
DB: db,
StrArgs: []string{table},
IntArg: limit,
}
}
// MustGetFieldTypeCommand returns a pointer to a command structure for tx.MustGetFieldType().
func MustGetFieldTypeCommand(db CommandDB, table string, field string) *Command {
return &Command{
ID: CmdMustGetFieldType,
DB: db,
StrArgs: []string{table, field},
}
}
// NewItemCommand returns a pointer to a command structure for tx.NewItem().
func NewItemCommand(db CommandDB, tx TxID, table string) *Command {
return &Command{
ID: CmdNewItem,
DB: db,
Tx: tx,
StrArgs: []string{table},
}
}
// ParseFieldValuesCommand returns a pointer to a command structure for tx.ParseFieldValues().
func ParseFieldValuesCommand(db CommandDB, table string, field string, data []string) *Command {
cmd := Command{
ID: CmdParseFieldValues,
DB: db,
}
cmd.StrArgs = make([]string, len(data)+2)
cmd.StrArgs[0] = table
cmd.StrArgs[1] = field
for i := 0; i < len(data); i++ {
cmd.StrArgs[i+2] = data[i]
}
return &cmd
}
// SetCommand returns a pointer to a command structure for tx.Set().
func SetCommand(db CommandDB, tx TxID, table string, item Item, field string, data []Value) *Command {
return &Command{
ID: CmdSet,
DB: db,
Tx: tx,
StrArgs: []string{table, field},
ItemArg: item,
ValueArgs: data,
}
}
// TableExistsCommand returns a pointer to a command structure for tx.TableExists().
func TableExistsCommand(db CommandDB, table string) *Command {
return &Command{
ID: CmdTableExists,
DB: db,
StrArgs: []string{table},
}
}
// ToSqlCommand returns a pointer to a command structure for tx.ToSql().
func ToSqlCommand(db CommandDB, table string, query *Query, limit int64) *Command {
return &Command{
ID: CmdToSQL,
DB: db,
StrArgs: []string{table},
QueryArg: *query,
IntArg: limit,
}
}
// GetIntCommand returns a pointer to a command structure for tx.GetInt().
func GetIntCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdGetInt,
DB: db,
IntArg: key,
}
}
// GetStrCommand returns a pointer to a command structure for tx.GetStr().
func GetStrCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdGetStr,
DB: db,
IntArg: key,
}
}
// GetBlobCommand returns a pointer to a command structure for tx.GetBlob().
func GetBlobCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdGetBlob,
DB: db,
IntArg: key,
}
}
// GetDateCommand returns a pointer to a command structure for tx.GetDate().
func GetDateCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdGetDate,
DB: db,
IntArg: key,
}
}
// SetIntCommand returns a pointer to a command structure for tx.SetInt().
func SetIntCommand(db CommandDB, tx TxID, key int64, value int64) *Command {
return &Command{
ID: CmdSetInt,
DB: db,
Tx: tx,
IntArg: key,
IntArg2: value,
}
}
// SetStrCommand returns a pointer to a command structure for tx.SetStr().
func SetStrCommand(db CommandDB, tx TxID, key int64, value string) *Command {
return &Command{
ID: CmdSetStr,
DB: db,
Tx: tx,
IntArg: key,
StrArgs: []string{value},
}
}
// SetBlobCommand returns a pointer to a command structure for tx.SetBlob().
func SetBlobCommand(db CommandDB, tx TxID, key int64, value []byte) *Command {
return &Command{
ID: CmdSetBlob,
DB: db,
Tx: tx,
IntArg: key,
StrArgs: []string{string(value)},
}
}
// SetDateCommand returns a pointer to a command structure for tx.SetDate().
func SetDateCommand(db CommandDB, tx TxID, key int64, value time.Time) *Command {
d := NewDate(value)
return &Command{
ID: CmdSetDate,
DB: db,
Tx: tx,
IntArg: key,
StrArgs: []string{d.String()},
}
}
// SetDateStrCommand returns a pointer to a command structure for tx.SetDateStr().
func SetDateStrCommand(db CommandDB, tx TxID, key int64, value string) *Command {
return &Command{
ID: CmdSetDateStr,
DB: db,
Tx: tx,
IntArg: key,
StrArgs: []string{value},
}
}
// HasIntCommand returns a pointer to a command structure for tx.HasInt().
func HasIntCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdHasInt,
DB: db,
IntArg: key,
}
}
// HasStrCommand returns a pointer to a command structure for tx.HasStr().
func HasStrCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdHasStr,
DB: db,
IntArg: key,
}
}
// HasBlobCommand returns a pointer to a command structure for tx.HasBlob().
func HasBlobCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdHasBlob,
DB: db,
IntArg: key,
}
}
// HasDateCommand returns a pointer to a command structure for tx.HasDate().
func HasDateCommand(db CommandDB, key int64) *Command {
return &Command{
ID: CmdHasDate,
DB: db,
IntArg: key,
}
}
// DeleteIntCommand returns a pointer to a command structure for tx.DeleteInt().
func DeleteIntCommand(db CommandDB, tx TxID, key int64) *Command {
return &Command{
ID: CmdDeleteInt,
DB: db,
Tx: tx,
IntArg: key,
}
}
// DeleteStrCommand returns a pointer to a command structure for tx.DeleteStr().
func DeleteStrCommand(db CommandDB, tx TxID, key int64) *Command {
return &Command{
ID: CmdDeleteStr,
DB: db,
Tx: tx,
IntArg: key,
}
}
// DeleteBlobCommand returns a pointer to a command structure for tx.DeleteBlob().
func DeleteBlobCommand(db CommandDB, tx TxID, key int64) *Command {
return &Command{
ID: CmdDeleteBlob,
DB: db,
Tx: tx,
IntArg: key,
}
}
// DeleteDateCommand returns a pointer to a command structure for tx.DeleteDate().
func DeleteDateCommand(db CommandDB, tx TxID, key int64) *Command {
return &Command{
ID: CmdDeleteDate,
DB: db,
Tx: tx,
IntArg: key,
}
}
// ListIntCommand returns a pointer to a command structure for tx.ListInt().
func ListIntCommand(db CommandDB, tx TxID) *Command {
return &Command{
ID: CmdListInt,
DB: db,
Tx: tx,
}
}
// ListStrCommand returns a pointer to a command structure for tx.ListStr().
func ListStrCommand(db CommandDB) *Command {
return &Command{
ID: CmdListStr,
DB: db,
}
}
// ListBlobCommand returns a pointer to a command structure for tx.ListBlob().
func ListBlobCommand(db CommandDB) *Command {
return &Command{
ID: CmdListBlob,
DB: db,
}
}
// ListDateCommand returns a pointer to a command structure for tx.ListDate().