-
Notifications
You must be signed in to change notification settings - Fork 5
/
CGGoCodeGenerator.swift
1271 lines (1129 loc) · 36.6 KB
/
CGGoCodeGenerator.swift
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
public enum CGGoCodeGeneratorDialect {
case Standard
case Gold
}
public class CGGoCodeGenerator : CGCStyleCodeGenerator {
public init() {
super.init()
keywords = ["break", "case", "chan", "const", "continue", "default", "defer", "else", "fallthrough", "false", "for", "func",
"go", "goto", "if", "import", "interface", "make", "map", "new", "nil", "package", "range", "return",
"select", "struct", "switch", "true", "type", "var"].ToList() as! List<String>
}
public var Dialect: CGGoCodeGeneratorDialect = .Standard
public convenience init(dialect: CGGoCodeGeneratorDialect) {
init()
Dialect = dialect
}
public override var defaultFileExtension: String { return "go" }
override func escapeIdentifier(_ name: String) -> String {
return "`\(name)`"
}
override func generateImport(_ imp: CGImport) {
Append("import ")
generateIdentifier(imp.Name, alwaysEmitNamespace: true)
AppendLine()
}
override func generateStatementTerminator() {
AppendLine() // no ; in Go
}
//
// Statements
//
// in C-styleCG Base class
/*override func generateBeginEndStatement(_ statement: CGBeginEndBlockStatement) {
}*/
override func generateIfElseStatement(_ statement: CGIfThenElseStatement) {
Append("if ")
generateExpression(statement.Condition)
AppendLine(" {")
incIndent()
generateStatementSkippingOuterBeginEndBlock(statement.IfStatement)
decIndent()
Append("}")
if let elseStatement = statement.ElseStatement {
AppendLine(" else {")
incIndent()
generateStatementSkippingOuterBeginEndBlock(elseStatement)
decIndent()
AppendLine("}")
} else {
AppendLine()
}
}
/*
override func generateForToLoopStatement(_ statement: CGForToLoopStatement) {
// handled in base
}
*/
override func generateForEachLoopStatement(_ statement: CGForEachLoopStatement) {
assert(false, "for/each blocks are not supported for Go")
}
override func generateWhileDoLoopStatement(_ statement: CGWhileDoLoopStatement) {
assert(false, "while/do blocks are not supported for Go")
//Append("while ")
//generateExpression(statement.Condition)
//AppendLine(" {")
//incIndent()
//generateStatementSkippingOuterBeginEndBlock(statement.NestedStatement)
//decIndent()
//Append("}")
}
override func generateDoWhileLoopStatement(_ statement: CGDoWhileLoopStatement) {
assert(false, "do/while blocks are not supported for Go")
//Append("repeat {")
//incIndent()
//generateStatementsSkippingOuterBeginEndBlock(statement.Statements)
//decIndent()
//Append("} while ")
//generateExpression(statement.Condition)
}
override func generateInfiniteLoopStatement(_ statement: CGInfiniteLoopStatement) {
Append("for ")
AppendLine(" {")
incIndent()
generateStatementSkippingOuterBeginEndBlock(statement.NestedStatement)
decIndent()
Append("}")
}
override func generateSwitchStatement(_ statement: CGSwitchStatement) {
Append("switch ")
generateExpression(statement.Expression)
AppendLine(" {")
incIndent()
for c in statement.Cases {
Append("case ")
helpGenerateCommaSeparatedList(c.CaseExpressions) {
self.generateExpression($0)
}
AppendLine(":")
generateStatementsIndentedUnlessItsASingleBeginEndBlock(c.Statements)
}
if let defaultStatements = statement.DefaultCase, defaultStatements.Count > 0 {
AppendLine("default:")
generateStatementsIndentedUnlessItsASingleBeginEndBlock(defaultStatements)
}
decIndent()
AppendLine("}")
}
override func generateLockingStatement(_ statement: CGLockingStatement) {
assert(false, "generateLockingStatement is not supported for Go")
}
override func generateUsingStatement(_ statement: CGUsingStatement) {
//if Dialect == CGGoCodeGeneratorDialect.Gold {
//Append("__using let ")
//generateIdentifier(statement.Name)
//if let type = statement.`Type` {
//Append(": ")
//generateTypeReference(type)
//}
//Append(" = ")
//generateExpression(statement.Value)
//AppendLine(" {")
//generateStatementSkippingOuterBeginEndBlock(statement.NestedStatement)
//AppendLine("}")
//} else {
assert(false, "generateUsingStatement is not supported for Go")
//}
}
override func generateAutoReleasePoolStatement(_ statement: CGAutoReleasePoolStatement) {
assert(false, "generateAutoReleasePoolStatement is not supported for Go")
//AppendLine("autoreleasepool { ")
//incIndent()
//generateStatementSkippingOuterBeginEndBlock(statement.NestedStatement)
//decIndent()
//AppendLine("}")
}
override func generateTryFinallyCatchStatement(_ statement: CGTryFinallyCatchStatement) {
if let finallyStatements = statement.FinallyStatements, finallyStatements.Count > 0 {
AppendLine("defer {")
incIndent()
generateStatements(finallyStatements)
decIndent()
AppendLine("}")
}
generateStatements(statement.Statements)
if let catchBlocks = statement.CatchBlocks, catchBlocks.Count > 0 {
assert(false, "try/catch blocks are not supported for Go")
//for b in catchBlocks {
//if let name = b.Name, let type = b.Type {
//Append("__catch ")
//generateIdentifier(name)
//Append(": ")
//generateTypeReference(type, ignoreNullability: true)
//AppendLine(" {")
//} else {
//AppendLine("__catch {")
//}
//incIndent()
//generateStatements(b.Statements)
//decIndent()
//AppendLine("}")
//}
}
}
/*
override func generateReturnStatement(_ statement: CGReturnStatement) {
// handled in base
}
*/
override func generateYieldExpression(_ statement: CGYieldExpression) {
//if Dialect == CGGoCodeGeneratorDialect.Gold {
//Append("__yield ")
//generateExpression(statement.Value)
//} else {
assert(false, "generateYieldStatement is not supported for Go, except in Gold")
//}
}
override func generateThrowExpression(_ statement: CGThrowExpression) {
if let value = statement.Exception {
Append("panic(")
generateExpression(value)
Append(")")
} else {
Append("panic()")
}
}
/*
override func generateBreakStatement(_ statement: CGBreakStatement) {
// handled in base
}
*/
/*
override func generateContinueStatement(_ statement: CGContinueStatement) {
// handled in base
}
*/
override func generateVariableDeclarationStatement(_ statement: CGVariableDeclarationStatement) {
if statement.Constant {
Append("const ")
generateIdentifier(statement.Name)
if let value = statement.Value {
Append(" = ")
generateExpression(value)
}
} else {
Append("var ")
if statement.ReadOnly {
// ??
}
generateIdentifier(statement.Name)
if let type = statement.`Type` {
Append(": ")
generateTypeReference(type)
if let value = statement.Value {
Append(" = ")
generateExpression(value)
}
}
else if let value = statement.Value {
Append(" := ")
generateExpression(value)
}
}
AppendLine()
}
/*
override func generateAssignmentStatement(_ statement: CGAssignmentStatement) {
// handled in base
}
*/
override func generateConstructorCallStatement(_ statement: CGConstructorCallStatement) {
assert(false, "generateConstructorCallStatement is not supported for Go")
//if let callSite = statement.CallSite {
//if let typeReferenceExpression = statement.CallSite as? CGTypeReferenceExpression {
//generateTypeReference(typeReferenceExpression.`Type`, ignoreNullability: true)
//} else {
//generateExpression(callSite)
//}
//Append(".")
//}
//Append("init(")
//if let ctorName = statement.ConstructorName {
//goGenerateCallParameters(statement.Parameters, firstParamName: removeWithPrefix(ctorName))
//} else {
//goGenerateCallParameters(statement.Parameters)
//}
//Append(")")
//AppendLine()
}
//
// Expressions
//
/*
override func generateNamedIdentifierExpression(_ expression: CGNamedIdentifierExpression) {
// handled in base
}
*/
/*
override func generateAssignedExpression(_ expression: CGAssignedExpression) {
// handled in base
}
*/
/*
override func generateSizeOfExpression(_ expression: CGSizeOfExpression) {
// handled in base
}
*/
override func generateTypeOfExpression(_ expression: CGTypeOfExpression) {
if Dialect == CGGoCodeGeneratorDialect.Gold {
Append("typeOf(")
generateExpression(expression.Expression)
Append(")")
} else {
assert(false, "generateTypeOfExpression is not supported for Go, except in Gold")
}
}
override func generateDefaultExpression(_ expression: CGDefaultExpression) {
if Dialect == CGGoCodeGeneratorDialect.Gold {
Append("default(")
generateTypeReference(expression.`Type`, ignoreNullability: true)
Append(")")
} else {
assert(false, "generateDefaultExpression is not supported for Go, except in Gold")
}
}
override func generateSelectorExpression(_ expression: CGSelectorExpression) {
assert(false, "generateSelectorExpression is not supported for Go, except in Gold")
}
override func generateTypeCastExpression(_ cast: CGTypeCastExpression) {
if cast.ThrowsException {
generateExpression(cast.Expression)
Append(".(")
generateTypeReference(cast.TargetType, ignoreNullability: true)
Append(")")
} else {
generateTypeReference(cast.TargetType, ignoreNullability: true)
Append("(")
generateExpression(cast.Expression)
Append(")")
}
}
override func generateInheritedExpression(_ expression: CGInheritedExpression) {
assert(false, "generateInheritedExpression is not supported for Go")
}
override func generateMappedExpression(_ expression: CGMappedExpression) {
assert(false, "generateMappedExpression is not supported for Go")
}
override func generateOldExpression(_ expression: CGOldExpression) {
assert(false, "generateOldExpression is not supported for Go")
}
override func generateSelfExpression(_ expression: CGSelfExpression) {
Append("self")
}
override func generateNilExpression(_ expression: CGNilExpression) {
Append("nil")
}
override func generatePropertyValueExpression(_ expression: CGPropertyValueExpression) {
assert(false, "generatePropertyValueExpression is not supported for Go, except in Gold")
//Append("newValue")
}
override func generateAwaitExpression(_ expression: CGAwaitExpression) {
//if Dialect == CGGoCodeGeneratorDialect.Gold {
//Append("__await ")
//generateExpression(expression.Expression)
//} else {
assert(false, "generateEventDefinition is not supported for Go, except in Gold")
//}
}
override func generateAnonymousMethodExpression(_ method: CGAnonymousMethodExpression) {
Append("func")
Append(" (")
helpGenerateCommaSeparatedList(method.Parameters) { param in
self.generateIdentifier(param.Name)
if let type = param.`Type` {
self.Append(": ")
self.generateTypeReference(type)
}
}
Append(")")
if let returnType = method.ReturnType {
generateTypeReference(returnType)
}
AppendLine(" {")
incIndent()
generateStatements(variables: method.LocalVariables)
generateStatementsSkippingOuterBeginEndBlock(method.Statements)
decIndent()
Append("}")
}
override func generateAnonymousTypeExpression(_ type: CGAnonymousTypeExpression) {
assert(false, "generateAnonymousTypeExpression is not supported for Go, except in Gold")
}
/*
override func generatePointerDereferenceExpression(_ expression: CGPointerDereferenceExpression) {
// handled in base
}
*/
/*
override func generateUnaryOperatorExpression(_ expression: CGUnaryOperatorExpression) {
// handled in base
}
*/
/*
override func generateBinaryOperatorExpression(_ expression: CGBinaryOperatorExpression) {
// handled in base
}
*/
/*
override func generateUnaryOperator(_ `operator`: CGUnaryOperatorKind) {
// handled in base
}
*/
/*
override func generateBinaryOperator(_ `operator`: CGBinaryOperatorKind) {
switch (`operator`) {
case .Is: Append("is")
case .AddEvent: Append("+=") // Gold only
case .RemoveEvent: Append("-=") // Gold only
default: super.generateBinaryOperator(`operator`)
}
}
*/
/*
override func generateIfThenElseExpression(_ expression: CGIfThenElseExpression) {
// handled in base
}
*/
/*
override func generateArrayElementAccessExpression(_ expression: CGArrayElementAccessExpression) {
// handled in base
}
*/
internal func goGenerateStorageModifierPrefixIfNeeded(_ storageModifier: CGStorageModifierKind) {
assert(false, "goGenerateStorageModifierPrefixIfNeeded is not supported for Go, except in Gold")
//switch storageModifier {
//case .Strong: break
//case .Weak: Append("weak ")
//case .Unretained: Append("unowned ")
//}
}
internal func goGenerateCallSiteForExpression(_ expression: CGMemberAccessExpression) {
if let callSite = expression.CallSite {
if let typeReferenceExpression = expression.CallSite as? CGTypeReferenceExpression {
generateTypeReference(typeReferenceExpression.`Type`, ignoreNullability: true)
} else {
generateExpression(callSite)
}
//if expression.NilSafe {
//Append("?")
//} else if expression.UnwrapNullable {
//Append("!")
//}
Append(".")
}
}
func goGenerateCallParameters(_ parameters: List<CGCallParameter>, firstParamName: String? = nil) {
for p in 0 ..< parameters.Count {
let param = parameters[p]
if p > 0 {
Append(", ")
}
//if let name = param.Name {
//generateIdentifier(name)
//Append(": ")
//} else if p == 0, let name = firstParamName {
//generateIdentifier(name)
//Append(": ")
//}
//switch param.Modifier {
//case .Out: fallthrough
//case .Var:
//Append("&(")
//generateExpression(param.Value)
//Append(")")
//default:
generateExpression(param.Value)
//}
}
}
func goGenerateAttributeParameters(_ parameters: List<CGCallParameter>) {
for p in 0 ..< parameters.Count {
let param = parameters[p]
if p > 0 {
Append(", ")
}
if let name = param.Name {
generateIdentifier(name)
Append(" = ")
}
generateExpression(param.Value)
}
}
override func generateParameterDefinition(_ param: CGParameterDefinition) {
goGenerateParameterDefinition(param, emitExternal: false) // never emit the _
}
private func goGenerateParameterDefinition(_ param: CGParameterDefinition, emitExternal: Boolean, externalName: String? = nil) {
generateIdentifier(param.Name)
Append(" ")
if param.Modifier == .Params {
Append("...")
}
if let type = param.`Type` {
Append(": ")
generateTypeReference(type)
}
//switch param.Modifier {
//case .Out:
//if Dialect == CGGoCodeGeneratorDialect.Gold {
//Append("__out ")
//} else {
//fallthrough
//}
//case .Var:
//Append(" *")
//default:
//}
if let defaultValue = param.DefaultValue {
Append(" = ")
generateExpression(defaultValue)
}
}
func goGenerateDefinitionParameters(_ parameters: List<CGParameterDefinition>, firstExternalName: String? = nil) {
for p in 0 ..< parameters.Count {
let param = parameters[p]
if p > 0 {
Append(", ")
}
param.startLocation = currentLocation
goGenerateParameterDefinition(param, emitExternal: true, externalName: p == 0 ? firstExternalName : nil)
param.endLocation = currentLocation
}
}
func goGenerateGenericParameters(_ parameters: List<CGGenericParameterDefinition>?) {
if let parameters = parameters, parameters.Count > 0 {
Append("<")
helpGenerateCommaSeparatedList(parameters) { param in
self.generateIdentifier(param.Name)
// variance isn't supported in Go
//todo: 72081: Silver: NRE in "if let"
//if let constraints = param.Constraints, filteredConstraints = constraints.Where({ return $0 is CGGenericIsSpecificTypeConstraint}).ToList(), filteredConstraints.Count > 0 {
if let constraints = param.Constraints, constraints.Count > 0 {
let filteredConstraints = constraints.Where({ return $0 is CGGenericIsSpecificTypeConstraint })
self.Append(": ")
self.helpGenerateCommaSeparatedList(filteredConstraints) { constraint in
if let constraint2 = constraint as? CGGenericIsSpecificTypeConstraint {
self.generateTypeReference(constraint2.`Type`)
}
// other constraints aren't supported in Go
}
}
}
Append(">")
}
}
func goGenerateAncestorList(_ type: CGClassOrStructTypeDefinition) {
if type.Ancestors.Count > 0 || type.ImplementedInterfaces.Count > 0 {
Append(" : ")
var needsComma = false
for ancestor in type.Ancestors {
if needsComma {
Append(", ")
}
generateTypeReference(ancestor, ignoreNullability: true)
needsComma = true
}
for interface in type.ImplementedInterfaces {
if needsComma {
Append(", ")
}
generateTypeReference(interface, ignoreNullability: true)
needsComma = true
}
}
}
override func generateFieldAccessExpression(_ expression: CGFieldAccessExpression) {
goGenerateCallSiteForExpression(expression)
generateIdentifier(expression.Name)
}
/*
override func generateArrayElementAccessExpression(_ expression: CGArrayElementAccessExpression) {
// handled in base
}
*/
override func generateMethodCallExpression(_ method: CGMethodCallExpression) {
goGenerateCallSiteForExpression(method)
generateIdentifier(method.Name)
//generateGenericArguments(method.GenericArguments)
//if method.CallOptionally {
//Append("?")
//}
Append("(")
goGenerateCallParameters(method.Parameters)
Append(")")
}
override func generateNewInstanceExpression(_ expression: CGNewInstanceExpression) {
if let bounds = expression.ArrayBounds, bounds.Count > 0 {
Append("make(")
for _ in bounds {
Append("[]")
}
generateExpression(expression.`Type`, ignoreNullability: true)
Append(", ")
helpGenerateCommaSeparatedList(bounds) { boundExpression in
self.generateExpression(boundExpression)
}
Append(")")
} else {
generateExpression(expression.`Type`, ignoreNullability: true)
if expression.Parameters.Count > 0 {
Append("(")
goGenerateCallParameters(expression.Parameters)
Append("}")
}
if let propertyInitializers = expression.PropertyInitializers, propertyInitializers.Count > 0 {
Append("{")
helpGenerateCommaSeparatedList(propertyInitializers) { param in
self.Append(param.Name)
self.Append(": ")
self.generateExpression(param.Value)
}
Append("}")
}
}
}
override func generatePropertyAccessExpression(_ property: CGPropertyAccessExpression) {
goGenerateCallSiteForExpression(property)
generateIdentifier(property.Name)
if let params = property.Parameters, params.Count > 0 {
Append("[")
goGenerateCallParameters(property.Parameters)
Append("]")
}
}
override func cStyleEscapeSequenceForCharacter(_ ch: Char) -> String {
return "\\u{"+Convert.ToString(Integer(ch), 16)
}
/*
override func generateStringLiteralExpression(_ expression: CGStringLiteralExpression) {
// handled in base
}
*/
override func generateCharacterLiteralExpression(_ expression: CGCharacterLiteralExpression) {
// Go has no char literals, lets emit a string instead
Append("'\(cStyleEscapeCharactersInStringLiteral(expression.Value.ToString()))'")
}
override func generateIntegerLiteralExpression(_ literalExpression: CGIntegerLiteralExpression) {
switch literalExpression.Base {
case 16: Append("0x"+literalExpression.StringRepresentation(base:16))
case 10: Append(literalExpression.StringRepresentation(base:10))
case 8: Append("0"+literalExpression.StringRepresentation(base:8))
//case 1: Append("0b"+literalExpression.StringRepresentation(base:1))
default: throw Exception("Base \(literalExpression.Base) integer literals are not currently supported for Go.")
}
// no C-style suffixes in Go
}
override func generateFloatLiteralExpression(_ literalExpression: CGFloatLiteralExpression) {
switch literalExpression.Base {
//case 16: Append("0x"+literalExpression.StringRepresentation(base:16))
case 10: Append(literalExpression.StringRepresentation())
default: throw Exception("Base \(literalExpression.Base) float literals are not currently supported for Go.")
}
// no C-style suffixes in Go
}
override func generateImaginaryLiteralExpression(_ literalExpression: CGImaginaryLiteralExpression) {
generateFloatLiteralExpression(literalExpression)
}
override func generateArrayLiteralExpression(_ array: CGArrayLiteralExpression) {
Append("[")
Append(array.Elements.Count.ToString())
Append("]{")
helpGenerateCommaSeparatedList(array.Elements) {
self.generateExpression($0)
}
Append("}")
}
override func generateSetLiteralExpression(_ expression: CGSetLiteralExpression) {
assert(false, "generateSetLiteralExpression is not supported for Go")
}
override func generateDictionaryExpression(_ dictionary: CGDictionaryLiteralExpression) {
assert(dictionary.Keys.Count == dictionary.Values.Count, "Number of keys and values in Dictionary doesn't match.")
Append("{")
for e in 0 ..< dictionary.Keys.Count {
if e > 0 {
Append(", ")
}
generateExpression(dictionary.Keys[e])
Append(": ")
generateExpression(dictionary.Values[e])
}
Append("}")
}
/*
override func generateTupleExpression(_ expression: CGTupleLiteralExpression) {
// default handled in base
}
*/
//
// Type Definitions
//
override func generateAttribute(_ attribute: CGAttribute, inline: Boolean) {
Append("@")
generateAttributeScope(attribute)
generateTypeReference(attribute.`Type`, ignoreNullability: true)
if let parameters = attribute.Parameters, parameters.Count > 0 {
Append("(")
goGenerateAttributeParameters(parameters)
Append(")")
}
if let comment = attribute.Comment {
Append(" ")
generateSingleLineCommentStatement(comment)
} else {
if inline {
Append(" ")
} else {
AppendLine()
}
}
}
func goGenerateTypeVisibilityPrefix(_ visibility: CGTypeVisibilityKind, sealed: Boolean = false, type: CGTypeDefinition? = nil) {
//if let type = type, type is CGClassTypeDefinition {
//switch visibility {
//case .Unspecified:
//if sealed {
//Append("final ")
//}
//case .Unit, .Assembly:
//Append("internal ") // non-sealed for internal use is implied
//if sealed {
//Append("final ")
//}
//case .Public:
//if sealed {
//Append("public final ")
//} else {
//Append("open ")
//}
//}
//} else {
//switch visibility {
//case .Unspecified:
//break;
//case .Unit, .Assembly:
//Append("internal ")
//case .Public:
//Append("public ")
//}
//}
}
func goGenerateMemberTypeVisibilityPrefix(_ visibility: CGMemberVisibilityKind, virtuality: CGMemberVirtualityKind, appendSpace: Boolean = true) {
//switch visibility {
//case .Unspecified: break /* no-op */
//case .Private: Append("private")
//case .Unit: fallthrough
//case .UnitOrProtected: fallthrough
//case .UnitAndProtected: fallthrough
//case .Assembly: fallthrough
//case .AssemblyAndProtected: Append("internal")
//case .AssemblyOrProtected: fallthrough
//case .Protected: fallthrough
//case .Published: fallthrough
//case .Public:
//if virtuality == .Virtual || virtuality == .Override {
//Append("open")
//} else {
//Append("public")
//}
//}
//switch virtuality {
//case .None: break;
//case .Virtual: break; // handled above, and implied for non-pubic
//case .Abstract: if Dialect == CGGoCodeGeneratorDialect.Gold { Append(" __abstract") }
//case .Override: Append(" override")
//case .Final: Append(" final")
//case .Reintroduced: break;
//}
//if appendSpace {
//Append(" ")
//}
}
func goGenerateStaticPrefix(_ isStatic: Boolean) {
//if isStatic {
//Append("static ")
//}
}
func goGenerateAbstractPrefix(_ isAbstract: Boolean) {
//if isAbstract && Dialect == CGGoCodeGeneratorDialect.Gold {
//Append("__abstract ")
//}
}
func goGeneratePartialPrefix(_ isPartial: Boolean) {
//if isPartial && Dialect == .Gold {
//Append("__partial ")
//}
}
override func generateAliasType(_ type: CGTypeAliasDefinition) {
Append("type ")
generateIdentifier(type.Name)
Append(" = ")
generateTypeReference(type.ActualType)
AppendLine()
}
override func generateBlockType(_ block: CGBlockTypeDefinition) {
assert(false, "generateBlockType is not supported for Go")
}
//func goGenerateInlineBlockType(_ block: CGBlockTypeDefinition) {
//if block.IsPlainFunctionPointer {
//Append("@FunctionPointer ")
//}
//Append("(")
//for p in 0 ..< block.Parameters.Count {
//if p > 0 {
//Append(", ")
//}
//if let type = block.Parameters[p].`Type` {
//generateTypeReference(type)
//} else {
//Append("Any?")
//}
//}
//Append(") -> ")
//if let returnType = block.ReturnType, !returnType.IsVoid {
//generateTypeReference(returnType)
//} else {
//Append("()")
//}
//}
override func generateEnumType(_ type: CGEnumTypeDefinition) {
assert(false, "generateEnumType is not supported for Go")
goGenerateTypeVisibilityPrefix(type.Visibility)
//Append("enum ")
//generateIdentifier(type.Name)
////ToDo: generic constraints
//if let baseType = type.BaseType {
//Append(" : ")
//generateTypeReference(baseType, ignoreNullability: true)
//}
//AppendLine(" { ")
//incIndent()
//for m in type.Members {
//if let m = m as? CGEnumValueDefinition {
//self.generateAttributes(m.Attributes)
//Append("case ")
//generateIdentifier(m.Name)
//if let value = m.Value {
//Append(" = ")
//generateExpression(value)
//}
//AppendLine()
//}
//}
//decIndent()
//AppendLine("}")
}
internal func generateFieldTypeMembers(_ type: CGTypeDefinition) {
var lastMember: CGMemberDefinition? = nil
for m in type.Members {
if m is CGFieldOrPropertyDefinition || m is CGEventDefinition {
if let lastMember = lastMember, memberNeedsSpace(m, afterMember: lastMember) && !definitionOnly {
AppendLine()
}
generateTypeMember(m, type: type)
lastMember = m;
}
}
}
internal func generateNonFieldTypeMembers(_ type: CGTypeDefinition) {
var lastMember: CGMemberDefinition? = nil
for m in type.Members {
if !(m is CGFieldOrPropertyDefinition || m is CGEventDefinition) {
if let lastMember = lastMember, memberNeedsSpace(m, afterMember: lastMember) && !definitionOnly {
AppendLine()
}
generateTypeMember(m, type: type)
lastMember = m;
}
}
}
override func generateClassType(_ type: CGClassTypeDefinition) {
AppendLine("/* Classes are not supported in Go (\(type.Name)) */")
}
override func generateStructType(_ type: CGStructTypeDefinition) {
generateStructTypeStart(type)
generateFieldTypeMembers(type)
generateStructTypeEnd(type)
generateNonFieldTypeMembers(type)
}
override func generateStructTypeStart(_ type: CGStructTypeDefinition) {
goGenerateTypeVisibilityPrefix(type.Visibility, sealed: type.Sealed, type: type)
goGenerateStaticPrefix(type.Static)
goGeneratePartialPrefix(type.Partial)
goGenerateAbstractPrefix(type.Abstract)
Append("type ")
generateIdentifier(type.Name)
Append(" struct")
//goGenerateGenericParameters(type.GenericParameters)
goGenerateAncestorList(type)
AppendLine(" { ")
incIndent()
}
override func generateStructTypeEnd(_ type: CGStructTypeDefinition) {
decIndent()
AppendLine("}")
}
override func generateInterfaceTypeStart(_ type: CGInterfaceTypeDefinition) {
goGenerateTypeVisibilityPrefix(type.Visibility, sealed: type.Sealed, type: type)
Append("type ")
generateIdentifier(type.Name)
Append(" interface")
//goGenerateGenericParameters(type.GenericParameters)
goGenerateAncestorList(type)
AppendLine(" { ")
incIndent()
}
override func generateInterfaceTypeEnd(_ type: CGInterfaceTypeDefinition) {
decIndent()
AppendLine("}")
}
override func generateExtensionTypeStart(_ type: CGExtensionTypeDefinition) {
assert(false, "generateExtensionType is not supported for Go")
//goGenerateTypeVisibilityPrefix(type.Visibility)
//Append("extension ")
//if let ancestor = type.Ancestors.FirstOrDefault() {
//generateTypeReference(ancestor, ignoreNullability: true)
//} else {
//generateIdentifier(type.Name)
//}
//Append(" ")
//AppendLine("{ ")
//incIndent()
}
override func generateExtensionTypeEnd(_ type: CGExtensionTypeDefinition) {