Top > C++ > AngelScript > コードメモ

ビルド時間短縮化 Edit

as_builder.cpp
すべてを展開すべてを収束
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
-
|
|
|
-
|
-
|
|
-
|
!
|
|
|
!
!
!
    {
        asCString str(name);
        asCModule::SFMapNode* node = 0;
        if ( module->scriptFunctionsMap.MoveTo( &node , asCModule::SFCompare(&str) ) )
        {// 移動成功
            do
            {
                // 追加
                if ( node->value->objectType == 0 )
                {
                    funcs.PushLast(node->value->id);
                }
 
                // 次へ
                module->scriptFunctionsMap.MoveNext( &node , node );
            } while( node != 0 );
        }
    }
as_module.h
すべてを展開すべてを収束
  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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
-
|
|
|
!
 
 
-
|
|
!
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
-
|
|
|
|
|
-
|
|
|
|
-
|
|
|
!
|
-
|
|
|
!
|
|
!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
 
 
/*
   AngelCode Scripting Library
   Copyright (c) 2003-2010 Andreas Jonsson
 
   This software is provided 'as-is', without any express or implied 
   warranty. In no event will the authors be held liable for any 
   damages arising from the use of this software.
 
   Permission is granted to anyone to use this software for any 
   purpose, including commercial applications, and to alter it and 
   redistribute it freely, subject to the following restrictions:
 
   1. The origin of this software must not be misrepresented; you 
      must not claim that you wrote the original software. If you use
      this software in a product, an acknowledgment in the product 
      documentation would be appreciated but is not required.
 
   2. Altered source versions must be plainly marked as such, and 
      must not be misrepresented as being the original software.
 
   3. This notice may not be removed or altered from any source 
      distribution.
 
   The original version of this library can be located at:
   http://www.angelcode.com/angelscript/
 
   Andreas Jonsson
   andreas@angelcode.com
*/
 
 
 
//
// as_module.h
//
// A class that holds a script module
//
 
#ifndef AS_MODULE_H
#define AS_MODULE_H
 
#include "as_config.h"
#include "as_atomic.h"
#include "as_string.h"
#include "as_array.h"
#include "as_datatype.h"
#include "as_scriptfunction.h"
#include "as_property.h"
#include "as_map.h"
 
BEGIN_AS_NAMESPACE
 
// TODO: import: Remove this when the imported functions are removed
const int FUNC_IMPORTED = 0x40000000;
 
class asCScriptEngine;
class asCCompiler;
class asCBuilder;
class asCContext;
class asCConfigGroup;
 
struct sBindInfo
{
    asCScriptFunction *importedFunctionSignature;
    asCString           importFromModule;
    int                boundFunctionId;
};
 
struct sObjectTypePair
{
    asCObjectType *a;
    asCObjectType *b;
};
 
// TODO: import: Remove function imports. When I have implemented function 
//               pointers the function imports should be deprecated.
 
// TODO: Need a separate interface for compiling scripts. The asIScriptCompiler
//       will have a target module, and will allow the compilation of an entire
//       script or just individual functions within the scope of the module
// 
//       With this separation it will be possible to compile the library without
//       the compiler, thus giving a much smaller binary executable.
 
// TODO: There should be an special compile option that will let the application
//       recompile an already compiled script. The compiler should check if no
//       destructive changes have been made (changing function signatures, etc)
//       then it should simply replace the bytecode within the functions without
//       changing the values of existing global properties, etc.
 
 
class asCModule : public asIScriptModule
{
//-------------------------------------------
// Public interface
//--------------------------------------------
public:
    class SFCompare
    {
    public:
        explicit SFCompare(asCString* str = 0) : mStrPtr(str){}
 
        bool operator < (const SFCompare& aRHS)const
        {
            assert(mStrPtr != 0);
            assert(aRHS.mStrPtr != 0);
            return *mStrPtr < *aRHS.mStrPtr;
        }
        bool operator == (const SFCompare& aRHS)const
        {
            assert(mStrPtr != 0);
            assert(aRHS.mStrPtr != 0);
            return *mStrPtr == *aRHS.mStrPtr;
        }
    private:
        asCString* mStrPtr;
    };
    typedef asCMap<SFCompare, asCScriptFunction*> SFMap;
    typedef asSMapNode<SFCompare, asCScriptFunction*> SFMapNode;
 
    virtual asIScriptEngine *GetEngine();
    virtual void             SetName(const char *name);
    virtual const char      *GetName();
 
    // Compilation
    virtual int  AddScriptSection(const char *name, const char *code, size_t codeLength, int lineOffset);
    virtual int  Build();
    virtual int  CompileFunction(const char *sectionName, const char *code, int lineOffset, asDWORD reserved, asIScriptFunction **outFunc);
    virtual int  CompileGlobalVar(const char *sectionName, const char *code, int lineOffset);
 
    // Script functions
    virtual int                GetFunctionCount();
    virtual int                GetFunctionIdByIndex(int index);
    virtual int                GetFunctionIdByName(const char *name);
    virtual int                GetFunctionIdByDecl(const char *decl);
    virtual asIScriptFunction *GetFunctionDescriptorByIndex(int index);
    virtual asIScriptFunction *GetFunctionDescriptorById(int funcId);
    virtual int                RemoveFunction(int funcId);
 
    // Script global variables
    virtual int         ResetGlobalVars();
    virtual int         GetGlobalVarCount();
    virtual int         GetGlobalVarIndexByName(const char *name);
    virtual int         GetGlobalVarIndexByDecl(const char *decl);
    virtual const char *GetGlobalVarDeclaration(int index);
    virtual const char *GetGlobalVarName(int index);
    virtual int         GetGlobalVarTypeId(int index, bool *isConst);
    virtual void       *GetAddressOfGlobalVar(int index);
    virtual int         RemoveGlobalVar(int index);
 
    // Type identification
    virtual int            GetObjectTypeCount();
    virtual asIObjectType *GetObjectTypeByIndex(asUINT index);
    virtual int            GetTypeIdByDecl(const char *decl);
 
    // Enums
    virtual int         GetEnumCount();
    virtual const char *GetEnumByIndex(asUINT index, int *enumTypeId);
    virtual int         GetEnumValueCount(int enumTypeId);
    virtual const char *GetEnumValueByIndex(int enumTypeId, asUINT index, int *outValue);
 
    // Typedefs
    virtual int         GetTypedefCount();
    virtual const char *GetTypedefByIndex(asUINT index, int *typeId);
 
