forked from cristibaluta/haxe-objc-target
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.ml
885 lines (821 loc) · 34.5 KB
/
common.ml
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
(*
* Copyright (C)2005-2013 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*)
open Ast
open Type
type package_rule =
| Forbidden
| Directory of string
| Remap of string
type pos = Ast.pos
type basic_types = {
mutable tvoid : t;
mutable tint : t;
mutable tfloat : t;
mutable tbool : t;
mutable tnull : t -> t;
mutable tstring : t;
mutable tarray : t -> t;
}
type stats = {
s_files_parsed : int ref;
s_classes_built : int ref;
s_methods_typed : int ref;
s_macros_called : int ref;
}
type platform =
| Cross
| Flash8
| Js
| Neko
| Flash
| Php
| Cpp
| Cs
| Java
| ObjC
(**
The capture policy tells which handling we make of captured locals
(the locals which are referenced in local functions)
See details/implementation in Codegen.captured_vars
*)
type capture_policy =
(** do nothing, let the platform handle it *)
| CPNone
(** wrap all captured variables into a single-element array to allow modifications *)
| CPWrapRef
(** similar to wrap ref, but will only apply to the locals that are declared in loops *)
| CPLoopVars
type platform_config = {
(** has a static type system, with not-nullable basic types (Int/Float/Bool) *)
pf_static : bool;
(** has access to the "sys" package *)
pf_sys : bool;
(** local variables are block-scoped *)
pf_locals_scope : bool;
(** captured local variables are scoped *)
pf_captured_scope : bool;
(** generated locals must be absolutely unique wrt the current function *)
pf_unique_locals : bool;
(** which expressions can be generated to initialize member variables (or will be moved into the constructor *)
pf_can_init_member : tclass_field -> bool;
(** captured variables handling (see before) *)
pf_capture_policy : capture_policy;
(** when calling a method with optional args, do we replace the missing args with "null" constants *)
pf_pad_nulls : bool;
(** add a final return to methods not having one already - prevent some compiler warnings *)
pf_add_final_return : bool;
(** does the platform natively support overloaded functions *)
pf_overload : bool;
}
type context = {
(* config *)
version : int;
args : string list;
mutable sys_args : string list;
mutable display : bool;
mutable debug : bool;
mutable verbose : bool;
mutable foptimize : bool;
mutable platform : platform;
mutable config : platform_config;
mutable std_path : string list;
mutable class_path : string list;
mutable main_class : Type.path option;
mutable defines : (string,string) PMap.t;
mutable package_rules : (string,package_rule) PMap.t;
mutable error : string -> pos -> unit;
mutable warning : string -> pos -> unit;
mutable load_extern_type : (path -> pos -> (string * Ast.package) option) list; (* allow finding types which are not in sources *)
mutable filters : (unit -> unit) list;
mutable defines_signature : string option;
mutable print : string -> unit;
mutable get_macros : unit -> context option;
mutable run_command : string -> int;
(* output *)
mutable file : string;
mutable flash_version : float;
mutable features : (string,bool) Hashtbl.t;
mutable modules : Type.module_def list;
mutable main : Type.texpr option;
mutable types : Type.module_type list;
mutable resources : (string,string) Hashtbl.t;
mutable neko_libs : string list;
mutable php_front : string option;
mutable php_lib : string option;
mutable php_prefix : string option;
mutable swf_libs : (string * (unit -> Swf.swf) * (unit -> ((string list * string),As3hl.hl_class) Hashtbl.t)) list;
mutable java_libs : (string * bool * (unit -> unit) * (unit -> ((string list * string) list)) * ((string list * string) -> ((JData.jclass * string * string) option))) list;
mutable js_gen : (unit -> unit) option;
mutable objc_platform : string;
mutable objc_libs : string list;(* A list of custom frameworks that you wish to link with your project *)
mutable objc_version : float;
mutable objc_bundle_version : float;
mutable objc_bundle_name : string option;
mutable objc_identifier : string option;
mutable objc_owner : string option;
mutable objc_linker_flags : string list;
mutable objc_frameworks : string list;
mutable ios_orientations : string list;
mutable objc_supporting_files : string option;
(* typing *)
mutable basic : basic_types;
}
exception Abort of string * Ast.pos
let display_default = ref false
module Define = struct
type strict_defined =
| AbsolutePath
| AdvancedTelemetry
| As3
| CheckXmlProxy
| CoreApi
| Dce
| DceDebug
| Debug
| Display
| DisplayMode
| DllExport
| DllImport
| DocGen
| Dump
| DumpDependencies
| Fdb
| FlashStrict
| FlashUseStage
| FormatWarning
| GencommonDebug
| HaxeBoot
| HaxeVer
| Interp
| JavaVer
| JsClassic
| Macro
| MacroTimes
| NekoSource
| NekoV1
| NetworkSandbox
| NoCompilation
| NoCOpt
| NoInline
| NoOpt
| NoPatternMatching
| NoRoot
| NoSwfCompress
| NoTraces
| PhpPrefix
| RealPosition
| ReplaceFiles
| Scriptable
| Swc
| SwfCompressLevel
| SwfDebugPassword
| SwfDirectBlit
| SwfGpu
| SwfMark
| SwfMetadata
| SwfPreloaderFrame
| SwfProtected
| SwfScriptTimeout
| Sys
| UseNekoc
| UseRttiDoc
| Vcproj
| NoMacroCache
| Last (* must be last *)
let infos = function
| AbsolutePath -> ("absolute_path","Print absoluate file path in trace output")
| AdvancedTelemetry -> ("advanced-telemetry","Allow the SWF to be measured with Monocle tool")
| As3 -> ("as3","Defined when outputing flash9 as3 source code")
| CheckXmlProxy -> ("check_xml_proxy","Check the used fields of the xml proxy")
| CoreApi -> ("core_api","Defined in the core api context")
| Dce -> ("dce","The current DCE mode")
| DceDebug -> ("dce_debug","Show DCE log")
| Debug -> ("debug","Activated when compiling with -debug")
| Display -> ("display","Activated during completion")
| DisplayMode -> ("display_mode", "The display mode to use (default, position, metadata, usage)")
| DllExport -> ("dll_export", "GenCPP experimental linking")
| DllImport -> ("dll_import", "GenCPP experimental linking")
| DocGen -> ("doc_gen","Do not perform any removal/change in order to correctly generate documentation")
| Dump -> ("dump","Dump the complete typed AST for internal debugging")
| DumpDependencies -> ("dump_dependencies","Dump the classes dependencies")
| Fdb -> ("fdb","Enable full flash debug infos for FDB interactive debugging")
| FlashStrict -> ("flash_strict","More strict typing for flash target")
| FlashUseStage -> ("flash_use_stage","Keep the SWF library initial stage")
| FormatWarning -> ("format_warning","Print a warning for each formated string, for 2.x compatibility")
| GencommonDebug -> ("gencommon_debug","GenCommon internal")
| HaxeBoot -> ("haxe_boot","Given the name 'haxe' to the flash boot class instead of a generated name")
| HaxeVer -> ("haxe_ver","The current Haxe version value")
| Interp -> ("interp","The code is compiled to be run with --interp")
| JavaVer -> ("java_ver", "<version:5-7> Sets the Java version to be targeted")
| JsClassic -> ("js_classic","Don't use a function wrapper and strict mode in JS output")
| Macro -> ("macro","Defined when we compile code in the macro context")
| MacroTimes -> ("macro_times","Display per-macro timing when used with --times")
| NekoSource -> ("neko_source","Output neko source instead of bytecode")
| NekoV1 -> ("neko_v1","Keep Neko 1.x compatibility")
| NetworkSandbox -> ("network-sandbox","Use local network sandbox instead of local file access one")
| NoCompilation -> ("no-compilation","Disable CPP final compilation")
| NoCOpt -> ("no_copt","Disable completion optimization (for debug purposes)")
| NoOpt -> ("no_opt","Disable optimizations")
| NoPatternMatching -> ("no_pattern_matching","Disable pattern matching")
| NoInline -> ("no_inline","Disable inlining")
| NoRoot -> ("no_root","GenCS internal")
| NoMacroCache -> ("no_macro_cache","Disable macro context caching")
| NoSwfCompress -> ("no_swf_compress","Disable SWF output compression")
| NoTraces -> ("no_traces","Disable all trace calls")
| PhpPrefix -> ("php_prefix","Compiled with --php-prefix")
| RealPosition -> ("real_position","Disables haxe source mapping when targetting C#")
| ReplaceFiles -> ("replace_files","GenCommon internal")
| Scriptable -> ("scriptable","GenCPP internal")
| Swc -> ("swc","Output a SWC instead of a SWF")
| SwfCompressLevel -> ("swf_compress_level","<level:1-9> Set the amount of compression for the SWF output")
| SwfDebugPassword -> ("swf_debug_password", "Set a password for debugging.")
| SwfDirectBlit -> ("swf_direct_blit", "Use hardware acceleration to blit graphics")
| SwfGpu -> ("swf_gpu", "Use GPU compositing features when drawing graphics")
| SwfMark -> ("swf_mark","GenSWF8 internal")
| SwfMetadata -> ("swf_metadata", "=<file> Include contents of <file> as metadata in the swf.")
| SwfPreloaderFrame -> ("swf_preloader_frame", "Insert empty first frame in swf")
| SwfProtected -> ("swf_protected","Compile Haxe private as protected in the SWF instead of public")
| SwfScriptTimeout -> ("swf_script_timeout", "Maximum ActionScript processing time before script stuck dialog box displays (in seconds)")
| Sys -> ("sys","Defined for all system platforms")
| UseNekoc -> ("use_nekoc","Use nekoc compiler instead of internal one")
| UseRttiDoc -> ("use_rtti_doc","Allows access to documentation during compilation")
| Vcproj -> ("vcproj","GenCPP internal")
| Last -> assert false
end
module MetaInfo = struct
open Meta
type meta_usage =
| TClass
| TClassField
| TAbstract
| TAbstractField
| TEnum
| TTypedef
| TAnyField
type meta_parameter =
| HasParam of string
| Platform of platform
| Platforms of platform list
| UsedOn of meta_usage
| UsedOnEither of meta_usage list
| Internal
let to_string = function
| Abstract -> ":abstract",("Sets the underlying class implementation as 'abstract'",[Platforms [Java;Cs]])
| Access -> ":access",("Forces private access to package, type or field",[HasParam "Target path";UsedOnEither [TClass;TClassField]])
| Allow -> ":allow",("Allows private access from package, type or field",[HasParam "Target path";UsedOnEither [TClass;TClassField]])
| Annotation -> ":annotation",("Annotation (@interface) definitions on -java-lib imports will be annotated with this metadata. Has no effect on types compiled by Haxe",[Platform Java; UsedOn TClass])
| ArrayAccess -> ":arrayAccess",("Allows [] access on an abstract",[UsedOnEither [TAbstract;TAbstractField]])
| AutoBuild -> ":autoBuild",("Extends @:build metadata to all extending and implementing classes",[HasParam "Build macro call";UsedOn TClass])
| Bind -> ":bind",("Override Swf class declaration",[Platform Flash;UsedOn TClass])
| Bitmap -> ":bitmap",("Embeds given bitmap data into the class (must extend flash.display.BitmapData)",[HasParam "Bitmap file path";UsedOn TClass;Platform Flash])
| Build -> ":build",("Builds a class or enum from a macro",[HasParam "Build macro call";UsedOnEither [TClass;TEnum]])
| BuildXml -> ":buildXml",("",[Platform Cpp])
| Class -> ":class",("Used internally to annotate an enum that will be generated as a class",[Platforms [Java;Cs]; UsedOn TEnum; Internal])
| ClassCode -> ":classCode",("Used to inject platform-native code into a class",[Platforms [Java;Cs]; UsedOn TClass])
| Commutative -> ":commutative",("Declares an abstract operator as commutative",[UsedOn TAbstractField])
| CompilerGenerated -> ":compilerGenerated",("Marks a field as generated by the compiler. Shouldn't be used by the end user",[Platforms [Java;Cs]])
| CoreApi -> ":coreApi",("Identifies this class as a core api class (forces Api check)",[UsedOnEither [TClass;TEnum;TTypedef;TAbstract]])
| CoreType -> ":coreType",("Identifies an abstract as core type so that it requires no implementation",[UsedOn TAbstract])
| CppFileCode -> ":cppFileCode",("",[Platform Cpp])
| CppNamespaceCode -> ":cppNamespaceCode",("",[Platform Cpp])
| Debug -> ":debug",("Forces debug information to be generated into the Swf even without -debug",[UsedOnEither [TClass;TClassField]; Platform Flash])
| Decl -> ":decl",("",[Platform Cpp])
| DefParam -> ":defParam",("?",[])
| Depend -> ":depend",("",[Platform Cpp])
| Deprecated -> ":deprecated",("Automatically added by -java-lib on class fields annotated with @Deprecated annotation. Has no effect on types compiled by Haxe.",[Platform Java; UsedOnEither [TClass;TEnum;TClassField]])
| DynamicObject -> ":dynamicObject",("Used internally to identify the Dynamic Object implementation",[Platforms [Java;Cs]; UsedOn TClass; Internal])
| Enum -> ":enum",("Used internally to annotate a class that was generated from an enum",[Platforms [Java;Cs]; UsedOn TClass; Internal])
| EnumConstructorParam -> ":enumConstructorParam",("Used internally to annotate GADT type parameters",[UsedOn TClass; Internal])
| Expose -> ":expose",("Makes the class available on the window object",[HasParam "?Name=Class path";UsedOn TClass;Platform Js])
| Extern -> ":extern",("Marks the field as extern so it is not generated",[UsedOn TClassField])
| FakeEnum -> ":fakeEnum",("Treat enum as collection of values of the specified type",[HasParam "Type name";UsedOn TEnum])
| File -> ":file",("Includes a given binary file into the target Swf and associates it with the class (must extend flash.utils.ByteArray)",[HasParam "File path";UsedOn TClass;Platform Flash])
| Final -> ":final",("Prevents a class from being extended",[UsedOn TClass])
| Font -> ":font",("Embeds the given TrueType font into the class (must extend flash.text.Font)",[HasParam "TTF path";HasParam "Range String";UsedOn TClass])
| From -> ":from",("Specifies that the field of the abstract is a cast operation from the type identified in the function",[UsedOn TAbstractField])
| FunctionCode -> ":functionCode",("",[Platform Cpp])
| FunctionTailCode -> ":functionTailCode",("",[Platform Cpp])
| Generic -> ":generic",("Marks a class or class field as generic so each type parameter combination generates its own type/field",[UsedOnEither [TClass;TClassField]])
| Getter -> ":getter",("Generates a native getter function on the given field",[HasParam "Class field name";UsedOn TClassField;Platform Flash])
| Hack -> ":hack",("Allows extending classes marked as @:final",[UsedOn TClass])
| HaxeGeneric -> ":haxeGeneric",("Used internally to annotate non-native generic classes",[Platform Cs; UsedOnEither[TClass;TEnum]; Internal])
| HeaderClassCode -> ":headerClassCode",("",[Platform Cpp])
| HeaderCode -> ":headerCode",("",[Platform Cpp])
| HeaderNamespaceCode -> ":headerNamespaceCode",("",[Platform Cpp])
| HxGen -> ":hxGen",("Annotates that an extern class was generated by Haxe",[Platforms [Java;Cs]; UsedOnEither [TClass;TEnum]])
| IfFeature -> ":ifFeature",("Causes a field to be kept by DCE if the given feature is part of the compilation",[HasParam "Feature name";UsedOn TClassField])
| Impl -> ":impl",("Used internally to mark abstract implementation fields",[UsedOn TAbstractField; Internal])
| Include -> ":include",("",[Platforms [Cpp;ObjC]])
| InitPackage -> ":initPackage",("?",[])
| Meta.Internal -> ":internal",("Generates the annotated field/class with 'internal' access",[Platforms [Java;Cs]; UsedOnEither[TClass;TEnum;TClassField]])
| IsVar -> ":isVar",("Forces a physical field to be generated for properties that otherwise would not require one",[UsedOn TClassField])
| JavaNative -> ":javaNative",("Automatically added by -java-lib on classes generated from JAR/class files",[Platform Java; UsedOnEither[TClass;TEnum]; Internal])
| Keep -> ":keep",("Causes a field or type to be kept by DCE",[])
| KeepInit -> ":keepInit",("Causes a class to be kept by DCE even if all its field are removed",[UsedOn TClass])
| KeepSub -> ":keepSub",("Extends @:keep metadata to all implementing and extending classes",[UsedOn TClass])
| Meta -> ":meta",("Internally used to mark a class field as being the metadata field",[])
| Macro -> ":macro",("(deprecated)",[])
| MaybeUsed -> ":maybeUsed",("Internally used by DCE to mark fields that might be kept",[Internal])
| MultiType -> ":multiType",("Specifies that an abstract chooses its this-type from its @:to functions",[UsedOn TAbstract])
| Native -> ":native",("Rewrites the path of a class or enum during generation",[HasParam "Output type path";UsedOnEither [TClass;TEnum]])
| NativeGen -> ":nativeGen",("Annotates that a type should be treated as if it were an extern definition - platform native",[Platforms [Java;Cs]; UsedOnEither[TClass;TEnum]])
| NativeGeneric -> ":nativeGeneric",("Used internally to annotate native generic classes",[Platform Cs; UsedOnEither[TClass;TEnum]; Internal])
| NoCompletion -> ":noCompletion",("Prevents the compiler from suggesting completion on this field",[UsedOn TClassField])
| NoDebug -> ":noDebug",("Does not generate debug information into the Swf even if -debug is set",[UsedOnEither [TClass;TClassField];Platform Flash])
| NoDoc -> ":noDoc",("Prevents a type from being included in documentation generation",[])
| NoImportGlobal -> ":noImportGlobal",("Prevents a static field from being imported with import Class.*",[UsedOn TAnyField])
| NoPackageRestrict -> ":noPackageRestrict",("?",[])
| NoStack -> ":noStack",("",[Platform Cpp])
| NotNull -> ":notNull",("Declares an abstract type as not accepting null values",[UsedOn TAbstract])
| NoUsing -> ":noUsing",("Prevents a field from being used with 'using'",[UsedOn TClassField])
| Ns -> ":ns",("Internally used by the Swf generator to handle namespaces",[Platform Flash])
| Op -> ":op",("Declares an abstract field as being an operator overload",[HasParam "The operation";UsedOn TAbstractField])
| Optional -> ":optional",("Marks the field of a structure as optional",[UsedOn TClassField])
| Overload -> ":overload",("Allows the field to be called with different argument types",[HasParam "Function specification (no expression)";UsedOn TClassField])
| Public -> ":public",("Marks a class field as being public",[UsedOn TClassField])
| PublicFields -> ":publicFields",("Forces all class fields of inheriting classes to be public",[UsedOn TClass])
| PrivateAccess -> ":privateAccess",("Internally used by the typer to allow context-sensitive private access",[Internal])
| Protected -> ":protected",("Marks a class field as being protected",[UsedOn TClassField])
| ReadOnly -> ":readOnly",("Generates a field with the 'readonly' native keyword",[Platform Cs; UsedOn TClassField])
| RealPath -> ":realPath",("Internally used on @:native types to retain original path information",[Internal])
| Remove -> ":remove",("Causes an interface to be removed from all implementing classes before generation",[UsedOn TClass])
| Require -> ":require",("Allows access to a field only if the specified compiler flag is set",[HasParam "Compiler flag to check";UsedOn TClassField])
| ReplaceReflection -> ":replaceReflection",("Used internally to specify a function that should replace its internal __hx_functionName counterpart",[Platforms [Java;Cs]; UsedOnEither[TClass;TEnum]; Internal])
| Rtti -> ":rtti",("Adds runtime type informations",[UsedOn TClass])
| Runtime -> ":runtime",("?",[])
| RuntimeValue -> ":runtimeValue",("Marks an abstract as being a runtime value",[UsedOn TAbstract])
| Setter -> ":setter",("Generates a native getter function on the given field",[HasParam "Class field name";UsedOn TClassField;Platform Flash])
| SkipCtor -> ":skipCtor",("Used internally to generate a constructor as if it were a native type (no __hx_ctor)",[Platforms [Java;Cs]; Internal])
| SkipReflection -> ":skipReflection",("Used internally to annotate a field that shouldn't have its reflection data generated",[Platforms [Java;Cs]; UsedOn TClassField; Internal])
| Sound -> ":sound",( "Includes a given .wav or .mp3 file into the target Swf and associates it with the class (must extend flash.media.Sound)",[HasParam "File path";UsedOn TClass;Platform Flash])
| Struct -> ":struct",("Marks a class definition as a struct.",[Platform Cs; UsedOn TClass])
| SuppressWarnings -> ":suppressWarnings",("Adds a SuppressWarnings annotation for the generated Java class",[Platform Java; UsedOn TClass])
| Throws -> ":throws",("Adds a 'throws' declaration to the generated function.",[HasParam "Type as String"; Platform Java; UsedOn TClassField])
| To -> ":to",("Specifies that the field of the abstract is a cast operation to the type identified in the function",[UsedOn TAbstractField])
| ToString -> ":toString",("Internally used",[Internal])
| Transient -> ":transient",("Adds the 'transient' flag to the class field",[Platform Java; UsedOn TClassField])
| ValueUsed -> ":valueUsed",("Internally used by DCE to mark an abstract value as used",[Internal])
| Volatile -> ":volatile",("",[Platforms [Java;Cs]])
| UnifyMinDynamic -> ":unifyMinDynamic",("Allows a collection of types to unify to Dynamic",[UsedOn TClassField])
| Unreflective -> ":unreflective",("",[Platform Cpp])
| Unsafe -> ":unsafe",("Declares a class, or a method with the C#'s 'unsafe' flag",[Platform Cs; UsedOnEither [TClass;TClassField]])
| Usage -> ":usage",("?",[])
| Used -> ":used",("Internally used by DCE to mark a class or field as used",[Internal])
| C -> ":c",("Mark a C method in Objective-C code",[Platform ObjC])
| Category -> ":category",("Converts a class to an Objective-C category of another class",[Platform ObjC])
| GetterBody -> ":getterBody",("Set the code inside a getter method",[UsedOn TClassField;Platform ObjC])
| Import -> ":import",("Generates an #import statement for a native class",[Platform ObjC])
| Framework -> ":framework",("Generates an #import for the framework instead the class path",[Platform ObjC])
| Selector -> ":sel",("Use this as a signature instead the method arguments",[Platform ObjC])
| Weak -> ":weak",("Declaring a property with weak reference instead strong",[Platform ObjC])
| Last -> assert false
(* do not put any custom metadata after Last *)
| Dollar s -> "$" ^ s,("",[])
| Custom s -> s,("",[])
let hmeta =
let h = Hashtbl.create 0 in
let rec loop i =
let m = Obj.magic i in
if m <> Last then begin
Hashtbl.add h (fst (to_string m)) m;
loop (i + 1);
end;
in
loop 0;
h
let parse s = try Hashtbl.find hmeta (":" ^ s) with Not_found -> Custom (":" ^ s)
let from_string s =
if s = "" then Custom "" else match s.[0] with
| ':' -> (try Hashtbl.find hmeta s with Not_found -> Custom s)
| '$' -> Dollar (String.sub s 1 (String.length s - 1))
| _ -> Custom s
end
let stats =
{
s_files_parsed = ref 0;
s_classes_built = ref 0;
s_methods_typed = ref 0;
s_macros_called = ref 0;
}
let default_config =
{
pf_static = true;
pf_sys = true;
pf_locals_scope = true;
pf_captured_scope = true;
pf_unique_locals = false;
pf_can_init_member = (fun _ -> true);
pf_capture_policy = CPNone;
pf_pad_nulls = false;
pf_add_final_return = false;
pf_overload = false;
}
let get_config com =
let defined f = PMap.mem (fst (Define.infos f)) com.defines in
match com.platform with
| Cross ->
default_config
| Flash8 ->
{
pf_static = false;
pf_sys = false;
pf_locals_scope = com.flash_version > 6.;
pf_captured_scope = false;
pf_unique_locals = false;
pf_can_init_member = (fun _ -> true);
pf_capture_policy = CPLoopVars;
pf_pad_nulls = false;
pf_add_final_return = false;
pf_overload = false;
}
| Js ->
{
pf_static = false;
pf_sys = false;
pf_locals_scope = false;
pf_captured_scope = false;
pf_unique_locals = false;
pf_can_init_member = (fun _ -> false);
pf_capture_policy = CPLoopVars;
pf_pad_nulls = false;
pf_add_final_return = false;
pf_overload = false;
}
| Neko ->
{
pf_static = false;
pf_sys = true;
pf_locals_scope = true;
pf_captured_scope = true;
pf_unique_locals = false;
pf_can_init_member = (fun _ -> false);
pf_capture_policy = CPNone;
pf_pad_nulls = true;
pf_add_final_return = false;
pf_overload = false;
}
| Flash when defined Define.As3 ->
{
pf_static = true;
pf_sys = false;
pf_locals_scope = false;
pf_captured_scope = true;
pf_unique_locals = true;
pf_can_init_member = (fun _ -> true);
pf_capture_policy = CPLoopVars;
pf_pad_nulls = false;
pf_add_final_return = true;
pf_overload = false;
}
| Flash ->
{
pf_static = true;
pf_sys = false;
pf_locals_scope = true;
pf_captured_scope = true; (* handled by genSwf9 *)
pf_unique_locals = false;
pf_can_init_member = (fun _ -> false);
pf_capture_policy = CPLoopVars;
pf_pad_nulls = false;
pf_add_final_return = false;
pf_overload = false;
}
| Php ->
{
pf_static = false;
pf_sys = true;
pf_locals_scope = false; (* some duplicate work is done in genPhp *)
pf_captured_scope = false;
pf_unique_locals = false;
pf_can_init_member = (fun cf ->
match cf.cf_kind, cf.cf_expr with
| Var { v_write = AccCall }, _ -> false
| _, Some { eexpr = TTypeExpr _ } -> false
| _ -> true
);
pf_capture_policy = CPNone;
pf_pad_nulls = true;
pf_add_final_return = false;
pf_overload = false;
}
| Cpp ->
{
pf_static = true;
pf_sys = true;
pf_locals_scope = true;
pf_captured_scope = true;
pf_unique_locals = false;
pf_can_init_member = (fun _ -> false);
pf_capture_policy = CPWrapRef;
pf_pad_nulls = true;
pf_add_final_return = true;
pf_overload = false;
}
| Cs ->
{
pf_static = true;
pf_sys = true;
pf_locals_scope = false;
pf_captured_scope = true;
pf_unique_locals = true;
pf_can_init_member = (fun _ -> false);
pf_capture_policy = CPWrapRef;
pf_pad_nulls = true;
pf_add_final_return = false;
pf_overload = true;
}
| Java ->
{
pf_static = true;
pf_sys = true;
pf_locals_scope = false;
pf_captured_scope = true;
pf_unique_locals = false;
pf_can_init_member = (fun _ -> false);
pf_capture_policy = CPWrapRef;
pf_pad_nulls = true;
pf_add_final_return = false;
pf_overload = true;
}
| ObjC ->
{
pf_static = false;
pf_sys = true;
pf_locals_scope = false;
pf_captured_scope = true;
pf_unique_locals = false;
pf_can_init_member = (fun _ -> false);
pf_capture_policy = CPNone;
pf_pad_nulls = false;
pf_add_final_return = true;
pf_overload = true;
}
let create v args =
let m = Type.mk_mono() in
{
version = v;
args = args;
sys_args = args;
debug = false;
display = !display_default;
verbose = false;
foptimize = true;
features = Hashtbl.create 0;
platform = Cross;
config = default_config;
print = (fun s -> print_string s; flush stdout);
run_command = Sys.command;
std_path = [];
class_path = [];
main_class = None;
defines = PMap.add "true" "1" (if !display_default then PMap.add "display" "1" PMap.empty else PMap.empty);
package_rules = PMap.empty;
file = "";
types = [];
filters = [];
modules = [];
main = None;
flash_version = 10.;
resources = Hashtbl.create 0;
php_front = None;
php_lib = None;
swf_libs = [];
java_libs = [];
neko_libs = [];
php_prefix = None;
js_gen = None;
objc_platform = "universal";
objc_libs = [];
objc_version = 6.0;
objc_bundle_version = 1.0;
objc_identifier = None;
objc_owner = None;
objc_bundle_name = None;
ios_orientations = [];
objc_supporting_files = None;
objc_linker_flags = [];
objc_frameworks = [];
load_extern_type = [];
defines_signature = None;
get_macros = (fun() -> None);
warning = (fun _ _ -> assert false);
error = (fun _ _ -> assert false);
basic = {
tvoid = m;
tint = m;
tfloat = m;
tbool = m;
tnull = (fun _ -> assert false);
tstring = m;
tarray = (fun _ -> assert false);
};
}
let log com str =
if com.verbose then com.print (str ^ "\n")
let clone com =
let t = com.basic in
{ com with basic = { t with tvoid = t.tvoid }; main_class = None; features = Hashtbl.create 0; }
let file_time file =
try (Unix.stat file).Unix.st_mtime with _ -> 0.
let get_signature com =
match com.defines_signature with
| Some s -> s
| None ->
let str = String.concat "@" (PMap.foldi (fun k v acc ->
(* don't make much difference between these special compilation flags *)
match k with
| "display" | "use_rtti_doc" | "macrotimes" -> acc
| _ -> k :: v :: acc
) com.defines []) in
let s = Digest.string str in
com.defines_signature <- Some s;
s
let file_extension file =
match List.rev (ExtString.String.nsplit file ".") with
| e :: _ -> String.lowercase e
| [] -> ""
let platforms = [
Flash8;
Js;
Neko;
Flash;
Php;
Cpp;
Cs;
Java;
ObjC;
]
let platform_name = function
| Cross -> "cross"
| Flash8 -> "flash8"
| Js -> "js"
| Neko -> "neko"
| Flash -> "flash"
| Php -> "php"
| Cpp -> "cpp"
| Cs -> "cs"
| Java -> "java"
| ObjC -> "objc"
let flash_versions = List.map (fun v ->
let maj = int_of_float v in
let min = int_of_float (mod_float (v *. 10.) 10.) in
v, string_of_int maj ^ (if min = 0 then "" else "_" ^ string_of_int min)
) [9.;10.;10.1;10.2;10.3;11.;11.1;11.2;11.3;11.4;11.5;11.6;11.7;11.8]
let objc_ios_versions = List.map (fun v ->
let maj = int_of_float v in
let min = int_of_float (mod_float (v *. 10.) 10.) in
v, string_of_int maj ^ (if min = 0 then "" else "_" ^ string_of_int min)
) [4.0;4.3;5.0;6.0]
let objc_osx_versions = List.map (fun v ->
let maj = int_of_float v in
let min = int_of_float (mod_float (v *. 10.) 10.) in
v, string_of_int maj ^ (if min = 0 then "" else "_" ^ string_of_int min)
) [10.7;10.8]
let raw_defined ctx v =
PMap.mem v ctx.defines
let defined ctx v =
raw_defined ctx (fst (Define.infos v))
let raw_defined_value ctx k =
PMap.find k ctx.defines
let defined_value ctx v =
raw_defined_value ctx (fst (Define.infos v))
let defined_value_safe ctx v =
try defined_value ctx v
with Not_found -> ""
let raw_define ctx v =
let k,v = try ExtString.String.split v "=" with _ -> v,"1" in
ctx.defines <- PMap.add k v ctx.defines;
let k = String.concat "_" (ExtString.String.nsplit k "-") in
ctx.defines <- PMap.add k v ctx.defines;
ctx.defines_signature <- None
let define_value ctx k v =
raw_define ctx (fst (Define.infos k) ^ "=" ^ v)
let define ctx v =
raw_define ctx (fst (Define.infos v))
let init_platform com pf =
com.platform <- pf;
let name = platform_name pf in
let forbid acc p = if p = name || PMap.mem p acc then acc else PMap.add p Forbidden acc in
com.package_rules <- List.fold_left forbid com.package_rules (List.map platform_name platforms);
com.config <- get_config com;
(* if com.config.pf_static then define com "static"; *)
if com.config.pf_sys then define com Define.Sys else com.package_rules <- PMap.add "sys" Forbidden com.package_rules;
raw_define com name
let add_feature com f =
Hashtbl.replace com.features f true
let has_dce com =
(try defined_value com Define.Dce <> "no" with Not_found -> false)
let rec has_feature com f =
try
Hashtbl.find com.features f
with Not_found ->
if com.types = [] then not (has_dce com) else
match List.rev (ExtString.String.nsplit f ".") with
| [] -> assert false
| [cl] -> has_feature com (cl ^ ".*")
| meth :: cl :: pack ->
let r = (try
let path = List.rev pack, cl in
(match List.find (fun t -> t_path t = path && not (Ast.Meta.has Ast.Meta.RealPath (t_infos t).mt_meta)) com.types with
| t when meth = "*" -> (match t with TAbstractDecl a -> Ast.Meta.has Ast.Meta.ValueUsed a.a_meta | _ -> Ast.Meta.has Ast.Meta.Used (t_infos t).mt_meta)
| TClassDecl ({cl_extern = true} as c) -> Meta.has Meta.Used (try PMap.find meth c.cl_statics with Not_found -> PMap.find meth c.cl_fields).cf_meta
| TClassDecl c -> PMap.exists meth c.cl_statics || PMap.exists meth c.cl_fields
| _ -> false)
with Not_found ->
false
) in
let r = r || not (has_dce com) in
Hashtbl.add com.features f r;
r
let allow_package ctx s =
try
if (PMap.find s ctx.package_rules) = Forbidden then ctx.package_rules <- PMap.remove s ctx.package_rules
with Not_found ->
()
let error msg p = raise (Abort (msg,p))
let platform ctx p = ctx.platform = p
let add_filter ctx f =
ctx.filters <- f :: ctx.filters
let find_file ctx f =
let rec loop = function
| [] -> raise Not_found
| p :: l ->
let file = p ^ f in
if Sys.file_exists file then
file
else
loop l
in
loop ctx.class_path
let get_full_path f = try Extc.get_full_path f with _ -> f
let unique_full_path = if Sys.os_type = "Win32" || Sys.os_type = "Cygwin" then (fun f -> String.lowercase (get_full_path f)) else get_full_path
let normalize_path p =
let l = String.length p in
if l = 0 then
"./"
else match p.[l-1] with
| '\\' | '/' -> p
| _ -> p ^ "/"
(* ------------------------- TIMERS ----------------------------- *)
type timer_infos = {
name : string;
mutable start : float list;
mutable total : float;
}
let get_time = Extc.time
let htimers = Hashtbl.create 0
let new_timer name =
try
let t = Hashtbl.find htimers name in
t.start <- get_time() :: t.start;
t
with Not_found ->
let t = { name = name; start = [get_time()]; total = 0.; } in
Hashtbl.add htimers name t;
t
let curtime = ref []
let close t =
let start = (match t.start with
| [] -> assert false
| s :: l -> t.start <- l; s
) in
let now = get_time() in
let dt = now -. start in
t.total <- t.total +. dt;
let rec loop() =
match !curtime with
| [] -> failwith ("Timer " ^ t.name ^ " closed while not active")
| tt :: l -> curtime := l; if t != tt then loop()
in
loop();
(* because of rounding errors while adding small times, we need to make sure that we don't have start > now *)
List.iter (fun ct -> ct.start <- List.map (fun t -> let s = t +. dt in if s > now then now else s) ct.start) !curtime
let timer name =
let t = new_timer name in
curtime := t :: !curtime;
(function() -> close t)
let rec close_times() =
match !curtime with
| [] -> ()
| t :: _ -> close t; close_times()
;;
Ast.Meta.to_string_ref := fun m -> fst (MetaInfo.to_string m)