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
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-2020, TBOOX Open Source Group.
--
-- @author ruki
-- @file target.lua
--
-- define module
local target = target or {}
local _instance = _instance or {}
-- load modules
local bit = require("bit")
local os = require("base/os")
local path = require("base/path")
local utils = require("base/utils")
local table = require("base/table")
local baseoption = require("base/option")
local deprecated = require("base/deprecated")
local rule = require("project/rule")
local option = require("project/option")
local config = require("project/config")
local requireinfo = require("project/requireinfo")
local tool = require("tool/tool")
local linker = require("tool/linker")
local compiler = require("tool/compiler")
local platform = require("platform/platform")
local language = require("language/language")
local sandbox = require("sandbox/sandbox")
local sandbox_module = require("sandbox/modules/import/core/sandbox/module")
-- new a target instance
function _instance.new(name, info, project)
local instance = table.inherit(_instance)
instance._NAME = name
instance._INFO = info
instance._PROJECT = project
instance._CACHEID = 1
return instance
end
-- load rule, move cache to target
function _instance:_load_rule(ruleinst, suffix)
-- init cache
local key = ruleinst:name() .. (suffix and ("_" .. suffix) or "")
local cache = self._RULES_LOADED or {}
-- do load
if cache[key] == nil then
local on_load = ruleinst:script("load" .. (suffix and ("_" .. suffix) or ""))
if on_load then
local ok, errors = sandbox.load(on_load, self)
cache[key] = {ok, errors}
else
cache[key] = {true}
end
end
-- save cache
self._RULES_LOADED = cache
-- return results
local results = cache[key]
if results then
return results[1], results[2]
end
end
-- load rules
function _instance:_load_rules(suffix)
for _, r in pairs(self:orderules()) do
local ok, errors = self:_load_rule(r, suffix)
if not ok then
return false, errors
end
end
return true
end
-- load all
function _instance:_load_all()
-- do before_load with target rules
local ok, errors = self:_load_rules("before")
if not ok then
return false, errors
end
-- do load with target rules
local ok, errors = self:_load_rules()
if not ok then
return false, errors
end
-- do load for target
local on_load = self:script("load")
if on_load then
local ok, errors = sandbox.load(on_load, self)
if not ok then
return false, errors
end
end
-- do after_load with target rules
local ok, errors = self:_load_rules("after")
if not ok then
return false, errors
end
return true
end
-- do load target and rules
function _instance:_load()
-- enter the environments of the target packages
local oldenvs = {}
for name, values in pairs(self:pkgenvs()) do
oldenvs[name] = os.getenv(name)
os.addenv(name, unpack(values))
end
-- load all
local ok, errors = self:_load_all()
if not ok then
return false, errors
end
-- leave the environments of the target packages
for name, values in pairs(oldenvs) do
os.setenv(name, values)
end
return true
end
-- get the copied files
function _instance:_copiedfiles(filetype, outputdir, pathfilter)
-- no copied files?
local copiedfiles = self:get(filetype)
if not copiedfiles then return end
-- get the extra information
local extrainfo = table.wrap(self:get("__extra_" .. filetype))
-- get the source pathes and destinate pathes
local srcfiles = {}
local dstfiles = {}
local fileinfos = {}
for _, copiedfile in ipairs(table.wrap(copiedfiles)) do
-- get the root directory
local rootdir, count = copiedfile:gsub("|.*$", ""):gsub("%(.*%)$", "")
if count == 0 then
rootdir = nil
end
-- remove '(' and ')'
local srcpathes = copiedfile:gsub("[%(%)]", "")
if srcpathes then
-- get the source pathes
srcpathes = os.match(srcpathes)
if srcpathes and #srcpathes > 0 then
-- add the source copied files
table.join2(srcfiles, srcpathes)
-- the copied directory exists?
if outputdir then
-- get the file info
local fileinfo = extrainfo[copiedfile] or {}
-- get the prefix directory
local prefixdir = fileinfo.prefixdir
-- add the destinate copied files
for _, srcpath in ipairs(srcpathes) do
-- get the destinate directory
local dstdir = outputdir
if prefixdir then
dstdir = path.join(dstdir, prefixdir)
end
-- the destinate file
local dstfile = nil
if rootdir then
dstfile = path.absolute(path.relative(srcpath, rootdir), dstdir)
else
dstfile = path.join(dstdir, path.filename(srcpath))
end
assert(dstfile)
-- modify filename
if fileinfo.filename then
dstfile = path.join(path.directory(dstfile), fileinfo.filename)
end
-- filter the destinate file path
if pathfilter then
dstfile = pathfilter(dstfile, fileinfo)
end
-- add it
table.insert(dstfiles, dstfile)
table.insert(fileinfos, fileinfo)
end
end
end
end
end
return srcfiles, dstfiles, fileinfos
end
-- get the visibility, private: 1, interface: 2, public: 3 = 1 | 2
function _instance:_visibility(opt)
local visibility = 1
if opt then
if opt.interface then
visibility = 2
elseif opt.public then
visibility = 3
end
end
return visibility
end
-- invalidate the previous cache key
function _instance:_invalidate()
self._CACHEID = self._CACHEID + 1
end
-- get the target info
--
-- e.g.
--
-- default: get private
-- - target:get("cflags")
-- - target:get("cflags", {private = true})
--
-- get private and interface
-- - target:get("cflags", {public = true})
--
-- get interface
-- - target:get("cflags", {interface = true})
--
function _instance:get(name, opt)
-- get values
local values = self._INFO:get(name)
-- get thr required visibility
local vs_private = 1
local vs_interface = 2
local vs_public = 3 -- all
local vs_required = self:_visibility(opt)
-- get all values? (private and interface)
if vs_required == vs_public then
return values
end
-- get the extra configuration
local extraconf = self:extraconf(name)
if extraconf then
-- filter values for public, private or interface if be not dictionary
if not table.is_dictionary(values) then
local results = {}
for _, value in ipairs(table.wrap(values)) do
local vs_conf = self:_visibility(extraconf[value])
if bit.band(vs_required, vs_conf) ~= 0 then
table.insert(results, value)
end
end
if #results > 0 then
return table.unwrap(results)
end
else
return values
end
else
-- only get thr private values
if bit.band(vs_required, vs_private) ~= 0 then
return values
end
end
end
-- set the value to the target info
function _instance:set(name, ...)
self._INFO:apival_set(name, ...)
self:_invalidate()
end
-- add the value to the target info
function _instance:add(name, ...)
self._INFO:apival_add(name, ...)
self:_invalidate()
end
-- remove the value to the target info
function _instance:del(name, ...)
self._INFO:apival_del(name, ...)
self:_invalidate()
end
-- get the extra configuration
function _instance:extraconf(name, item, key)
return self._INFO:extraconf(name, item, key)
end
-- get user private data
function _instance:data(name)
return self._DATA and self._DATA[name] or nil
end
-- set user private data
function _instance:data_set(name, data)
self._DATA = self._DATA or {}
self._DATA[name] = data
end
-- add user private data
function _instance:data_add(name, data)
self._DATA = self._DATA or {}
self._DATA[name] = table.unwrap(table.join(self._DATA[name] or {}, data))
end
-- get values
function _instance:values(name, sourcefile)
-- get values from the source file first
local values = {}
if sourcefile then
local fileconfig = self:fileconfig(sourcefile)
if fileconfig then
local filevalues = fileconfig.values
if filevalues then
-- we use '_' to simplify setting, for example:
--
-- add_files("xxx.mof", {values = {wdk_mof_header = "xxx.h"}})
-- add_files("xxx.mof", {values = {["wdk.mof.header"] = "xxx.h"}})
--
table.join2(values, filevalues[name] or filevalues[name:gsub("%.", "_")])
end
end
end
-- get values from target
table.join2(values, self:get("values." .. name))
if #values > 0 then
values = table.unwrap(values)
else
values = nil
end
return values
end
-- set values
function _instance:values_set(name, ...)
self:set("values." .. name, ...)
end
-- add values
function _instance:values_add(name, ...)
self:add("values." .. name, ...)
end
-- get the target info
function _instance:info()
return self._INFO:info()
end
-- get the type: option
function _instance:type()
return "target"
end
-- get the target name
function _instance:name()
return self._NAME
end
-- get the cache key
function _instance:cachekey()
return string.format("%s_%d", tostring(self), self._CACHEID)
end
-- get the target version
function _instance:version()
-- get version and build version
local version = self:get("version")
local version_build = nil
if version then
local version_extra = self:get("__extra_version")
if version_extra then
version_build = self._VERSION_BUILD
if not version_build then
version_build = table.wrap(version_extra[version]).build
if type(version_build) == "string" then
version_build = os.date(version_build, os.time())
self._VERSION_BUILD = version_build
end
end
end
end
-- ok?
return version, version_build
end
-- get the base name of target file
function _instance:basename()
local filename = self:get("filename")
if filename then
return path.basename(filename)
end
return self:get("basename") or self:name()
end
-- get the target linker
function _instance:linker()
-- get it from cache first
if self._LINKER then
return self._LINKER
end
-- get the linker instance
local instance, errors = linker.load(self:targetkind(), self:sourcekinds(), self)
if not instance then
os.raise(errors)
end
-- cache it
self._LINKER = instance
-- get it
return instance
end
-- make linking command for this target
function _instance:linkcmd(objectfiles)
return self:linker():linkcmd(objectfiles or self:objectfiles(), self:targetfile(), {target = self})
end
-- make linking arguments for this target
function _instance:linkargv(objectfiles)
return self:linker():linkargv(objectfiles or self:objectfiles(), self:targetfile(), {target = self})
end
-- make link flags for the given target
function _instance:linkflags()
return self:linker():linkflags({target = self})
end
-- get the given dependent target
function _instance:dep(name)
local deps = self:deps()
if deps then
return deps[name]
end
end
-- get target deps
function _instance:deps()
return self._DEPS
end
-- get target ordered deps
function _instance:orderdeps()
return self._ORDERDEPS
end
-- get target rules
function _instance:rules()
return self._RULES
end
-- get target ordered rules
function _instance:orderules()
return self._ORDERULES
end
-- get target rule from the given rule name
function _instance:rule(name)
if self._RULES then
return self._RULES[name]
end
end
-- is phony target?
function _instance:isphony()
-- get target kind
local targetkind = self:targetkind()
-- is phony?
return not targetkind or targetkind == "phony"
end
-- get the enabled option
function _instance:opt(name)
return self:opts()[name]
end
-- get the enabled options
function _instance:opts()
-- attempt to get it from cache first
if self._OPTS_ENABLED then
return self._OPTS_ENABLED
end
-- load options if be enabled
self._OPTS_ENABLED = {}
for _, opt in ipairs(self:orderopts()) do
self._OPTS_ENABLED[opt:name()] = opt
end
-- get it
return self._OPTS_ENABLED
end
-- get the enabled ordered options
function _instance:orderopts()
-- attempt to get it from cache first
if self._ORDEROPTS_ENABLED then
return self._ORDEROPTS_ENABLED
end
-- load options if be enabled
self._ORDEROPTS_ENABLED = {}
for _, name in ipairs(table.wrap(self:get("options"))) do
local opt = nil
if config.get(name) then opt = option.load(name) end
if opt then
table.insert(self._ORDEROPTS_ENABLED, opt)
end
end
-- load options from packages if no require info, be compatible with the option package in (*.pkg)
for _, name in ipairs(table.wrap(self:get("packages"))) do
if not requireinfo.load(name) then
local opt = nil
if config.get(name) then opt = option.load(name) end
if opt then
table.insert(self._ORDEROPTS_ENABLED, opt)
end
end
end
-- get it
return self._ORDEROPTS_ENABLED
end
-- get the enabled package
function _instance:pkg(name)
return self:pkgs()[name]
end
-- get the enabled packages
function _instance:pkgs()
-- attempt to get it from cache first
if self._PKGS_ENABLED then
return self._PKGS_ENABLED
end
-- load packages if be enabled
self._PKGS_ENABLED = {}
for _, pkg in ipairs(self:orderpkgs()) do
self._PKGS_ENABLED[pkg:name()] = pkg
end
-- get it
return self._PKGS_ENABLED
end
-- get the required packages
function _instance:orderpkgs()
if not self._ORDERPKGS_ENABLED then
local packages = {}
for _, pkg in ipairs(self._PACKAGES) do
if pkg:enabled() then
table.insert(packages, pkg)
end
end
self._ORDERPKGS_ENABLED = packages
end
return self._ORDERPKGS_ENABLED
end
-- get the environments of packages
function _instance:pkgenvs()
local pkgenvs = self._PKGENVS
if not pkgenvs then
pkgenvs = {}
self._PKGENVS = pkgenvs
for _, pkgname in ipairs(table.wrap(self:get("packages"))) do
local pkg = self:pkg(pkgname)
if pkg then
local envs = pkg:get("envs")
if envs then
for name, values in pairs(envs) do
pkgenvs[name] = pkgenvs[name] or {}
table.join2(pkgenvs[name], values)
end
end
end
end
end
return pkgenvs
end
-- get the config info of the given package
function _instance:pkgconfig(pkgname)
local extra_packages = self:get("__extra_packages")
if extra_packages then
return extra_packages[pkgname]
end
end
-- get the object files directory
function _instance:objectdir(opt)
-- the object directory
local objectdir = self:get("objectdir")
if not objectdir then
objectdir = path.join(config.buildir(), ".objs")
end
objectdir = path.join(objectdir, self:name())
-- get root directory of target
if opt and opt.root then
return objectdir
end
-- append plat sub-directory
local plat = config.get("plat")
if plat then
objectdir = path.join(objectdir, plat)
end
-- append arch sub-directory
local arch = config.get("arch")
if arch then
objectdir = path.join(objectdir, arch)
end
-- append mode sub-directory
local mode = config.get("mode")
if mode then
objectdir = path.join(objectdir, mode)
end
return objectdir
end
-- get the dependent files directory
function _instance:dependir(opt)
-- init the dependent directory
local dependir = self:get("dependir")
if not dependir then
dependir = path.join(config.buildir(), ".deps")
end
dependir = path.join(dependir, self:name())
-- get root directory of target
if opt and opt.root then
return dependir
end
-- append plat sub-directory
local plat = config.get("plat")
if plat then
dependir = path.join(dependir, plat)
end
-- append arch sub-directory
local arch = config.get("arch")
if arch then
dependir = path.join(dependir, arch)
end
-- append mode sub-directory
local mode = config.get("mode")
if mode then
dependir = path.join(dependir, mode)
end
return dependir
end
-- get the autogen files directory
function _instance:autogendir(opt)
-- the autogen directory
local autogendir = path.join(config.buildir(), ".gens", self:name())
-- get root directory of target
if opt and opt.root then
return autogendir
end
-- append plat sub-directory
local plat = config.get("plat")
if plat then
autogendir = path.join(autogendir, plat)
end
-- append arch sub-directory
local arch = config.get("arch")
if arch then
autogendir = path.join(autogendir, arch)
end
-- append mode sub-directory
local mode = config.get("mode")
if mode then
autogendir = path.join(autogendir, mode)
end
return autogendir
end
-- get the target kind
function _instance:targetkind()
return self:get("kind") or "phony"
end
-- get the target directory
function _instance:targetdir()
-- the target directory
local targetdir = self:get("targetdir")
if not targetdir then
-- get build directory
targetdir = config.buildir()
-- append plat sub-directory
local plat = config.get("plat")
if plat then
targetdir = path.join(targetdir, plat)
end
-- append arch sub-directory
local arch = config.get("arch")
if arch then
targetdir = path.join(targetdir, arch)
end
-- append mode sub-directory
local mode = config.get("mode")
if mode then
targetdir = path.join(targetdir, mode)
end
end
-- ok?
return targetdir
end
-- get the target file
function _instance:targetfile()
-- the target directory
local targetdir = self:targetdir()
-- get target kind
local targetkind = self:targetkind()
-- only compile objects? no target file
if targetkind == "object" then
return
end
-- make the target file name and attempt to use the format of linker first
local filename = self:get("filename") or target.filename(self:basename(), targetkind, self:linker():format(targetkind))
assert(filename)
-- make the target file path
return path.join(targetdir, filename)
end
-- get the symbol file
function _instance:symbolfile()
-- the target directory
local targetdir = self:targetdir() or config.buildir()
assert(targetdir and type(targetdir) == "string")
-- the symbol file name
local filename = target.filename(self:basename(), "symbol")
assert(filename)
-- make the symbol file path
return path.join(targetdir, filename)
end
-- get the script directory of xmake.lua
function _instance:scriptdir()
return self:get("__scriptdir")
end
-- TODO get header directory (deprecated)
function _instance:headerdir()
return self:get("headerdir") or config.buildir()
end
-- get configuration output directory
function _instance:configdir()
return self:get("configdir") or config.buildir()
end
-- get run directory
function _instance:rundir()
return baseoption.get("workdir") or self:get("rundir") or path.directory(self:targetfile())
end
-- get install directory
function _instance:installdir()
-- get it from the cache
local installdir = self._INSTALLDIR
if not installdir then
-- get it from target
installdir = baseoption.get("installdir")
if not installdir then
-- DESTDIR: be compatible with https://www.gnu.org/prep/standards/html_node/DESTDIR.html
installdir = self:get("installdir") or os.getenv("INSTALLDIR") or os.getenv("PREFIX") or os.getenv("DESTDIR") or platform.get("installdir")
if installdir then
installdir = installdir:trim()
end
end
self._INSTALLDIR = installdir or false
end
-- ok
return installdir or nil
end
-- get rules of the source file
function _instance:filerules(sourcefile)
-- add rules from file config
local rules = {}
local fileconfig = self:fileconfig(sourcefile)
if fileconfig then
local filerules = fileconfig.rules or fileconfig.rule
if filerules then
for _, rulename in ipairs(table.wrap(filerules)) do
local r = self._PROJECT.rule(rulename) or rule.rule(rulename)
if r then
table.insert(rules, r)
end
end
end
end
-- load all rules for this target with sourcekinds and extensions
local key2rules = self._KEY2RULES
if not key2rules then
key2rules = {}
for _, r in pairs(table.wrap(self:rules())) do
for _, sourcekind in ipairs(table.wrap(r:get("sourcekinds"))) do
key2rules[sourcekind] = key2rules[sourcekind] or {}
table.insert(key2rules[sourcekind], r)
end
for _, extension in ipairs(table.wrap(r:get("extensions"))) do
extension = extension:lower()
key2rules[extension] = key2rules[extension] or {}
table.insert(key2rules[extension], r)
end
end
self._KEY2RULES = key2rules
end
-- get target rules from the given sourcekind or extension
for _, r in ipairs(table.wrap(key2rules[self:sourcekind_of(sourcefile)] or key2rules[path.extension(sourcefile):lower()])) do
table.insert(rules, r)
end
return rules
end
-- get the config info of the given source file
function _instance:fileconfig(sourcefile)
-- get files config
local filesconfig = self._FILESCONFIG
if not filesconfig then
filesconfig = {}
for filepath, fileconfig in pairs(table.wrap(self:get("__extra_files"))) do
-- match source files
local results = os.match(filepath)
if #results == 0 then
local sourceinfo = (self:get("__sourceinfo_files") or {})[filepath] or {}
utils.warning("cannot match %s(%s).add_files(\"%s\") at %s:%d", self:type(), self:name(), filepath, sourceinfo.file or "", sourceinfo.line or -1)
end
-- process source files
for _, file in ipairs(results) do
-- convert to the relative path
if path.is_absolute(file) then
file = path.relative(file, os.projectdir())
end
-- save it
filesconfig[file] = fileconfig
end
end
self._FILESCONFIG = filesconfig
end
-- get file config
return filesconfig[sourcefile]
end
-- set the config info to the given source file
function _instance:fileconfig_set(sourcefile, info)
-- get files config
local filesconfig = self._FILESCONFIG or {}
-- set config info
filesconfig[sourcefile] = info
-- update files config
self._FILESCONFIG = filesconfig
end
-- get the source files
function _instance:sourcefiles()
-- cached? return it directly
if self._SOURCEFILES then
return self._SOURCEFILES, false
end
-- get files
local files = self:get("files")
-- no files?
if not files then
return {}, false
end
-- match files
local i = 1
local count = 0
local cache = true
local sourcefiles = {}
for _, file in ipairs(table.wrap(files)) do
-- mark as deleted files?
local deleted = false
if file:startswith("__del_") then
file = file:sub(7)
deleted = true
end
-- match source files
local results = os.match(file)
if #results == 0 then
local sourceinfo = (self:get("__sourceinfo_files") or {})[file] or {}
utils.warning("cannot match %s(%s).%s_files(\"%s\") at %s:%d", self:type(), self:name(), utils.ifelse(deleted, "del", "add"), file, sourceinfo.file or "", sourceinfo.line or -1)
end
-- process source files
for _, sourcefile in ipairs(results) do
-- convert to the relative path
if path.is_absolute(sourcefile) then
sourcefile = path.relative(sourcefile, os.projectdir())
end
-- add or delete it
if deleted then
sourcefiles[sourcefile] = nil
else
sourcefiles[sourcefile] = true
end
end
end
-- make last source files
local sourcefiles_last = {}
for sourcefile, _ in pairs(sourcefiles) do
table.insert(sourcefiles_last, sourcefile)
end
-- cache it
if cache then
self._SOURCEFILES = sourcefiles_last
end
-- ok? modified?
return sourcefiles_last, not cache
end
-- get object file from source file
function _instance:objectfile(sourcefile)
-- get relative directory in the autogen directory
local relativedir = nil
local origindir = path.directory(path.absolute(sourcefile))
local autogendir = path.absolute(self:autogendir())
if origindir:startswith(autogendir) then
relativedir = path.join("gens", path.relative(origindir, autogendir))
end
-- get relative directory in the source directory
if not relativedir then
relativedir = path.directory(sourcefile)
end
-- translate path
--
-- e.g.
--
-- src/xxx.c
-- project/xmake.lua
-- build/.objs
--
-- objectfile: project/build/.objs/xxxx/../../xxx.c will be out of range for objectdir
--
-- we need replace '..' to '__' in this case
--
if path.is_absolute(relativedir) and os.host() == "windows" then
relativedir = relativedir:gsub(":[\\/]*", '\\') -- replace C:\xxx\ => C\xxx\
end
relativedir = relativedir:gsub("%.%.", "__")
-- make object file
-- full file name(not base) to avoid name-clash of object file
return path.join(self:objectdir(), relativedir, target.filename(path.filename(sourcefile), "object"))
end
-- get the object files
function _instance:objectfiles()
-- get source batches
local sourcebatches, modified = self:sourcebatches()
-- cached? return it directly
if self._OBJECTFILES and not modified then
return self._OBJECTFILES
end
-- get object files from source batches
local objectfiles = {}
local batchcount = 0
for _, sourcebatch in pairs(self:sourcebatches()) do
table.join2(objectfiles, sourcebatch.objectfiles)
batchcount = batchcount + 1
end
-- some object files may be repeat and appear link errors if multi-batches exists, so we need remove all repeat object files
-- e.g. add_files("src/*.c", {rules = {"rule1", "rule2"}})
local remove_repeat = batchcount > 1
-- get object files from all dependent targets (object kind)
if self:orderdeps() then
for _, dep in ipairs(self:orderdeps()) do
if dep:targetkind() == "object" then
table.join2(objectfiles, dep:objectfiles())
remove_repeat = true
end
end
end
-- remove repeat object files
if remove_repeat then
objectfiles = table.unique(objectfiles)
end
-- cache it
self._OBJECTFILES = objectfiles
-- ok?
return objectfiles
end
-- TODO get the header files, get("headers") (deprecated)
function _instance:headers(outputdir)
return self:headerfiles(outputdir, true)
end
-- get the header files
--
-- default: get("headers") + get("headerfiles")
-- only_deprecated: get("headers")
--
function _instance:headerfiles(outputdir, only_deprecated)
-- get header files?
local headers = self:get("headers") -- TODO deprecated
if not only_deprecated then
headers = table.join(headers or {}, self:get("headerfiles"))
end
if not headers then return end
-- get the installed header directory
local headerdir = outputdir
if not headerdir then
if only_deprecated then
headerdir = self:headerdir()
elseif self:installdir() then
headerdir = path.join(self:installdir(), "include")
end
end
-- get the extra information
local extrainfo = table.wrap(self:get("__extra_headerfiles"))
-- get the source pathes and destinate pathes
local srcheaders = {}
local dstheaders = {}
for _, header in ipairs(table.wrap(headers)) do
-- get the root directory
local rootdir, count = header:gsub("|.*$", ""):gsub("%(.*%)$", "")
if count == 0 then
rootdir = nil
end
-- remove '(' and ')'
local srcpathes = header:gsub("[%(%)]", "")
if srcpathes then
-- get the source pathes
srcpathes = os.match(srcpathes)
if srcpathes then
-- add the source headers
table.join2(srcheaders, srcpathes)
-- get the destinate directories if the install directory exists
if headerdir then
-- get the prefix directory
local prefixdir = (extrainfo[header] or {}).prefixdir
-- add the destinate headers
for _, srcpath in ipairs(srcpathes) do
-- get the destinate directory
local dstdir = headerdir
if prefixdir then
dstdir = path.join(dstdir, prefixdir)
end
-- the destinate header
local dstheader = nil
if rootdir then
dstheader = path.absolute(path.relative(srcpath, rootdir), dstdir)
else
dstheader = path.join(dstdir, path.filename(srcpath))
end
assert(dstheader)
-- add it
table.insert(dstheaders, dstheader)
end
end
end
end
end
-- ok?
return srcheaders, dstheaders
end
-- get the configuration files
function _instance:configfiles(outputdir)
return self:_copiedfiles("configfiles", outputdir or self:configdir(), function (dstpath, fileinfo)
if dstpath:endswith(".in") then
dstpath = dstpath:sub(1, -4)
end
return dstpath
end)
end
-- get the install files
function _instance:installfiles(outputdir)
return self:_copiedfiles("installfiles", outputdir or self:installdir())
end
-- get depend file from object file
function _instance:dependfile(objectfile)
-- get the dependent original file and directory, @note relative to the root directory
local originfile = path.absolute(objectfile and objectfile or self:targetfile())
local origindir = path.directory(originfile)
-- get relative directory in the object directory
local relativedir = nil
local objectdir = path.absolute(self:objectdir())
if origindir:startswith(objectdir) then
relativedir = path.relative(origindir, objectdir)
end
-- get relative directory in the target directory
if not relativedir then
local targetdir = path.absolute(self:targetdir())
if origindir:startswith(targetdir) then
relativedir = path.relative(origindir, targetdir)
end
end
-- get relative directory in the autogen directory
if not relativedir then
local autogendir = path.absolute(self:autogendir())
if origindir:startswith(autogendir) then
relativedir = path.join("gens", path.relative(origindir, autogendir))
end
end
-- get relative directory in the build directory
if not relativedir then
local buildir = path.absolute(config.buildir())
if origindir:startswith(buildir) then
relativedir = path.join("build", path.relative(origindir, buildir))
end
end
-- get relative directory in the project directory
if not relativedir then
local projectdir = os.projectdir()
if origindir:startswith(projectdir) then
relativedir = path.relative(origindir, projectdir)
end
end
-- get the relative directory from the origin file
if not relativedir then
relativedir = origindir
end
if path.is_absolute(relativedir) and os.host() == "windows" then
relativedir = relativedir:gsub(":[\\/]*", '\\') -- replace C:\xxx\ => C\xxx\
end
-- originfile: project/build/.objs/xxxx/../../xxx.c will be out of range for objectdir
--
-- we need replace '..' to '__' in this case
--
relativedir = relativedir:gsub("%.%.", "__")
-- make dependent file
-- full file name(not base) to avoid name-clash of original file
return path.join(self:dependir(), relativedir, path.basename(originfile) .. ".d")
end
-- get the dependent include files
function _instance:dependfiles()
-- get source batches
local sourcebatches, modified = self:sourcebatches()
-- cached? return it directly
if self._DEPENDFILES and not modified then
return self._DEPENDFILES
end
-- get dependent files from source batches
local dependfiles = {}
for _, sourcebatch in pairs(self:sourcebatches()) do
table.join2(dependfiles, sourcebatch.dependfiles)
end
-- cache it
self._DEPENDFILES = dependfiles
-- ok?
return dependfiles
end
-- get the sourcekind for the given source file
function _instance:sourcekind_of(sourcefile)
-- get the sourcekind of this source file
local sourcekind = language.sourcekind_of(sourcefile)
local fileconfig = self:fileconfig(sourcefile)
if fileconfig and fileconfig.sourcekind then
-- we can override the sourcekind, e.g. add_files("*.c", {sourcekind = "cxx"})
sourcekind = fileconfig.sourcekind
end
return sourcekind
end
-- get the kinds of sourcefiles
--
-- e.g. cc cxx mm mxx as ...
--
function _instance:sourcekinds()
-- cached? return it directly
if self._SOURCEKINDS then
return self._SOURCEKINDS
end
-- make source kinds
local sourcekinds = {}
for _, sourcefile in pairs(self:sourcefiles()) do
-- get source kind
local sourcekind = self:sourcekind_of(sourcefile)
if sourcekind then
table.insert(sourcekinds, sourcekind)
end
end
-- remove repeat
sourcekinds = table.unique(sourcekinds)
-- cache it
self._SOURCEKINDS = sourcekinds
-- ok?
return sourcekinds
end
-- get source count
function _instance:sourcecount()
return #self:sourcefiles()
end
-- get source batches
function _instance:sourcebatches()
-- get source files
local sourcefiles, modified = self:sourcefiles()
-- cached? return it directly
if self._SOURCEBATCHES and not modified then
return self._SOURCEBATCHES, false
end
-- make source batches for each source kinds
local sourcebatches = {}
for _, sourcefile in ipairs(sourcefiles) do
-- get file rules
local filerules = self:filerules(sourcefile)
if #filerules == 0 then
os.raise("unknown source file: %s", sourcefile)
end
-- add source batch for the file rules
for _, filerule in ipairs(filerules) do
-- get rule name
local rulename = filerule:name()
-- make this batch
local sourcebatch = sourcebatches[rulename] or {sourcefiles = {}}
sourcebatches[rulename] = sourcebatch
-- save the rule name
sourcebatch.rulename = rulename
-- add source file to this batch
table.insert(sourcebatch.sourcefiles, sourcefile)
-- attempt to get source kind from the builtin languages
local sourcekind = self:sourcekind_of(sourcefile)
if sourcekind then
-- save source kind
sourcebatch.sourcekind = sourcekind
-- insert object files to source batches
sourcebatch.objectfiles = sourcebatch.objectfiles or {}
sourcebatch.dependfiles = sourcebatch.dependfiles or {}
local objectfile = self:objectfile(sourcefile)
table.insert(sourcebatch.objectfiles, objectfile)
table.insert(sourcebatch.dependfiles, self:dependfile(objectfile))
end
end
end
-- cache it
self._SOURCEBATCHES = sourcebatches
-- ok?
return sourcebatches, modified
end
-- get xxx_script
function _instance:script(name, generic)
-- get script
local script = self:get(name)
local result = nil
if type(script) == "function" then
result = script
elseif type(script) == "table" then
-- get plat and arch
local plat = config.get("plat") or ""
local arch = config.get("arch") or ""
-- match pattern
--
-- `@linux`
-- `@linux|x86_64`
-- `@macosx,linux`
-- `android@macosx,linux`
-- `android|armv7-a@macosx,linux`
-- `android|armv7-a@macosx,linux|x86_64`
-- `android|armv7-a@linux|x86_64`
--
for _pattern, _script in pairs(script) do
local hosts = {}
local hosts_spec = false
_pattern = _pattern:gsub("@(.+)", function (v)
for _, host in ipairs(v:split(',')) do
hosts[host] = true
hosts_spec = true
end
return ""
end)
if not _pattern:startswith("__") and (not hosts_spec or hosts[os.host() .. '|' .. os.arch()] or hosts[os.host()])
and (_pattern:trim() == "" or (plat .. '|' .. arch):find('^' .. _pattern .. '$') or plat:find('^' .. _pattern .. '$')) then
result = _script
break
end
end
-- get generic script
result = result or script["__generic__"] or generic
end
-- only generic script
result = result or generic
-- imports some modules first
if result and result ~= generic then
local scope = getfenv(result)
if scope then
for _, modulename in ipairs(table.wrap(self:get("imports"))) do
scope[sandbox_module.name(modulename)] = sandbox_module.import(modulename, {anonymous = true})
end
end
end
return result
end
-- TODO get the config header version (deprecated)
function _instance:configversion()
-- get the config version and build version
local version = nil
local buildversion = nil
local configheader = self:get("config_header")
local configheader_extra = self:get("__extra_config_header")
if type(configheader_extra) == "table" then
version = table.wrap(configheader_extra[configheader]).version
buildversion = self._CONFIGHEADER_BUILDVERSION
if not buildversion then
buildversion = table.wrap(configheader_extra[configheader]).buildversion
if buildversion then
buildversion = os.date(buildversion, os.time())
end
self._CONFIGHEADER_BUILDVERSION = buildversion
end
end
-- ok?
return version, buildversion
end
-- get the config header prefix
function _instance:configprefix()
-- get the config prefix
local configprefix = nil
local configheader = self:get("config_header")
local configheader_extra = self:get("__extra_config_header")
if type(configheader_extra) == "table" then
configprefix = table.wrap(configheader_extra[configheader]).prefix
end
if not configprefix then
configprefix = self:get("config_h_prefix") or (self:name():upper() .. "_CONFIG")
end
-- ok?
return configprefix
end
-- get the config header files (deprecated)
function _instance:configheader(outputdir)
-- get config header
local configheader = self:get("config_header") or self:get("config_h")
if not configheader then
return
end
-- mark as deprecated
if self:get("config_h") then
deprecated.add("set_config_header(\"%s\", {prefix = \"...\"})", "set_config_h(\"%s\")", path.relative(self:get("config_h"), os.projectdir()))
end
-- get the root directory
local rootdir, count = configheader:gsub("|.*$", ""):gsub("%(.*%)$", "")
if count == 0 then
rootdir = nil
end
-- remove '(' and ')'
configheader = configheader:gsub("[%(%)]", "")
-- get the output header
local outputheader = nil
if outputdir then
if rootdir then
outputheader = path.absolute(path.relative(configheader, rootdir), outputdir)
else
outputheader = path.join(outputdir, path.filename(configheader))
end
end
-- ok
return configheader, outputheader
end
-- get the precompiled header file (xxx.[h|hpp|inl])
--
-- @param langkind c/cxx
--
function _instance:pcheaderfile(langkind)
return self:get("p" .. langkind .. "header")
end
-- get the output of precompiled header file (xxx.h.pch)
--
-- @param langkind c/cxx
--
function _instance:pcoutputfile(langkind)
-- init cache
self._PCOUTPUTFILES = self._PCOUTPUTFILES or {}
-- get it from the cache first
local pcoutputfile = self._PCOUTPUTFILES[langkind]
if pcoutputfile then
return pcoutputfile
end
-- get the precompiled header file in the object directory
local pcheaderfile = self:pcheaderfile(langkind)
if pcheaderfile then
-- load tool instance
local toolinstance = tool.load(language.langkinds()[langkind])
-- make precompiled output file
--
-- @note gcc has not -include-pch option to set the pch file path
--
pcoutputfile = self:objectfile(pcheaderfile)
pcoutputfile = path.join(path.directory(pcoutputfile), path.basename(pcoutputfile) .. (toolinstance and toolinstance:name() == "gcc" and ".gch" or ".pch"))
-- save to cache
self._PCOUTPUTFILES[langkind] = pcoutputfile
return pcoutputfile
end
end
-- get target apis
function target.apis()
return
{
values =
{
-- target.set_xxx
"target.set_kind"
, "target.set_strip"
, "target.set_rules"
, "target.set_version"
, "target.set_enabled"
, "target.set_default"
, "target.set_options"
, "target.set_symbols"
, "target.set_filename"
, "target.set_basename"
, "target.set_warnings"
, "target.set_optimize"
, "target.set_languages"
-- target.add_xxx
, "target.add_deps"
, "target.add_rules"
, "target.add_options"
, "target.add_packages"
, "target.add_imports"
, "target.add_languages"
, "target.add_vectorexts"
}
, keyvalues =
{
-- target.set_xxx
"target.set_values"
, "target.set_configvar"
, "target.set_runenv"
, "target.set_toolchain"
-- target.add_xxx
, "target.add_values"
, "target.add_runenvs"
}
, pathes =
{
-- target.set_xxx
"target.set_targetdir"
, "target.set_objectdir"
, "target.set_dependir"
, "target.set_configdir"
, "target.set_installdir"
, "target.set_rundir"
-- target.add_xxx
, "target.add_files"
, "target.add_cleanfiles"
, "target.add_configfiles"
, "target.add_installfiles"
-- target.del_xxx
, "target.del_files"
}
, dictionary =
{
-- target.set_xxx
"target.set_tools" -- TODO: deprecated
, "target.add_tools" -- TODO: deprecated
}
, script =
{
-- target.on_xxx
"target.on_run"
, "target.on_load"
, "target.on_link"
, "target.on_build"
, "target.on_build_file"
, "target.on_build_files"
, "target.on_clean"
, "target.on_package"
, "target.on_install"
, "target.on_uninstall"
-- target.before_xxx
, "target.before_run"
, "target.before_link"
, "target.before_build"
, "target.before_build_file"
, "target.before_build_files"
, "target.before_clean"
, "target.before_package"
, "target.before_install"
, "target.before_uninstall"
-- target.after_xxx
, "target.after_run"
, "target.after_link"
, "target.after_build"
, "target.after_build_file"
, "target.after_build_files"
, "target.after_clean"
, "target.after_package"
, "target.after_install"
, "target.after_uninstall"
}
}
end
-- get the filename from the given target name and kind
function target.filename(targetname, targetkind, targetformat)
-- check
assert(targetname and targetkind)
-- make filename by format
local format = targetformat or platform.format(targetkind)
return format and (format:gsub("%$%(name%)", targetname)) or targetname
end
-- get the link name of the target file
function target.linkname(filename)
local linkname, count = filename:gsub(target.filename("__pattern__", "static"):gsub("%.", "%%."):gsub("__pattern__", "(.+)") .. "$", "%1")
if count == 0 then
linkname, count = filename:gsub(target.filename("__pattern__", "shared"):gsub("%.", "%%."):gsub("__pattern__", "(.+)") .. "$", "%1")
end
if count == 0 and config.is_plat("mingw") then
-- for the mingw platform, it is compatible with the libxxx.a and xxx.lib
local formats = {static = "lib$(name).a", shared = "lib$(name).so"}
linkname, count = filename:gsub(target.filename("__pattern__", "static", formats["static"]):gsub("%.", "%%."):gsub("__pattern__", "(.+)") .. "$", "%1")
if count == 0 then
linkname, count = filename:gsub(target.filename("__pattern__", "shared", formats["shared"]):gsub("%.", "%%."):gsub("__pattern__", "(.+)") .. "$", "%1")
end
end
return count > 0 and linkname or nil
end
-- new a target instance
function target.new(...)
return _instance.new(...)
end
-- return module
return target
|