    // Dynamic binding between modules
    virtual int         GetImportedFunctionCount();
    virtual int         GetImportedFunctionIndexByDecl(const char *decl);
    virtual const char *GetImportedFunctionDeclaration(int importIndex);
    virtual const char *GetImportedFunctionSourceModule(int importIndex);
    virtual int         BindImportedFunction(int index, int sourceID);
    virtual int         UnbindImportedFunction(int importIndex);
    virtual int         BindAllImportedFunctions();
    virtual int         UnbindAllImportedFunctions();
 
    // Bytecode Saving/Loading
    virtual int SaveByteCode(asIBinaryStream *out);
    virtual int LoadByteCode(asIBinaryStream *in);
 
//-----------------------------------------------
// Internal
//-----------------------------------------------
    asCModule(const char *name, asCScriptEngine *engine);
    ~asCModule();
 
//protected:
    friend class asCScriptEngine;
    friend class asCBuilder;
    friend class asCCompiler;
    friend class asCContext;
    friend class asCRestore;
 
    void InternalReset();
 
    int  CallInit();
    void CallExit();
 
    void JITCompile();
 
    int  AddScriptFunction(int sectionIdx, int id, const char *name, const asCDataType &returnType, asCDataType *params, asETypeModifiers *inOutFlags, int paramCount, bool isInterface, asCObjectType *objType = 0, bool isConstMethod = false, bool isGlobalFunction = false);
    int  AddScriptFunction(asCScriptFunction *func);
    int  AddImportedFunction(int id, const char *name, const asCDataType &returnType, asCDataType *params, asETypeModifiers *inOutFlags, int paramCount, const asCString &moduleName);
    int  AddFuncDef(const char *name);
 
    int  GetNextImportedFunctionId();
 
    void ResolveInterfaceIds();
    bool AreInterfacesEqual(asCObjectType *a, asCObjectType *b, asCArray<sObjectTypePair> &equals);
    bool AreTypesEqual(const asCDataType &a, const asCDataType &b, asCArray<sObjectTypePair> &equals);
 
    asCScriptFunction *GetImportedFunction(int funcId);
 
    asCObjectType *GetObjectType(const char *type);
 
    asCGlobalProperty *AllocateGlobalProperty(const char *name, const asCDataType &dt);
 
 
    asCString name;
 
    asCScriptEngine *engine;
    asCBuilder      *builder;
 
    // This array holds all functions, class members, factories, etc that were compiled with the module
    asCArray<asCScriptFunction *>  scriptFunctions;
    SFMap scriptFunctionsMap;
    // This array holds global functions declared in the module
    asCArray<asCScriptFunction *>  globalFunctions;
    // This array holds imported functions in the module
    asCArray<sBindInfo *>          bindInformations;
 
    // This array holds the global variables declared in the script
    asCArray<asCGlobalProperty *>  scriptGlobals;
    bool                           isGlobalVarInitialized;
 
    // This array holds class and interface types
    asCArray<asCObjectType*>       classTypes;
    // This array holds enum types
    asCArray<asCObjectType*>       enumTypes;
    // This array holds typedefs
    asCArray<asCObjectType*>       typeDefs;
    // This array holds the funcdefs declared in the module
    asCArray<asCScriptFunction*>   funcDefs;
};
 
END_AS_NAMESPACE
 
#endif
as_module.cpp
すべてを展開すべてを収束
   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
-
|
|
|
|
|
!
 
 
 
-
|
|
|
-
|
|
!
|
|
|
-
|
|
|
|
!
!
 
 
 
-
|
!
 
 
 
-
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
!
 
 
 
-
|
-
|
!
!
 
 
 
-
|
|
|
|
|
|
|
|
-
|
|
|
!
|
|
|
|
-
|
|
!
|
|
|
|
|
|
|
-
|
|
|
|
|
!
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
-
|
-
|
!
!
|
|
|
|
|
-
|
-
|
-
|
|
|
!
|
|
|
|
!
!
|
|
-
|
|
!
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
-
|
-
|
|
-
|
|
|
|
|
-
|
|
|
|
!
!
!
!
|
|
!
 
 
 
-
|
|
|
|
|
|
-
|
|
!
|
|
|
|
-
|
-
|
|
|
!
!
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
!
|
!
 
 
 
-
|
|
|
|
-
|
-
|
|
|
|
!
!
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
-
|
-
|
|
!
!
|
|
-
|
|
|
|
!
!
!
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
-
|
-
|
|
!
!
|
|
-
|
|
|
|
!
!
!
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
-
|
-
|
|
!
!
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
-
|
|
-
|
|
!
!
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
!
 
 
 
 
-
|
|
|
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
|
!
 
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
-
|
|
!
|
|
|
|
|
|
-
|
!
|
|
|
|
|
|
|
|
-
|
|
!
|
|
!
 
 
 
-
|
|
-
|
!
|
|
|
|
!
 
 
 
 
 
 
-
|
|
|
|
|
|
|
|
-
|
|
!
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
!
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
-
|
|
!
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
!
 
 
 
-
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
!
!
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
-
|
-
|
|
!
!
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
!
|
|
|
|
-
|
|
|
-
|
-
|
|
|
!
!
|
|
|
-
|
-
|
|
|
!
!
|
|
|
|
-
|
-
|
|
-
|
|
-
|
|
|
|
-
|
|
!
!
!
!
!
|
|
|
-
|
-
|
-
|
|
|
|
!
!
!
|
|
|
!
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
-
|
|
!
!
|
|
|
!
|
|
|
-
|
-
|
-
|
|
!
!
!
|
|
-
|
|
|
|
!
|
|
!
 
 
 
-
|
|
|
|
|
|
|
-
|
|
|
|
-
|
-
|
|
!
!
|
|
-
|
|
|
!
|
-
|
|
|
!
!
|
|
!
 
 
 
-
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
!
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
!
!
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
!
|
|
|
|
|
|
|
|
|
|
-
|
|
|
!
|
|
|
|
|
|
!
 
 
 
-
|
|
-
|
-
|
|
|
|
|
|
|
|
!
!
|
|
!
 
 
 
-
|
|
|
|
|
|
|
|
|
|
!
 
 
 
 
/*
   AngelCode Scripting Library
   Copyright (c) 2003-2010 Andreas Jonsson
 
   This software is provided 'as-is', without any express or implied 
   warranty. In no event will the authors be held liable for any 
   damages arising from the use of this software.
 
   Permission is granted to anyone to use this software for any 
   purpose, including commercial applications, and to alter it and 
   redistribute it freely, subject to the following restrictions:
 
   1. The origin of this software must not be misrepresented; you 
      must not claim that you wrote the original software. If you use
      this software in a product, an acknowledgment in the product 
      documentation would be appreciated but is not required.
 
   2. Altered source versions must be plainly marked as such, and 
      must not be misrepresented as being the original software.
 
   3. This notice may not be removed or altered from any source 
      distribution.
 
   The original version of this library can be located at:
   http://www.angelcode.com/angelscript/
 
   Andreas Jonsson
   andreas@angelcode.com
*/
 
 
 
//
// as_module.cpp
//
// A class that holds a script module
//
 
#include "as_config.h"
#include "as_module.h"
#include "as_builder.h"
#include "as_context.h"
#include "as_texts.h"
 
BEGIN_AS_NAMESPACE
 
// internal
asCModule::asCModule(const char *name, asCScriptEngine *engine)
{
    this->name     = name;
    this->engine   = engine;
 
    builder = 0;
    isGlobalVarInitialized = false;
}
 
// internal
asCModule::~asCModule()
{
    InternalReset();
 
    if( builder ) 
    {
        asDELETE(builder,asCBuilder);
        builder = 0;
    }
 
    // Remove the module from the engine
    if( engine )
    {
        if( engine->lastModule == this )
            engine->lastModule = 0;
 
        engine->scriptModules.RemoveValue(this);
    }
}
 
// interface
asIScriptEngine *asCModule::GetEngine()
{
    return engine;
}
 
// interface
void asCModule::SetName(const char *name)
{
    this->name = name;
}
 
// interface
const char *asCModule::GetName()
{
    return name.AddressOf();
}
 
// interface
int asCModule::AddScriptSection(const char *name, const char *code, size_t codeLength, int lineOffset)
{
    if( !builder )
        builder = asNEW(asCBuilder)(engine, this);
 
    builder->AddCode(name, code, (int)codeLength, lineOffset, (int)engine->GetScriptSectionNameIndex(name ? name : ""), engine->ep.copyScriptSections);
 
    return asSUCCESS;
}
 
// internal
void asCModule::JITCompile()
{
    for (unsigned int i = 0; i < scriptFunctions.GetLength(); i++)
    {
        scriptFunctions[i]->JITCompile();
    }
}
 
// interface
int asCModule::Build()
{
    // Only one thread may build at one time
    // TODO: It should be possible to have multiple threads perform compilations
    int r = engine->RequestBuild();
    if( r < 0 )
        return r;
 
    engine->PrepareEngine();
    if( engine->configFailed )
    {
        engine->WriteMessage("", 0, 0, asMSGTYPE_ERROR, TXT_INVALID_CONFIGURATION);
        engine->BuildCompleted();
        return asINVALID_CONFIGURATION;
    }
 
     InternalReset();
 
    if( !builder )
    {
        engine->BuildCompleted();
        return asSUCCESS;
    }
 
    // Compile the script
    r = builder->Build();
    asDELETE(builder,asCBuilder);
    builder = 0;
    
    if( r < 0 )
    {
        // Reset module again
        InternalReset();
 
        engine->BuildCompleted();
        return r;
    }
 
    JITCompile();
 
     engine->PrepareEngine();
    engine->BuildCompleted();
 
    // Initialize global variables
    if( r >= 0 && engine->ep.initGlobalVarsAfterBuild )
        r = ResetGlobalVars();
 
    return r;
}
 
// interface
int asCModule::ResetGlobalVars()
{
    if( isGlobalVarInitialized ) 
        CallExit();
 
    // TODO: The application really should do this manually through a context
    //       otherwise it cannot properly handle script exceptions that may be
    //       thrown by object initializations.
    return CallInit();
}
 
// interface
int asCModule::GetFunctionIdByIndex(int index)
{
    if( index < 0 || index >= (int)scriptFunctions.GetLength() )
        return asNO_FUNCTION;
 
    return scriptFunctions[index]->id;
}
 
// internal
int asCModule::CallInit()
{
    if( isGlobalVarInitialized ) 
        return asERROR;
 
    // Each global variable needs to be cleared individually
    asUINT n;
    for( n = 0; n < scriptGlobals.GetLength(); n++ )
    {
        if( scriptGlobals[n] )
        {
            memset(scriptGlobals[n]->GetAddressOfValue(), 0, sizeof(asDWORD)*scriptGlobals[n]->type.GetSizeOnStackDWords());
        }
    }
 
    // Call the init function for each of the global variables
    asIScriptContext *ctx = 0;
    int r = 0;
    for( n = 0; n < scriptGlobals.GetLength() && r == 0; n++ )
    {
        if( scriptGlobals[n]->GetInitFunc() )
        {
            if( ctx == 0 )
            {
                r = engine->CreateContext(&ctx, true);
                if( r < 0 )
                    break;
            }
 
            r = ctx->Prepare(scriptGlobals[n]->GetInitFunc()->id);
            if( r >= 0 )
                r = ctx->Execute();
        }
    }
 
    if( ctx )
    {
        ctx->Release();
        ctx = 0;
    }
 
    // Even if the initialization failed we need to set the 
    // flag that the variables have been initialized, otherwise
    // the module won't free those variables that really were 
    // initialized.
    isGlobalVarInitialized = true;
 
    if( r != asEXECUTION_FINISHED )
        return asINIT_GLOBAL_VARS_FAILED;
 
    return asSUCCESS;
}
 
// internal
void asCModule::CallExit()
{
    if( !isGlobalVarInitialized ) return;
 
    for( size_t n = 0; n < scriptGlobals.GetLength(); n++ )
    {
        if( scriptGlobals[n]->type.IsObject() )
        {
            void *obj = *(void**)scriptGlobals[n]->GetAddressOfValue();
            if( obj )
            {
                asCObjectType *ot = scriptGlobals[n]->type.GetObjectType();
 
                if( ot->beh.release )
                    engine->CallObjectMethod(obj, ot->beh.release);
                else
                {
                    if( ot->beh.destruct )
                        engine->CallObjectMethod(obj, ot->beh.destruct);
 
                    engine->CallFree(obj);
                }
            }
        }
    }
 
    isGlobalVarInitialized = false;
}
 
// internal
void asCModule::InternalReset()
{
    CallExit();
 
    size_t n;
 
    // Release all global functions
    for( n = 0; n < globalFunctions.GetLength(); n++ )
    {
        if( globalFunctions[n] )
            globalFunctions[n]->Release();
    }
    globalFunctions.SetLength(0);
 
    // First release all compiled functions
    for( n = 0; n < scriptFunctions.GetLength(); n++ )
    {
        if( scriptFunctions[n] )
        {
            // Remove the module reference in the functions
            scriptFunctions[n]->module = 0;
            scriptFunctions[n]->Release();
        }
    }
    scriptFunctions.SetLength(0);
    scriptFunctionsMap.EraseAll();
 
    // Release the global properties declared in the module
    for( n = 0; n < scriptGlobals.GetLength(); n++ )
        scriptGlobals[n]->Release();
    scriptGlobals.SetLength(0);
 
    UnbindAllImportedFunctions();
 
    // Free bind information
    for( n = 0; n < bindInformations.GetLength(); n++ )
    {
        engine->importedFunctions[bindInformations[n]->importedFunctionSignature->id & 0xFFFF] = 0 ;
 
        asDELETE(bindInformations[n]->importedFunctionSignature, asCScriptFunction);
        asDELETE(bindInformations[n], sBindInfo);
    }
    bindInformations.SetLength(0);
 
    // Free declared types, including classes, typedefs, and enums
    for( n = 0; n < classTypes.GetLength(); n++ )
        classTypes[n]->Release();
    classTypes.SetLength(0);
    for( n = 0; n < enumTypes.GetLength(); n++ )
        enumTypes[n]->Release();
    enumTypes.SetLength(0);
    for( n = 0; n < typeDefs.GetLength(); n++ )
        typeDefs[n]->Release();
    typeDefs.SetLength(0);
 
    // Free funcdefs
    for( n = 0; n < funcDefs.GetLength(); n++ )
    {
        // TODO: funcdefs: These may be shared between modules, so we can't just remove them
        engine->funcDefs.RemoveValue(funcDefs[n]);
        funcDefs[n]->Release();
    }
    funcDefs.SetLength(0);
}
 
// interface
int asCModule::GetFunctionIdByName(const char *name)
{
    // TODO: optimize: Improve linear search
    // Find the function id
    int id = -1;
    for( size_t n = 0; n < globalFunctions.GetLength(); n++ )
    {
        if( globalFunctions[n]->name == name )
        {
            if( id == -1 )
                id = globalFunctions[n]->id;
            else
                return asMULTIPLE_FUNCTIONS;
        }
    }
 
    if( id == -1 ) return asNO_FUNCTION;
 
    return id;
}
 
// interface
int asCModule::GetImportedFunctionCount()
{
    return (int)bindInformations.GetLength();
}
 
// interface
int asCModule::GetImportedFunctionIndexByDecl(const char *decl)
{
    asCBuilder bld(engine, this);
 
    asCScriptFunction func(engine, this, -1);
    bld.ParseFunctionDeclaration(0, decl, &func, false);
 
    // TODO: optimize: Improve linear search
    // Search script functions for matching interface
    int id = -1;
    for( asUINT n = 0; n < bindInformations.GetLength(); ++n )
    {
        if( func.name == bindInformations[n]->importedFunctionSignature->name && 
            func.returnType == bindInformations[n]->importedFunctionSignature->returnType &&
            func.parameterTypes.GetLength() == bindInformations[n]->importedFunctionSignature->parameterTypes.GetLength() )
        {
            bool match = true;
            for( asUINT p = 0; p < func.parameterTypes.GetLength(); ++p )
            {
                if( func.parameterTypes[p] != bindInformations[n]->importedFunctionSignature->parameterTypes[p] )
                {
                    match = false;
                    break;
                }
            }
 
            if( match )
            {
                if( id == -1 )
                    id = n;
                else
                    return asMULTIPLE_FUNCTIONS;
            }
        }
    }
 
    if( id == -1 ) return asNO_FUNCTION;
 
    return id;
}
 
// interface
int asCModule::GetFunctionCount()
{
    return (int)globalFunctions.GetLength();
}
 
// interface
int asCModule::GetFunctionIdByDecl(const char *decl)
{
    asCBuilder bld(engine, this);
 
    asCScriptFunction func(engine, this, -1);
    int r = bld.ParseFunctionDeclaration(0, decl, &func, false);
    if( r < 0 )
        return asINVALID_DECLARATION;
 
    // TODO: optimize: Improve linear search
    // Search script functions for matching interface
    int id = -1;
    for( size_t n = 0; n < globalFunctions.GetLength(); ++n )
    {
        if( globalFunctions[n]->objectType == 0 && 
            func.name == globalFunctions[n]->name && 
            func.returnType == globalFunctions[n]->returnType &&
            func.parameterTypes.GetLength() == globalFunctions[n]->parameterTypes.GetLength() )
        {
            bool match = true;
            for( size_t p = 0; p < func.parameterTypes.GetLength(); ++p )
            {
                if( func.parameterTypes[p] != globalFunctions[n]->parameterTypes[p] )
                {
                    match = false;
                    break;
                }
            }
 
            if( match )
            {
                if( id == -1 )
                    id = globalFunctions[n]->id;
                else
                    return asMULTIPLE_FUNCTIONS;
            }
        }
    }
 
    if( id == -1 ) return asNO_FUNCTION;
 
    return id;
}
 
// interface
int asCModule::GetGlobalVarCount()
{
    return (int)scriptGlobals.GetLength();
}
 
// interface
int asCModule::GetGlobalVarIndexByName(const char *name)
{
    // Find the global var id
    int id = -1;
    for( size_t n = 0; n < scriptGlobals.GetLength(); n++ )
    {
        if( scriptGlobals[n]->name == name )
        {
            id = (int)n;
            break;
        }
    }
 
    if( id == -1 ) return asNO_GLOBAL_VAR;
 
    return id;
}
 
// interface
int asCModule::RemoveGlobalVar(int index)
{
    if( index < 0 || index >= (int)scriptGlobals.GetLength() )
        return asINVALID_ARG;
 
    scriptGlobals[index]->Release();
    scriptGlobals.RemoveIndex(index);
 
    return 0;
}
 
// interface
asIScriptFunction *asCModule::GetFunctionDescriptorByIndex(int index)
{
    if( index < 0 || index >= (int)globalFunctions.GetLength() )
        return 0;
 
    return globalFunctions[index];
}
 
// interface
asIScriptFunction *asCModule::GetFunctionDescriptorById(int funcId)
{
    return engine->GetFunctionDescriptorById(funcId);
}
 
// interface
int asCModule::GetGlobalVarIndexByDecl(const char *decl)
{
    asCBuilder bld(engine, this);
 
    asCObjectProperty gvar;
    bld.ParseVariableDeclaration(decl, &gvar);
 
    // TODO: optimize: Improve linear search
    // Search script functions for matching interface
    int id = -1;
    for( size_t n = 0; n < scriptGlobals.GetLength(); ++n )
    {
        if( gvar.name == scriptGlobals[n]->name && 
            gvar.type == scriptGlobals[n]->type )
        {
            id = (int)n;
            break;
        }
    }
 
    if( id == -1 ) return asNO_GLOBAL_VAR;
 
    return id;
}
 
// interface
void *asCModule::GetAddressOfGlobalVar(int index)
{
    if( index < 0 || index >= (int)scriptGlobals.GetLength() )
        return 0;
 
    // TODO: value types shouldn't need dereferencing
    // For object variables it's necessary to dereference the pointer to get the address of the value
    if( scriptGlobals[index]->type.IsObject() && !scriptGlobals[index]->type.IsObjectHandle() )
        return *(void**)(scriptGlobals[index]->GetAddressOfValue());
 
    return (void*)(scriptGlobals[index]->GetAddressOfValue());
}
 
// interface
const char *asCModule::GetGlobalVarDeclaration(int index)
{
    if( index < 0 || index >= (int)scriptGlobals.GetLength() )
        return 0;
 
    asCGlobalProperty *prop = scriptGlobals[index];
 
    asASSERT(threadManager);
    asCString *tempString = &threadManager->GetLocalData()->string;
    *tempString = prop->type.Format();
    *tempString += " " + prop->name;
 
    return tempString->AddressOf();
}
 
// interface
const char *asCModule::GetGlobalVarName(int index)
{
    if( index < 0 || index >= (int)scriptGlobals.GetLength() )
        return 0;
 
    return scriptGlobals[index]->name.AddressOf();
}
 
// interface
// TODO: If the typeId ever encodes the const flag, then the isConst parameter should be removed
int asCModule::GetGlobalVarTypeId(int index, bool *isConst)
{
    if( index < 0 || index >= (int)scriptGlobals.GetLength() )
        return asINVALID_ARG;
 
    if( isConst )
        *isConst = scriptGlobals[index]->type.IsReadOnly();
 
    return engine->GetTypeIdFromDataType(scriptGlobals[index]->type);
}
 
// interface
int asCModule::GetObjectTypeCount()
{
    return (int)classTypes.GetLength();
}
 
// interface 
asIObjectType *asCModule::GetObjectTypeByIndex(asUINT index)
{
    if( index >= classTypes.GetLength() ) 
        return 0;
 
    return classTypes[index];
}
 
// interface
int asCModule::GetTypeIdByDecl(const char *decl)
{
    asCDataType dt;
    asCBuilder bld(engine, this);
    int r = bld.ParseDataType(decl, &dt);
    if( r < 0 )
        return asINVALID_TYPE;
 
    return engine->GetTypeIdFromDataType(dt);
}
 
// interface
int asCModule::GetEnumCount()
{
    return (int)enumTypes.GetLength();
}
 
// interface
const char *asCModule::GetEnumByIndex(asUINT index, int *enumTypeId)
{
    if( index >= enumTypes.GetLength() )
        return 0;
 
    if( enumTypeId )
        *enumTypeId = GetTypeIdByDecl(enumTypes[index]->name.AddressOf());
 
    return enumTypes[index]->name.AddressOf();
}
 
// interface
int asCModule::GetEnumValueCount(int enumTypeId)
{
    const asCDataType *dt = engine->GetDataTypeFromTypeId(enumTypeId);
    asCObjectType *t = dt->GetObjectType();
    if( t == 0 || !(t->GetFlags() & asOBJ_ENUM) ) 
        return asINVALID_TYPE;
 
    return (int)t->enumValues.GetLength();
}
 
// interface
const char *asCModule::GetEnumValueByIndex(int enumTypeId, asUINT index, int *outValue)
{
    const asCDataType *dt = engine->GetDataTypeFromTypeId(enumTypeId);
    asCObjectType *t = dt->GetObjectType();
    if( t == 0 || !(t->GetFlags() & asOBJ_ENUM) ) 
        return 0;
 
    if( index >= t->enumValues.GetLength() )
        return 0;
 
    if( outValue )
        *outValue = t->enumValues[index]->value;
 
    return t->enumValues[index]->name.AddressOf();
}
 
// interface
int asCModule::GetTypedefCount()
{
    return (int)typeDefs.GetLength();
}
 
// interface
const char *asCModule::GetTypedefByIndex(asUINT index, int *typeId)
{
    if( index >= typeDefs.GetLength() )
        return 0;
 
    if( typeId )
        *typeId = GetTypeIdByDecl(typeDefs[index]->name.AddressOf());
 
    return typeDefs[index]->name.AddressOf();
}
 
 
// internal
int asCModule::GetNextImportedFunctionId()
{
    return FUNC_IMPORTED | (asUINT)engine->importedFunctions.GetLength();
}
 
// internal
int asCModule::AddScriptFunction(int sectionIdx, int id, const char *name, const asCDataType &returnType, asCDataType *params, asETypeModifiers *inOutFlags, int paramCount, bool isInterface, asCObjectType *objType, bool isConstMethod, bool isGlobalFunction)
{
    asASSERT(id >= 0);
 
    // Store the function information
    asCScriptFunction *func = asNEW(asCScriptFunction)(engine, this, isInterface ? asFUNC_INTERFACE : asFUNC_SCRIPT);
    func->name       = name;
    func->id         = id;
    func->returnType = returnType;
    func->scriptSectionIdx = sectionIdx;
    for( int n = 0; n < paramCount; n++ )
    {
        func->parameterTypes.PushLast(params[n]);
        func->inOutFlags.PushLast(inOutFlags[n]);
    }
    func->objectType = objType;
    func->isReadOnly = isConstMethod;
 
    // The script function's refCount was initialized to 1
    scriptFunctions.PushLast(func);
    if ( objType == 0 )
    {
        scriptFunctionsMap.Insert(SFCompare(&func->name),func);
    }
    engine->SetScriptFunction(func);
 
    // Compute the signature id
    if( objType )
        func->ComputeSignatureId();
 
    // Add reference
    if( isGlobalFunction )
    {
        globalFunctions.PushLast(func);
        func->AddRef();
    }
 
    return 0;
}
 
// internal 
int asCModule::AddScriptFunction(asCScriptFunction *func)
{
    scriptFunctions.PushLast(func);
    if ( func->objectType == 0 )
    {
        scriptFunctionsMap.Insert(SFCompare(&func->name),func);
    }
    func->AddRef();
    engine->SetScriptFunction(func);
 
    return 0;
}
 
 
 
 
// internal
int asCModule::AddImportedFunction(int id, const char *name, const asCDataType &returnType, asCDataType *params, asETypeModifiers *inOutFlags, int paramCount, const asCString &moduleName)
{
    asASSERT(id >= 0);
 
    // Store the function information
    asCScriptFunction *func = asNEW(asCScriptFunction)(engine, this, asFUNC_IMPORTED);
    func->name       = name;
    func->id         = id;
    func->returnType = returnType;
    for( int n = 0; n < paramCount; n++ )
    {
        func->parameterTypes.PushLast(params[n]);
        func->inOutFlags.PushLast(inOutFlags[n]);
    }
    func->objectType = 0;
 
    sBindInfo *info = asNEW(sBindInfo);
    info->importedFunctionSignature = func;
    info->boundFunctionId = -1;
    info->importFromModule = moduleName;
    bindInformations.PushLast(info);
 
    // Add the info to the array in the engine
    engine->importedFunctions.PushLast(info);
 
    return 0;
}
 
// internal
asCScriptFunction *asCModule::GetImportedFunction(int index)
{
    return bindInformations[index]->importedFunctionSignature;
}
 
// interface
int asCModule::BindImportedFunction(int index, int sourceId)
{
    // First unbind the old function
    int r = UnbindImportedFunction(index);
    if( r < 0 ) return r;
 
    // Must verify that the interfaces are equal
    asCScriptFunction *dst = GetImportedFunction(index);
    if( dst == 0 ) return asNO_FUNCTION;
 
    asCScriptFunction *src = engine->GetScriptFunction(sourceId);
    if( src == 0 ) 
        return asNO_FUNCTION;
 
    // Verify return type
    if( dst->returnType != src->returnType )
        return asINVALID_INTERFACE;
 
    if( dst->parameterTypes.GetLength() != src->parameterTypes.GetLength() )
        return asINVALID_INTERFACE;
 
    for( size_t n = 0; n < dst->parameterTypes.GetLength(); ++n )
    {
        if( dst->parameterTypes[n] != src->parameterTypes[n] )
            return asINVALID_INTERFACE;
    }
 
    bindInformations[index]->boundFunctionId = sourceId;
    engine->scriptFunctions[sourceId]->AddRef();
 
    return asSUCCESS;
}
 
// interface
int asCModule::UnbindImportedFunction(int index)
{
    if( index < 0 || index > (int)bindInformations.GetLength() )
        return asINVALID_ARG;
 
    // Remove reference to old module
    int oldFuncID = bindInformations[index]->boundFunctionId;
    if( oldFuncID != -1 )
    {
        bindInformations[index]->boundFunctionId = -1;
        engine->scriptFunctions[oldFuncID]->Release();
    }
 
    return asSUCCESS;
}
 
// interface
const char *asCModule::GetImportedFunctionDeclaration(int index)
{
    asCScriptFunction *func = GetImportedFunction(index);
    if( func == 0 ) return 0;
 
    asASSERT(threadManager);
    asCString *tempString = &threadManager->GetLocalData()->string;
    *tempString = func->GetDeclarationStr();
 
    return tempString->AddressOf();
}
 
// interface
const char *asCModule::GetImportedFunctionSourceModule(int index)
{
    if( index >= (int)bindInformations.GetLength() )
        return 0;
 
    return bindInformations[index]->importFromModule.AddressOf();
}
 
// inteface
int asCModule::BindAllImportedFunctions()
{
    bool notAllFunctionsWereBound = false;
 
    // Bind imported functions
    int c = GetImportedFunctionCount();
    for( int n = 0; n < c; ++n )
    {
        asCScriptFunction *func = GetImportedFunction(n);
        if( func == 0 ) return asERROR;
 
        asCString str = func->GetDeclarationStr();
 
        // Get module name from where the function should be imported
        const char *moduleName = GetImportedFunctionSourceModule(n);
        if( moduleName == 0 ) return asERROR;
 
        asCModule *srcMod = engine->GetModule(moduleName, false);
        int funcId = -1;
        if( srcMod )
            funcId = srcMod->GetFunctionIdByDecl(str.AddressOf());
 
        if( funcId < 0 )
            notAllFunctionsWereBound = true;
        else
        {
            if( BindImportedFunction(n, funcId) < 0 )
                notAllFunctionsWereBound = true;
        }
    }
 
    if( notAllFunctionsWereBound )
        return asCANT_BIND_ALL_FUNCTIONS;
 
    return asSUCCESS;
}
 
// interface
int asCModule::UnbindAllImportedFunctions()
{
    int c = GetImportedFunctionCount();
    for( int n = 0; n < c; ++n )
        UnbindImportedFunction(n);
 
    return asSUCCESS;
}
 
// internal
asCObjectType *asCModule::GetObjectType(const char *type)
{
    size_t n;
 
    // TODO: optimize: Improve linear search
    for( n = 0; n < classTypes.GetLength(); n++ )
        if( classTypes[n]->name == type )
            return classTypes[n];
 
    for( n = 0; n < enumTypes.GetLength(); n++ )
        if( enumTypes[n]->name == type )
            return enumTypes[n];
 
    for( n = 0; n < typeDefs.GetLength(); n++ )
        if( typeDefs[n]->name == type )
            return typeDefs[n];
 
    return 0;
}
 
// internal
asCGlobalProperty *asCModule::AllocateGlobalProperty(const char *name, const asCDataType &dt)
{
    asCGlobalProperty *prop = engine->AllocateGlobalProperty();
    prop->name = name;
 
    // Allocate the memory for this property based on its type
    prop->type = dt;
    prop->AllocateMemory();
 
    // Store the variable in the module scope (the reference count is already set to 1)
    scriptGlobals.PushLast(prop);
 
    return prop;
}
 
// internal
void asCModule::ResolveInterfaceIds()
{
    // For each of the interfaces declared in the script find identical interface in the engine.
    // If an identical interface was found then substitute the current id for the identical interface's id, 
    // then remove this interface declaration. If an interface was modified by the declaration, then 
    // retry the detection of identical interface for it since it may now match another.
 
    // For an interface to be equal to another the name and methods must match. If the interface
    // references another interface, then that must be checked as well, which can lead to circular references.
 
    // Example:
    //
    // interface A { void f(B@); }
    // interface B { void f(A@); void f(C@); }
    // interface C { void f(A@); }
    //
    // A1 equals A2 if and only if B1 equals B2
    // B1 equals B2 if and only if A1 equals A2 and C1 equals C2
    // C1 equals C2 if and only if A1 equals A2
 
 
    unsigned int i;
 
    // The interface can only be equal to interfaces declared in other modules. 
    // Interfaces registered by the application will conflict with this one if it has the same name.
    // This means that we only need to look for the interfaces in the engine->classTypes, but not in engine->objectTypes.
    asCArray<sObjectTypePair> equals;
    for( i = 0; i < classTypes.GetLength(); i++ )
    {
        asCObjectType *intf1 = classTypes[i];
        if( !intf1->IsInterface() )
            continue;
 
        // The interface may have been determined to be equal to another already
        bool found = false;
        for( unsigned int e = 0; e < equals.GetLength(); e++ )
        {
            if( equals[e].a == intf1 )
            {
                found = true;
                break;
            }
        }
        
        if( found )
            break;
 
        for( unsigned int n = 0; n < engine->classTypes.GetLength(); n++ )
        {
            // Don't compare against self
            if( engine->classTypes[n] == intf1 )
                continue;
    
            asCObjectType *intf2 = engine->classTypes[n];
 
            // Assume the interface are equal, then validate this
            sObjectTypePair pair = {intf1,intf2};
            equals.PushLast(pair);
 
            if( AreInterfacesEqual(intf1, intf2, equals) )
                break;
            
            // Since they are not equal, remove them from the list again
            equals.PopLast();
        }
    }
 
    // For each of the interfaces that have been found to be equal we need to 
    // remove the new declaration and instead have the module use the existing one.
    for( i = 0; i < equals.GetLength(); i++ )
    {
        // Substitute the old object type from the module's class types
        unsigned int c;
        for( c = 0; c < classTypes.GetLength(); c++ )
        {
            if( classTypes[c] == equals[i].a )
            {
                classTypes[c] = equals[i].b;
                equals[i].b->AddRef();
                break;
            }
        }
 
        // Remove the old object type from the engine's class types
        for( c = 0; c < engine->classTypes.GetLength(); c++ )
        {
            if( engine->classTypes[c] == equals[i].a )
            {
                engine->classTypes[c] = engine->classTypes[engine->classTypes.GetLength()-1];
                engine->classTypes.PopLast();
                break;
            }
        }
 
        // Substitute all uses of this object type
        // Only interfaces in the module is using the type so far
        for( c = 0; c < classTypes.GetLength(); c++ )
        {
            if( classTypes[c]->IsInterface() )
            {
                asCObjectType *intf = classTypes[c];
                for( int m = 0; m < intf->GetMethodCount(); m++ )
                {
                    asCScriptFunction *func = engine->GetScriptFunction(intf->methods[m]);
                    if( func )
                    {
                        if( func->returnType.GetObjectType() == equals[i].a )
                            func->returnType.SetObjectType(equals[i].b);
 
                        for( int p = 0; p < func->GetParamCount(); p++ )
                        {
                            if( func->parameterTypes[p].GetObjectType() == equals[i].a )
                                func->parameterTypes[p].SetObjectType(equals[i].b);
                        }
                    }
                }
            }
        }
 
        // Substitute all interface methods in the module. Delete all methods for the old interface
        for( unsigned int m = 0; m < equals[i].a->methods.GetLength(); m++ )
        {
            for( c = 0; c < scriptFunctions.GetLength(); c++ )
            {
                if( scriptFunctions[c]->id == equals[i].a->methods[m] )
                {
                    scriptFunctions[c]->Release();
                    assert(false); // todo: tree
                    scriptFunctions[c] = engine->GetScriptFunction(equals[i].b->methods[m]);
                    scriptFunctions[c]->AddRef();
                }
            }
        }
 
        // Deallocate the object type
        asDELETE(equals[i].a, asCObjectType);
    }
}
 
// internal
bool asCModule::AreInterfacesEqual(asCObjectType *a, asCObjectType *b, asCArray<sObjectTypePair> &equals)
{
    // An interface is considered equal to another if the following criterias apply:
    //
    // - The interface names are equal
    // - The number of methods is equal
    // - All the methods are equal
    // - The order of the methods is equal
    // - If a method returns or takes an interface by handle or reference, both interfaces must be equal
 
 
    // ------------
    // TODO: Study the possiblity of allowing interfaces where methods are declared in different orders to
    // be considered equal. The compiler and VM can handle this, but it complicates the comparison of interfaces
    // where multiple methods take different interfaces as parameters (or return values). Example:
    // 
    // interface A
    // {
    //    void f(B, C);
    //    void f(B);
    //    void f(C);
    // }
    //
    // If 'void f(B)' in module A is compared against 'void f(C)' in module B, then the code will assume
    // interface B in module A equals interface C in module B. Thus 'void f(B, C)' in module A won't match
    // 'void f(C, B)' in module B.
    // ------------
 
 
    // Are both interfaces?
    if( !a->IsInterface() || !b->IsInterface() )
        return false;
 
    // Are the names equal?
    if( a->name != b->name )
        return false;
 
    // Are the number of methods equal?
    if( a->methods.GetLength() != b->methods.GetLength() )
        return false;
 
    // Keep the number of equals in the list so we can restore it later if necessary
    int prevEquals = (int)equals.GetLength();
 
    // Are the methods equal to each other?
    bool match = true;
    for( unsigned int n = 0; n < a->methods.GetLength(); n++ )
    {
        match = false;
 
        asCScriptFunction *funcA = (asCScriptFunction*)engine->GetFunctionDescriptorById(a->methods[n]);
        asCScriptFunction *funcB = (asCScriptFunction*)engine->GetFunctionDescriptorById(b->methods[n]);
 
        // funcB can be null if the module that created the interface has been  
        // discarded but the type has not yet been released by the engine.
        if( funcB == 0 )
            break;
 
        // The methods must have the same name and the same number of parameters
        if( funcA->name != funcB->name ||
            funcA->parameterTypes.GetLength() != funcB->parameterTypes.GetLength() )
            break;
        
        // The return types must be equal. If the return type is an interface the interfaces must match.
        if( !AreTypesEqual(funcA->returnType, funcB->returnType, equals) )
            break;
 
        match = true;
        for( unsigned int p = 0; p < funcA->parameterTypes.GetLength(); p++ )
        {
            if( !AreTypesEqual(funcA->parameterTypes[p], funcB->parameterTypes[p], equals) ||
                funcA->inOutFlags[p] != funcB->inOutFlags[p] )
            {
                match = false;
                break;
            }
        }
 
        if( !match )
            break;
    }
 
    // For each of the new interfaces that we're assuming to be equal, we need to validate this
    if( match )
    {
        for( unsigned int n = prevEquals; n < equals.GetLength(); n++ )
        {
            if( !AreInterfacesEqual(equals[n].a, equals[n].b, equals) )
            {
                match = false;
                break;
            }
        }
    }
 
    if( !match )
    {
        // The interfaces doesn't match. 
        // Restore the list of previous equals before we go on, so  
        // the caller can continue comparing with another interface
        equals.SetLength(prevEquals);
    }
 
    return match;
}
 
// internal
bool asCModule::AreTypesEqual(const asCDataType &a, const asCDataType &b, asCArray<sObjectTypePair> &equals)
{
    if( !a.IsEqualExceptInterfaceType(b) )
        return false;
 
    asCObjectType *ai = a.GetObjectType();
    asCObjectType *bi = b.GetObjectType();
 
    if( ai && ai->IsInterface() )
    {
        // If the interface is in the equals list, then the pair must match the pair in the list
        bool found = false;
        unsigned int e;
        for( e = 0; e < equals.GetLength(); e++ )
        {
            if( equals[e].a == ai )
            {
                found = true;
                break;
            }
        }
 
        if( found )
        {
            // Do the pairs match?
            if( equals[e].b != bi )
                return false;
        }
        else
        {
            // Assume they are equal from now on
            sObjectTypePair pair = {ai, bi};
            equals.PushLast(pair);
        }
    }
 
    return true;
}
 
// interface
int asCModule::SaveByteCode(asIBinaryStream *out)
{
    if( out == 0 ) return asINVALID_ARG;
 
    asCRestore rest(this, out, engine);
    return rest.Save();
}
 
// interface
int asCModule::LoadByteCode(asIBinaryStream *in)
{
    if( in == 0 ) return asINVALID_ARG;
 
    // Only permit loading bytecode if no other thread is currently compiling
    // TODO: It should be possible to have multiple threads perform compilations
    int r = engine->RequestBuild();
    if( r < 0 )
        return r;
 
    asCRestore rest(this, in, engine);
    r = rest.Restore();
 
    JITCompile();
 
    engine->BuildCompleted();
 
    return r;
}
 
// interface
int asCModule::CompileGlobalVar(const char *sectionName, const char *code, int lineOffset)
{
    // Validate arguments
    if( code == 0 )
        return asINVALID_ARG;
 
    // Only one thread may build at one time
    // TODO: It should be possible to have multiple threads perform compilations
    int r = engine->RequestBuild();
    if( r < 0 )
        return r;
 
    // Prepare the engine
    engine->PrepareEngine();
    if( engine->configFailed )
    {
        engine->WriteMessage("", 0, 0, asMSGTYPE_ERROR, TXT_INVALID_CONFIGURATION);
        engine->BuildCompleted();
        return asINVALID_CONFIGURATION;
    }
 
    // Compile the global variable and add it to the module scope
    asCBuilder builder(engine, this);
    asCString str = code;
    r = builder.CompileGlobalVar(sectionName, str.AddressOf(), lineOffset);
 
    engine->BuildCompleted();
 
    // Initialize the variable
    if( r >= 0 && engine->ep.initGlobalVarsAfterBuild )
    {
        // Clear the memory 
        asCGlobalProperty *prop = scriptGlobals[scriptGlobals.GetLength()-1];
        memset(prop->GetAddressOfValue(), 0, sizeof(asDWORD)*prop->type.GetSizeOnStackDWords());
 
        if( prop->GetInitFunc() )
        {
            // Call the init function for the global variable
            asIScriptContext *ctx = 0;
            int r = engine->CreateContext(&ctx, true);
            if( r < 0 )
                return r;
 
            r = ctx->Prepare(prop->GetInitFunc()->id);
            if( r >= 0 )
                r = ctx->Execute();
 
            ctx->Release();
        }
    }
 
    return r;
}
 
// interface
int asCModule::CompileFunction(const char *sectionName, const char *code, int lineOffset, asDWORD compileFlags, asIScriptFunction **outFunc)
{
    asASSERT(outFunc == 0 || *outFunc == 0);
 
    // Validate arguments
    if( code == 0 || 
        (compileFlags != 0 && compileFlags != asCOMP_ADD_TO_MODULE) )
        return asINVALID_ARG;
 
    // Only one thread may build at one time
    // TODO: It should be possible to have multiple threads perform compilations
    int r = engine->RequestBuild();
    if( r < 0 )
        return r;
 
    // Prepare the engine
    engine->PrepareEngine();
    if( engine->configFailed )
    {
        engine->WriteMessage("", 0, 0, asMSGTYPE_ERROR, TXT_INVALID_CONFIGURATION);
        engine->BuildCompleted();
        return asINVALID_CONFIGURATION;
    }
 
    // Compile the single function
    asCBuilder builder(engine, this);
    asCString str = code;
    asCScriptFunction *func = 0;
    r = builder.CompileFunction(sectionName, str.AddressOf(), lineOffset, compileFlags, &func);
 
    engine->BuildCompleted();
 
    if( r >= 0 && outFunc )
    {
        // Return the function to the caller
        *outFunc = func;
        func->AddRef();
    }
 
    // Release our reference to the function
    if( func )
        func->Release();
 
    return r;
}
 
// interface
int asCModule::RemoveFunction(int funcId)
{
    // Find the global function
    for( asUINT n = 0; n < globalFunctions.GetLength(); n++ )
    {
        if( globalFunctions[n] && globalFunctions[n]->id == funcId )
        {
            asCScriptFunction *func = globalFunctions[n];
            globalFunctions.RemoveIndex(n);
            func->Release();
 
            scriptFunctions.RemoveValue(func);
            func->Release();
 
            return 0;
        }
    }
 
    return asNO_FUNCTION;
}
 
// internal
int asCModule::AddFuncDef(const char *name)
{
    asCScriptFunction *func = asNEW(asCScriptFunction)(engine, 0, asFUNC_FUNCDEF);
    func->name = name;
 
    funcDefs.PushLast(func);
 
    engine->funcDefs.PushLast(func);
    func->id = engine->GetNextScriptFunctionId();
    engine->SetScriptFunction(func);
 
    return (int)funcDefs.GetLength()-1;
}
 
END_AS_NAMESPACE
 

リロード   新規 下位ページ作成 編集 凍結 差分 添付 コピー 名前変更   ホーム 一覧 検索 最終更新 バックアップ リンク元   ヘルプ   最終更新のRSS
Last-modified: Fri, 09 Jul 2010 00:28:57 JST (5039d)