panchengyong
10 days ago b2d3f7caf927e5b83ec52efb74f1f818dbb15236
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
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
/**
 * 检查apk主版本是否是8,如果不是会有异常发生
 * 该函数可以在程序中调用,防止iec和apk版本不一致
 * 适合版本 EC 8.2.0+
 */
function checkApkVersion8() {
    return configWrapper.checkApkVersion8();
}
 
/**
 * 检查apk主版本是否是9,如果不是会有异常发生
 * 该函数可以在程序中调用,防止iec和apk版本不一致
 * 适合版本 EC 9.1.0+
 */
function checkApkVersion9() {
    return configWrapper.checkApkVersion9();
}
 
 
/**
 * 读取JSON中的整型数据
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @param key        配置项目
 * @return 整型 JSON中key对应的整型数据
 */
function readConfigInt(key) {
    return configWrapper.getParamInt(key);
}
 
/**
 * 取得配置的JSON
 * @return {null|JSON} JSON数据
 */
function getConfigJSON() {
    var d = configWrapper.getParams();
    if (d == null || d == "") {
        return null;
    }
    return JSON.parse(d);
}
 
 
function readConfigDouble(key) {
    return configWrapper.getParamDouble(key);
}
 
function readConfigBoolean(key) {
    return configWrapper.getParamBoolean(key);
}
 
/**
 * 更新配置
 * @param key 键
 * @param value  值
 * @return {boolean} true 成功,false失败
 */
function updateConfig(key, value) {
    return configWrapper.updateConfig(key, value);
}
 
function readConfigLong(key) {
    return configWrapper.getParamLong(key);
}
 
/**
 * 读取JSON中的字符串数据
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param key        配置项目
 * @return string JSON中key对应的字符串数据
 */
function readConfigString(key) {
    return javaString2string(configWrapper.getParamString(key));
}
 
/**
 * 删除UI配置
 *
 * @param key        配置项目
 * @return {bool} true 代表成功 false 代表失败
 */
function deleteConfig(key) {
    return configWrapper.deleteConfig(key);
}
 
/**
 * 是否是agent模式
 * @return {boolean}
 */
function isAgentMode() {
    if (configWrapper == null) {
        return false;
    }
    return configWrapper.isAgentMode();
}
 
/**
 * 是否是无障碍模式
 * @return {boolean}
 */
function isAccMode() {
    if (configWrapper == null) {
        return false;
    }
    return configWrapper.isAccMode();
}
 
 
function isFastJs() {
    if (configWrapper == null) {
        return false;
    }
    //return configWrapper.isFastJs();
    return false;
}
 
function isStableJs() {
    if (configWrapper == null) {
        return false;
    }
    //return configWrapper.isStableJs();
    return true;
}
 
 
/**
 * 节点选择器集合
 * @constructor
 */
function S() {
    this.selectors = [];
    this.attr = {};
    this.createSelector();
}
 
S.prototype.createSelector = function () {
    this.attr = {};
    this.selectors.push(this.attr);
};
/**
 * 获取节点选择器集合的对象
 * @return {S} 选择器对象
 */
S.get = function () {
    return new S();
};
/**
 * 获取节点信息
 * @param timeout 超时时间
 * @return {null|NodeInfo[]} 节点信息集合
 */
S.prototype.getNodeInfo = function (timeout) {
    return getNodeInfo(this, timeout);
};
 
/**
 * 通过选择器 获取第一个节点信息
 * @param timeout 等待时间,单位是毫秒
 * @return {null|NodeInfo} 对象或者null
 */
S.prototype.getOneNodeInfo = function (timeout) {
    return getOneNodeInfo(this, timeout);
};
 
 
/**
 * 创建一个子节点选择器
 * @return {S} 选择器对象
 */
S.prototype.child = function () {
    this.createSelector();
    return this;
};
S.prototype.row = function (row) {
    if (this.attr != null) {
        this.attr["row"] = row;
    }
    return this;
};
S.prototype.column = function (column) {
    if (this.attr != null) {
        this.attr["column"] = column;
    }
    return this;
};
S.prototype.rowSpan = function (rowSpan) {
    if (this.attr != null) {
        this.attr["rowSpan"] = rowSpan;
    }
    return this;
};
S.prototype.columnSpan = function (columnSpan) {
    if (this.attr != null) {
        this.attr["columnSpan"] = columnSpan;
    }
    return this;
};
S.prototype.rowCount = function (rowCount) {
    if (this.attr != null) {
        this.attr["rowCount"] = rowCount;
    }
    return this;
};
S.prototype.columnCount = function (columnCount) {
    if (this.attr != null) {
        this.attr["columnCount"] = columnCount;
    }
    return this;
};
/**
 * 按照属性 selected 进行选择
 *
 * @param selected true 或者 false
 * @return {S}  节点选择器
 */
S.prototype.selected = function (selected) {
    if (this.attr != null) {
        this.attr["selected"] = selected;
    }
    return this;
};
/**
 * 按照属性 visible 进行选择
 *
 * @param visible true 或者 false
 * @return {S}  节点选择器
 */
S.prototype.visible = function (visible) {
    if (this.attr != null) {
        this.attr["visible"] = visible;
    }
    return this;
};
 
S.prototype.nid = function (nid) {
    if (this.attr != null) {
        this.attr["nid"] = nid;
    }
    return this;
};
 
/**
 * 按照属性 focused 进行选择
 *
 * @param focused true 或者 false
 * @return {S}  节点选择器
 */
S.prototype.focused = function (focused) {
    if (this.attr != null) {
        this.attr["focused"] = focused;
    }
    return this;
};
 
 
/**
 * 按照属性 enabled 进行选择
 *
 * @param enabled true 或者 false
 * @return {S} 节点选择器
 */
S.prototype.enabled = function (enabled) {
    if (this.attr != null) {
        this.attr["enabled"] = enabled;
    }
    return this;
};
 
 
/**
 * 按照属性 focusable 进行选择
 *
 * @param focusable true 或者 false
 * @return  {S} 节点选择器
 */
S.prototype.focusable = function (focusable) {
 
    if (this.attr != null) {
        this.attr["focusable"] = focusable;
    }
    return this;
};
 
 
/**
 * 按照属性 scrollable 进行选择
 *
 * @param scrollable true 或者 false
 * @return  {S} 节点选择器
 */
S.prototype.scrollable = function (scrollable) {
    if (this.attr != null) {
        this.attr["scrollable"] = scrollable;
    }
    return this;
};
 
 
/**
 * 按照属性 long-clickable 进行选择
 *
 * @param longClickable true 或者 false
 * @return {S} 节点选择器
 */
S.prototype.longClickable = function (longClickable) {
 
    if (this.attr != null) {
        this.attr["longClickable"] = longClickable;
    }
    return this;
};
 
 
/**
 * 按照属性 clickable 进行选择
 *
 * @param clickable true 或者 false
 * @return {S} 节点选择器
 */
S.prototype.clickable = function (clickable) {
 
    if (this.attr != null) {
        this.attr["clickable"] = clickable;
    }
    return this;
};
 
 
/**
 * 按照属性 checked 进行选择
 *
 * @param checked true 或者 false
 * @return  {S} 节点选择器
 */
S.prototype.checked = function (checked) {
 
    if (this.attr != null) {
        this.attr["checked"] = checked;
    }
    return this;
};
 
 
/**
 * 按照属性 checkable 进行选择
 *
 * @param checkable true 或者 false
 * @return {S} 节点选择器
 */
S.prototype.checkable = function (checkable) {
 
    if (this.attr != null) {
        this.attr["checkable"] = checkable;
    }
    return this;
};
 
 
/**
 * 按照属性 id 进行匹配
 *
 * @param id 字符串
 * @return {S} 节点选择器
 */
S.prototype.id = function (id) {
    if (this.attr != null) {
        this.attr["id"] = id;
    }
    return this;
};
 
/**
 * 按照属性 id 进行匹配, 支持正则
 *
 * @param id 字符串
 * @return {S} 节点选择器
 */
S.prototype.idMatch = function (id) {
    if (this.attr != null) {
        this.attr["idMatch"] = id;
    }
    return this;
};
 
/**
 * 按照属性 pkg 进行匹配
 *
 * @param pkg 字符串
 * @return {S} 节点选择器
 */
S.prototype.pkg = function (pkg) {
 
    if (this.attr != null) {
        this.attr["pkg"] = pkg;
    }
    return this;
};
 
/**
 * 按照属性 pkg 进行匹配,支持正则
 *
 * @param pkg 字符串
 * @return {S} 节点选择器
 */
S.prototype.pkgMatch = function (pkg) {
 
    if (this.attr != null) {
        this.attr["pkgMatch"] = pkg;
    }
    return this;
};
 
/**
 * 按照属性 desc 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.desc = function (value) {
    if (this.attr != null) {
        this.attr["desc"] = value;
    }
    return this;
};
/**
 * 按照属性 desc 进行匹配,支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.descMatch = function (value) {
    if (this.attr != null) {
        this.attr["descMatch"] = value;
    }
    return this;
};
 
 
/**
 * 按照属性 bounds 进行范围
 *
 * @param left 范围左边数值
 *  @param top 范围上边数值
 *  @param right 范围右边数值
 *  @param bottom 范围底边数值
 * @return {S} 节点选择器
 */
S.prototype.bounds = function (left, top, right, bottom) {
    if (this.attr != null) {
        this.attr["bounds"] = left + "," + top + "," + right + "," + bottom;
    }
    return this;
};
 
/**
 * 按照属性 text 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.text = function (value) {
    if (this.attr != null) {
        this.attr["text"] = value;
    }
    return this;
};
 
 
S.prototype.xpath = function (value) {
    if (this.attr != null) {
        this.attr["xpath"] = value;
    }
    return this;
};
 
 
/**
 * 按照属性 text 进行匹配,支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.textMatch = function (value) {
    if (this.attr != null) {
        this.attr["textMatch"] = value;
    }
    return this;
};
/**
 * 按照属性 clz 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.clz = function (value) {
    if (this.attr != null) {
        this.attr["clz"] = value;
    }
    return this;
};
/**
 * 按照属性 clz 进行匹配,支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.clzMatch = function (value) {
    if (this.attr != null) {
        this.attr["clzMatch"] = value;
    }
    return this;
};
 
 
/**
 * 按照属性 depth 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.depth = function (value) {
 
    if (this.attr != null) {
        this.attr["depth"] = value;
    }
    return this;
};
 
/**
 * 按照属性 index 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.index = function (value) {
 
    if (this.attr != null) {
        this.attr["index"] = value;
    }
    return this;
};
/**
 * 按照属性 drawingOrder 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.drawingOrder = function (value) {
 
    if (this.attr != null) {
        this.attr["drawingOrder"] = value;
    }
    return this;
};
/**
 * 按照属性 childCount 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.childCount = function (value) {
    if (this.attr != null) {
        this.attr["childCount"] = value;
    }
    return this;
};
/**
 * 按照属性 editable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.editable = function (value) {
    if (this.attr != null) {
        this.attr["editable"] = value;
    }
    return this;
};
/**
 * 按照属性 password 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.password = function (value) {
    if (this.attr != null) {
        this.attr["password"] = value;
    }
    return this;
};
/**
 * 按照属性 dismissable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.dismissable = function (value) {
    if (this.attr != null) {
        this.attr["dismissable"] = value;
    }
    return this;
};
/**
 * 按照属性 multiLine 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
S.prototype.multiLine = function (value) {
    if (this.attr != null) {
        this.attr["multiLine"] = value;
    }
    return this;
};
S.prototype.toJSONString = function () {
    return JSON.stringify(this.selectors);
};
 
 
function NotificationInfo(javaNotification) {
    this.seqId = null;
    this.pkg = null;
    this.text = null;
    this.title = null;
    this.subText = null;
    this.infoText = null;
    this.time = 0;
    this.bigText = null;
    this.titleBig = null;
    this.summaryBig = null;
    this.key = null;
    if (javaNotification != null) {
        this.seqId = javaNotification['seqId'];
        this.pkg = javaNotification['pkg'];
        this.text = javaNotification["text"];
        this.title = javaNotification["title"];
        this.subText = javaNotification["subText"];
        this.tickerText = javaNotification["infoText"];
        this.time = javaNotification["time"];
        this.bigText = javaNotification["bigText"];
        this.titleBig = javaNotification["titleBig"];
        this.summaryBig = javaNotification["summaryBig"];
        this.key = javaNotification["key"];
    }
}
 
 
function ToastInfo(javaToast) {
    this.pkg = null;
    this.text = null;
    this.time = 0;
    if (javaToast != null) {
        this.pkg = javaToast["pkg"];
        this.text = javaToast["text"];
        this.time = javaToast["time"];
 
    }
}
 
function Point(javaPoint) {
    this.x = 0;
    this.y = 0;
    if (javaPoint != null) {
        this.x = javaPoint["x"];
        this.y = javaPoint["y"];
    }
}
 
Point.get = function () {
    return new Point(null);
};
Point.jsonToObject = function (res) {
    if (res == null || res == "") {
        return null;
    }
    res = JSON.parse(res);
    if (res == null) {
        return null;
    }
    return new Point(res);
};
Point.prototype.setX = function (x) {
    this.x = x;
    return this;
};
Point.prototype.setY = function (y) {
    this.y = y;
    return this;
};
Point.prototype.toJSONString = function () {
    return JSON.stringify(this);
};
 
 
function Rect(javaRect) {
    this.top = 0;
    this.bottom = 0;
    this.left = 0;
    this.right = 0;
    this.similarity = 0;
    if (javaRect != null) {
        this.top = javaRect["top"];
        this.bottom = javaRect["bottom"];
        this.left = javaRect["left"];
        this.right = javaRect["right"];
        this.similarity = javaRect["similarity"];
    }
}
 
/**
 * 取得中间的坐标点
 * @return {Point} 对象
 */
Rect.prototype.center = function () {
    var p = new Point(null);
    p.x = this.left + (this.right - this.left) / 2;
    p.y = this.top + (this.bottom - this.top) / 2;
    return p;
};
Rect.jsonToObject = function (res) {
    if (res == null || res == "") {
        return null;
    }
    res = JSON.parse(res);
    if (res == null) {
        return null;
    }
    return new Rect(res);
};
 
 
Rect.get = function () {
    return new Rect(null);
};
Rect.prototype.setLeft = function (left) {
    this.left = left;
    return this;
};
Rect.prototype.setTop = function (top) {
    this.top = top;
    return this;
};
Rect.prototype.setRight = function (right) {
    this.right = right;
    return this;
};
Rect.prototype.setBottom = function (bottom) {
    this.bottom = bottom;
    return this;
};
Rect.prototype.toJSONString = function () {
    return JSON.stringify(this);
};
 
function Match(javaMatch) {
    this.point = null;
    this.similarity = 0;
    if (javaMatch != null) {
        this.similarity = javaMatch["similarity"];
        var d = javaMatch["point"];
        if (d != null) {
            this.point = new Point(d);
        }
    }
}
 
Match.prototype.toJSONString = function () {
    return JSON.stringify(this);
};
 
function NodeInfo(javaNodeInfo) {
    this.bounds = null;
    this.visibleBounds = null;
    this.childCount = 0;
    this.clz = null;
    this.desc = null;
    this.pkg = null;
    this.text = null;
    this.checkable = false;
    this.checked = false;
    this.clickable = false;
    this.enabled = false;
    this.focusable = false;
    this.focused = false;
    this.longClickable = false;
    this.scrollable = false;
    this.selected = false;
    this.id = null;
    this.nid = null;
    this.parentId = null;
    this.index = 0;
    this.depth = 0;
    this.visible = false;
    this.drawingOrder = 0;
    this.editable = false;
    this.password = false;
    this.multiLine = false;
    this.dismissable = false;
 
    this.row = 0;
    this.column = 0;
    this.rowSpan = 0;
    this.columnSpan = 0;
    this.rowCount = 0;
    this.columnCount = 0;
 
    if (javaNodeInfo != null) {
        if (javaNodeInfo["bounds"] != null) {
            this.bounds = new Rect(javaNodeInfo["bounds"]);
        }
        if (javaNodeInfo["visibleBounds"] != null) {
            this.visibleBounds = new Rect(javaNodeInfo["visibleBounds"]);
        }
        this.childCount = javaNodeInfo["childCount"];
 
        this.row = javaNodeInfo["row"];
        this.column = javaNodeInfo["column"];
        this.rowSpan = javaNodeInfo["rowSpan"];
        this.columnSpan = javaNodeInfo["columnSpan"];
        this.rowCount = javaNodeInfo["rowCount"];
        this.columnCount = javaNodeInfo["columnCount"];
 
 
        this.clz = javaNodeInfo["clz"];
        this.pkg = javaNodeInfo["pkg"];
        this.desc = javaNodeInfo["desc"];
        this.text = javaNodeInfo["text"];
        this.checkable = javaNodeInfo["checkable"];
        this.checked = javaNodeInfo["checked"];
        this.clickable = javaNodeInfo["clickable"];
        this.enabled = javaNodeInfo["enabled"];
        this.focusable = javaNodeInfo["focusable"];
        this.focused = javaNodeInfo["focused"];
        this.longClickable = javaNodeInfo["longClickable"];
        this.scrollable = javaNodeInfo["scrollable"];
        this.selected = javaNodeInfo["selected"];
        this.id = javaNodeInfo["id"];
        this.nid = javaNodeInfo["nid"];
        this.parentId = javaNodeInfo["parentId"];
        this.index = javaNodeInfo["index"];
        this.depth = javaNodeInfo["depth"];
        this.drawingOrder = javaNodeInfo["drawingOrder"];
        this.editable = javaNodeInfo["editable"];
        this.password = javaNodeInfo["password"];
        this.multiLine = javaNodeInfo["multiLine"];
        this.dismissable = javaNodeInfo["dismissable"];
        this.visible = javaNodeInfo["visible"];
    }
}
 
/**
 * 该节点的父级节点
 * @return {null|NodeInfo} 对象 或者null
 */
NodeInfo.prototype.parent = function () {
    return getNodeInfoParent(this);
};
 
 
/**
 * 取得单个子节点
 * @param index 子节点索引
 * @return {null|NodeInfo} 对象 或者null
 */
NodeInfo.prototype.child = function (index) {
    return getNodeInfoChild(this, index);
};
 
 
/**
 * 取得所有子节点
 * @return {null|NodeInfo[]} 节点集合
 */
NodeInfo.prototype.allChildren = function () {
    return getNodeInfoAllChildren(this);
};
 
 
/**
 * 当前节点的所有兄弟节点
 * @return {null|NodeInfo[]} 节点集合
 */
NodeInfo.prototype.siblings = function () {
    return getSiblingNodeInfo(this);
};
 
 
/**
 * 在当前节点前面的兄弟节点
 * @return {null|NodeInfo[]} 节点集合
 */
NodeInfo.prototype.previousSiblings = function () {
    return getPreviousSiblingNodeInfo(this);
};
/**
 * 点击中心点
 * @return {boolean} true 成功
 */
NodeInfo.prototype.clickCenter = function () {
    return clickCenter(this.bounds);
};
 
/**
 * 通过选择器 获取第一个节点信息
 * @param selectors 选择器
 * @param timeout
 * @return {null|NodeInfo} 对象或者null
 */
NodeInfo.prototype.getOneNodeInfo = function (selectors, timeout) {
    if (isAccMode()) {
        return acEvent.getOneNodeInfoForNode(this.nid, selectors, timeout);
    } else if (isAgentMode()) {
        return agentEvent.getOneNodeInfoForNode(this.nid, selectors, timeout);
    }
 
    return null;
};
 
 
/**
 * 通过选择器 获取节点信息
 * @param selectors 选择器
 * @param timeout
 * @return {null|NodeInfo[]} NodeInfo 数组
 */
NodeInfo.prototype.getNodeInfo = function (selectors, timeout) {
    if (isAccMode()) {
        return acEvent.getNodeInfoForNode(this.nid, selectors, timeout);
    } else if (isAgentMode()) {
        return agentEvent.getNodeInfoForNode(this.nid, selectors, timeout);
    }
    return null;
};
 
/**
 * 在当前节点后面的兄弟节点
 * @return {null|NodeInfo[]} 节点集合
 */
NodeInfo.prototype.nextSiblings = function () {
    return getNextSiblingNodeInfo(this);
};
 
/**
 * 点击节点
 * @return boolean|布尔型 true 成功 ,false 失败
 */
NodeInfo.prototype.click = function () {
    return clickRandomRect(this.bounds);
};
/**
 * 无指针点击节点
 * @return {boolean} true 成功 ,false 失败
 */
NodeInfo.prototype.clickEx = function () {
    return clickExNodeInfo(this);
};
 
/**
 * 聚焦
 * @return {boolean}
 */
NodeInfo.prototype.setFocus = function () {
    return setFocusNodeInfo(this);
};
 
/**
 * 无指针长点击节点
 * @return {boolean} true 成功 ,false 失败
 */
NodeInfo.prototype.longClickEx = function () {
    return longClickExNodeInfo(this);
};
 
/**
 * 向前滚动
 * @return {boolean} true 代表成功 false 代表失败
 */
NodeInfo.prototype.scrollForward = function () {
    return scrollForwardNodeInfo(this);
};
/**
 * 向后滚动
 * @return {boolean} true 代表成功 false 代表失败
 */
NodeInfo.prototype.scrollBackward = function () {
    return scrollBackwardNodeInfo(this);
};
/**
 * 向下滚动
 * @return {boolean} true 代表成功 false 代表失败
 */
NodeInfo.prototype.scrollDown = function () {
    return scrollDownNodeInfo(this);
};
/**
 * 向上滚动
 * @return {boolean} true 代表成功 false 代表失败
 */
NodeInfo.prototype.scrollUp = function () {
    return scrollUpNodeInfo(this);
};
/**
 * 向左滚动
 * @return {boolean} true 代表成功 false 代表失败
 */
NodeInfo.prototype.scrollLeft = function () {
    return scrollLeftNodeInfo(this);
};
/**
 * 向右滚动
 * @return {boolean} true 代表成功 false 代表失败
 */
NodeInfo.prototype.scrollRight = function () {
    return scrollRightNodeInfo(this);
};
 
/**
 * 对某个节点粘贴数据
 * @param content 要输入的内容
 * @return {boolean} true 成功 ,false 失败
 */
NodeInfo.prototype.pasteText = function (content) {
    return pasteTextNodeInfo(this, content);
};
 
 
/**
 * 长点击节点
 * @return {boolean} true 成功 ,false 失败
 */
NodeInfo.prototype.longClick = function () {
    return longClickRandomRect(this.bounds);
};
/**
 * 对某个节点输入数据
 * @param content 要输入的内容
 * @return {boolean} true 成功 ,false 失败
 */
NodeInfo.prototype.inputText = function (content) {
    return inputTextNodeInfo(this, content);
};
/**
 * 使用输入法对某个节点输入数据,前提是已经设置本程序的输入法为默认输入法
 * @param content 要输入的内容
 * @return {boolean} true 成功 ,false 失败
 */
NodeInfo.prototype.imeInputText = function (content) {
    return imeInputTextNodeInfo(this, content);
};
/**
 * 使用输入法对某个节点输入数据,前提是已经设置本程序的输入法为默认输入法
 * @param content 具体请看 KeyEvent.KEYCODE_*的值,例如66 = enter 67=del,84=SEARCH
 * @return {boolean} true 成功 ,false 失败
 */
NodeInfo.prototype.imeInputKeyCode = function (content) {
    return imeInputKeyCodeNodeInfo(this, content);
};
 
/**
 * 清除节点文本数据
 *  @return {boolean} 布尔型| true代表成功
 */
NodeInfo.prototype.clearText = function () {
    return clearTextFieldNodeInfo(this);
};
 
/**
 * 该方法会刷新节点缓存
 */
NodeInfo.prototype.refresh = function () {
    refreshNodeInfo(this);
};
 
/**
 * 节点信息是否有效
 */
NodeInfo.prototype.isValid = function () {
    return isValidNodeInfo(this);
};
 
NodeInfo.prototype.toJSONString = function () {
    return JSON.stringify(this);
};
 
 
function AutoImage(uuid) {
    this.uuid = uuid + "";
    this.mat = false;
    if (uuid != null && uuid != undefined) {
        this.mat = uuid.indexOf("-mat") != -1;
    }
}
 
AutoImage.prototype.toString = function () {
    return JSON.stringify({"uuid": this.uuid, "mat": this.mat, "aiobj": true});
};
 
 
/**
 * 点击文本
 * @param text 文本
 * @return {boolean}
 */
function clickText(text) {
    if (isAccMode()) {
        return acEvent.click(S.get().text(text));
    } else if (isAgentMode()) {
        return agentEvent.click(S.get().text(text));
    }
    return false;
}
 
/**
 * 随机点击选择器的任意元素
 * @param selectors 选择器对象
 * @return {boolean}
 */
function clickRandom(selectors) {
    if (isAccMode()) {
        return acEvent.clickRandom(selectors);
    } else if (isAgentMode()) {
        return agentEvent.clickRandom(selectors);
    }
    return false;
}
 
/**
 * 随机点击选择器的任意元素(无指针模式)
 * @param selectors 选择器对象
 * @return {boolean}
 */
function clickRandomEx(selectors) {
    if (isAccMode()) {
        return acEvent.clickRandomEx(selectors);
    } else if (isAgentMode()) {
        return agentEvent.clickRandomEx(selectors);
    }
    return false;
}
 
 
/**
 * 随机点击区域中的坐标
 * @param rect 区域对象
 * @return {boolean}
 */
function clickRandomRect(rect) {
    if (isAccMode()) {
        return acEvent.clickRandomRect(rect);
    } else if (isAgentMode()) {
        return agentEvent.clickRandomRect(rect);
    }
 
    return false;
}
 
/**
 * 随机长点击区域中的坐标
 * @param rect 区域对象
 * @return {boolean}
 */
function longClickRandomRect(rect) {
    if (isAccMode()) {
        return acEvent.longClickRandomRect(rect);
    } else if (isAgentMode()) {
        return agentEvent.longClickRandomRect(rect);
    }
    return false;
}
 
 
/**
 * 点击选择器
 * @param selectors 选择器对象
 * @return {boolean}
 */
function click(selectors) {
    if (isAccMode()) {
        return acEvent.click(selectors);
    } else if (isAgentMode()) {
        return agentEvent.click(selectors);
    }
    return false;
}
 
 
/**
 * 无指针模式点击选择器
 * @param selectors 选择器对象
 * @return {boolean}
 */
function clickEx(selectors) {
    if (isAccMode()) {
        return acEvent.clickEx(selectors);
    } else if (isAgentMode()) {
        return agentEvent.clickEx(selectors);
    }
    return false;
}
 
/**
 * 设置节点聚焦
 * @param selectors 选择器对象
 * @return {boolean}
 */
function setFocus(selectors) {
    if (isAccMode()) {
        return acEvent.setFocus(selectors);
    } else if (isAgentMode()) {
        return agentEvent.setFocus(selectors);
    }
    return false;
}
 
/**
 * 无指针模式长按选择器
 * @param selectors 选择器对象
 * @return {boolean}
 */
function longClickEx(selectors) {
    if (isAccMode()) {
        return acEvent.longClickEx(selectors);
    } else if (isAgentMode()) {
        return agentEvent.longClickEx(selectors);
    }
    return false;
}
 
/**
 * 点击某个区域中心坐标点
 * @param rect 区域
 * @return {boolean} 布尔型 true 成功,false 失败
 */
function clickCenter(rect) {
    if (isAccMode()) {
        return acEvent.clickCenter(rect);
    } else if (isAgentMode()) {
        return agentEvent.clickCenter(rect);
    }
    return false;
}
 
 
/**
 * 点击坐标
 * @param x x坐标
 * @param y y坐标
 * @return {boolean}
 */
function clickPoint(x, y) {
    if (isAccMode()) {
        return acEvent.clickPoint(x, y);
    } else if (isAgentMode()) {
        return agentEvent.clickPoint(x, y);
    }
    return false;
}
 
/**
 * 双击坐标
 * @param x x坐标
 * @param y y坐标
 * @return {boolean}
 */
function doubleClickPoint(x, y) {
    if (isAccMode()) {
        return acEvent.doubleClickPoint(x, y);
    } else if (isAgentMode()) {
        return agentEvent.doubleClickPoint(x, y);
    }
    return false;
}
 
/**
 * 长点击选择器
 * @param selectors 选择器对象
 * @return {boolean}
 */
function longClick(selectors) {
    if (isAccMode()) {
        return acEvent.longClick(selectors);
    } else if (isAgentMode()) {
        return agentEvent.longClick(selectors);
    }
    return false;
}
 
/**
 * 长点击坐标
 * @param x x坐标
 * @param y y坐标
 * @return {boolean}
 */
function longClickPoint(x, y) {
    if (isAccMode()) {
        return acEvent.longClickPoint(x, y);
    } else if (isAgentMode()) {
        return agentEvent.longClickPoint(x, y);
    }
    return false;
 
}
 
/**
 * 获取选择器得到的文本数据
 * @param selectors 选择器
 * @return {null|string} 字符串集合
 */
function getText(selectors) {
    if (isAccMode()) {
        return acEvent.getText(selectors);
    } else if (isAgentMode()) {
        return agentEvent.getText(selectors);
    }
    return null;
}
 
/**
 * 获取节点属性信息
 * @param selectors 选择器
 * @param attr 属性值,例如 text,className,更多的属性请参考NodeInfo对象属性
 * @return {null|any[]} null|字符串数组|Rect对象数组
 */
function getNodeAttrs(selectors, attr) {
    if (selectors == null || attr == null) {
        return null;
    }
    var nodes = getNodeInfo(selectors, 0);
    if (nodes == null || nodes.length <= 0) {
        return null;
    }
    var x = [];
    for (var i = 0; i < nodes.length; i++) {
        var n = nodes[i];
        try {
            x.push(n[attr]);
        } catch (e) {
        }
    }
    return x;
}
 
 
/**
 * 锁定当前节点,锁定后,后面就算界面刷新,但是节点还是老的信息,需要和releaseNode进行配合才能进行解锁
 */
function lockNode() {
    if (isAccMode()) {
        acEvent.lockNode();
    } else if (isAgentMode()) {
        agentEvent.lockNode();
    }
}
 
/**
 * 释放节点的锁,释放后,当界面刷新的时候,节点信息会变成最新的
 */
function releaseNode() {
    if (isAccMode()) {
        acEvent.releaseNode();
    } else if (isAgentMode()) {
        agentEvent.releaseNode();
    }
}
 
/**
 * 设置各种手势模式事件的操作类型,默认是异步,目前只对无障碍模式有效
 * @param mode 1 代表异步,2代表同步
 * @return {boolean} true代表成功 false代表失败
 */
function setGestureActionMode(mode) {
    if (isAccMode()) {
        return acEvent.setAccActionMode(mode);
    }
    return false;
 
}
 
/**
 * 获取节点信息
 * @param selectors 选择器
 * @param timeout 超时时间,单位是毫秒
 * @return {null|NodeInfo[]} NodeInfo 数组 节点信息集合
 */
function getNodeInfo(selectors, timeout) {
    if (isAccMode()) {
        return acEvent.getNodeInfo(selectors, timeout);
    } else if (isAgentMode()) {
        return agentEvent.getNodeInfo(selectors, timeout);
    }
    return null;
}
 
/**
 * 通过Selector 判断元素是否存在
 * @param selectors 选择器
 * @return {boolean}
 */
function has(selectors) {
    if (isAccMode()) {
        return acEvent.has(selectors);
    } else if (isAgentMode()) {
        return agentEvent.has(selectors);
    }
    return false;
}
 
/**
 * 通过Selector 判断并等待元素是否存
 * @param selectors 选择器
 * @param timeout 超时时间,单位毫秒
 * @return {boolean}
 */
function waitExistNode(selectors, timeout) {
    if (timeout <= 0) {
        if (isAccMode()) {
            return acEvent.has(selectors);
        } else if (isAgentMode()) {
            return agentEvent.has(selectors);
        }
    } else {
        var x = thread.execSync(function () {
            if (isAccMode()) {
                return acEvent.has(selectors);
            } else if (isAgentMode()) {
                return agentEvent.has(selectors);
            }
        }, timeout);
        if (x == null) {
            return false;
        }
        return x;
    }
}
 
/**
 *  等待activity界面出现
 * @param activity 界面名称
 * @param timeout 超时时间,单位毫秒
 * @return {boolean}
 */
function waitExistActivity(activity, timeout) {
    if (activity == null) {
        return false;
    }
    if (timeout <= 0) {
        var s = getRunningActivity();
        return s == activity;
    } else {
        return thread.execSync(function () {
            var s = getRunningActivity();
            return s == activity;
        }, timeout);
    }
}
 
/**
 * 将元素节点变成XML
 * @return {null|string} string|null
 */
function dumpXml() {
    if (isAccMode()) {
        return acEvent.dumpXml();
    } else if (isAgentMode()) {
        return agentEvent.dumpXml();
    }
    return null;
}
 
 
/**
 *  将通知发射处理,相当于点击了通知栏
 * @param seqId
 * @return {boolean}
 */
function shotNotification(seqId) {
    if (isAccMode()) {
        return acEvent.shotNotification(seqId);
    } else if (isAgentMode()) {
        return agentEvent.shotNotification(seqId);
    }
    return false;
}
 
/**
 * 将通知进行取消操作
 * @param seqId
 * @return {boolean}
 */
function cancelNotification(seqId) {
    if (isAccMode()) {
        return acEvent.cancelNotification(seqId);
    } else if (isAgentMode()) {
        return agentEvent.cancelNotification(seqId);
    }
    return false;
}
 
/**
 *
 * @param seqId
 * @return {boolean}
 */
function ignoreNotification(seqId) {
    if (isAccMode()) {
        return acEvent.ignoreNotification(seqId);
    } else if (isAgentMode()) {
        return agentEvent.ignoreNotification(seqId);
    }
    return false;
}
 
/**
 * 获取toast数据
 *  @param pkg 指定包名
 * @param size 指定获取的条数
 * @return {null|ToastInfo[]} null|ToastInfo数组
 */
function getLastToast(pkg, size) {
    if (isAccMode()) {
        return acEvent.getLastToast(pkg, size);
    } else if (isAgentMode()) {
        return agentEvent.getLastToast(pkg, size);
    }
    return null;
}
 
/**
 * 获取最近通知栏对象
 * @param pkg 指定包名
 * @param size 指定获取的条数
 * @return {null|NotificationInfo[]} 数组|null
 */
function getLastNotification(pkg, size) {
    if (isAccMode()) {
        return acEvent.getLastNotification(pkg, size);
    } else if (isAgentMode()) {
        return agentEvent.getLastNotification(pkg, size);
    }
    return null;
}
 
/**
 * 请求监听状态栏的权限
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * @param timeout 请求权限超时时间 单位是秒
 * @return {boolean} true 代表请求权限成功,false代表失败
 */
function requestNotificationPermission(timeout) {
    if (isAccMode()) {
        return acEvent.requestNotificationPermission(timeout);
    } else if (isAgentMode()) {
        return agentEvent.requestNotificationPermission(timeout);
    }
    return null;
}
 
/**
 * 检查是否含有状态栏监听权限
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 5.0 以上
 * @return  {boolean} true 有权限,false 代表无权限
 */
function hasNotificationPermission() {
    if (isAccMode()) {
        return acEvent.hasNotificationPermission();
    } else if (isAgentMode()) {
        return agentEvent.hasNotificationPermission();
    }
    return null;
}
 
 
/**
 * 取得当前运行的Activity类名
 * @return {null|string}
 */
function getRunningActivity() {
    if (isAccMode()) {
        return acEvent.getRunningActivity();
    } else if (isAgentMode()) {
        return agentEvent.getRunningActivity();
    }
    return null;
}
 
/**
 * 这个获取的不准,请使用  getCurrentRunningPkg 函数
 * 取得当前运行的App包名
 * @return {null|string}
 */
function getRunningPkg() {
    if (isAccMode()) {
        return acEvent.getRunningPkg();
    } else if (isAgentMode()) {
        return agentEvent.getRunningPkg();
    }
    return null;
}
 
/**
 *
 * 取得当前运行的App包名
 * 这个是通过节点获取的,前提是需要打开自动化服务
 * 适配EC 10.6.0+
 * @return {null|string}
 */
function getCurrentRunningPkg() {
    if (isAccMode()) {
        return acEvent.getCurrentRunningPkg();
    } else if (isAgentMode()) {
        return agentEvent.getCurrentRunningPkg();
    }
    return null;
}
 
 
/**
 *
 *  @return {boolean} 布尔型| true代表成功
 */
function home() {
    if (isAccMode()) {
        return acEvent.home();
    } else if (isAgentMode()) {
        return agentEvent.home();
    }
    return false;
}
 
 
/**
 * 返回桌面2
 * 适配EC 安卓 9.16.0+
 * @return {boolean} true 代表成功
 */
function home2() {
    importClass(android.content.Intent);
    var intent = new Intent();
    intent.setAction(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    try {
        context.startActivity(intent);
    } catch (e) {
        loge(e)
        return false;
    }
    return true;
}
 
/**
 * 分割屏幕
 * @return {boolean} 布尔型| true代表成功
 */
function splitScreen() {
    if (isAccMode()) {
        return acEvent.splitScreen();
    } else if (isAgentMode()) {
        return agentEvent.splitScreen();
    }
    return false;
}
 
 
/**
 * 模拟电源键
 * @return {boolean} true 成功 false 失败
 */
function power() {
    if (isAccMode()) {
        return acEvent.power();
    } else if (isAgentMode()) {
        return agentEvent.power();
    }
    return false;
}
 
 
/**
 * 打开快速设置
 * @return {boolean} true 成功, else 失败
 */
function openQuickSettings() {
    if (isAccMode()) {
        return acEvent.openQuickSettings();
    } else if (isAgentMode()) {
        return agentEvent.openQuickSettings();
    }
    return false;
}
 
/**
 * 打开通知栏
 *
 * @return {boolean} true 成功, else 失败
 */
function openNotification() {
    if (isAccMode()) {
        return acEvent.openNotification();
    } else if (isAgentMode()) {
        return agentEvent.openNotification();
    }
    return false;
}
 
/**
 * 返回按键
 * @return {boolean}
 */
function back() {
    if (isAccMode()) {
        return acEvent.back();
    } else if (isAgentMode()) {
        return agentEvent.back();
    }
    return false;
}
 
/**
 * 最近APP任务按键
 * @return {boolean}
 */
function recentApps() {
    if (isAccMode()) {
        return acEvent.recentApps();
    } else if (isAgentMode()) {
        return agentEvent.recentApps();
    }
 
    return false;
}
 
/**
 * 当前是否是我们的输入法
 * @return {boolean}
 */
function currentIsOurIme() {
    if (isAccMode()) {
        return acEvent.currentIsOurIme();
    } else if (isAgentMode()) {
        return agentEvent.currentIsOurIme();
    }
 
    return false;
}
 
/**
 * 通过Selector输入数据
 * @param selectors  选择器
 * @param content 数据字符串
 * @return {boolean}
 */
function inputText(selectors, content) {
    if (isAccMode()) {
        return acEvent.inputText(selectors, content);
    } else if (isAgentMode()) {
        return agentEvent.inputText(selectors, content);
    }
 
    return false;
}
 
/**
 * 通过选择器粘贴数据
 * @param selectors  选择器
 * @param content 数据字符串
 * @return {boolean}
 */
function pasteText(selectors, content) {
    if (isAccMode()) {
        return acEvent.pasteText(selectors, content);
    } else if (isAgentMode()) {
        return agentEvent.pasteText(selectors, content);
    }
    return false;
}
 
 
/**
 * 使用输入法输入内容,前提是已经设置本程序的输入法为默认输入法
 * 适合没有节点的情况,例如游戏等
 * @param selectors 选择器,可以为空,如果为空,前提是输入框是聚焦的状态
 * @param content 具体请看 KeyEvent.KEYCODE_*的值,例如66 = enter 67=del,84=SEARCH
 * 特殊代码: 1000: 模拟搜索按键,1001: 模拟完成按键 1002:模拟go按键,1003:模拟下一个按键,1004:模拟上一个按键 1005:模拟发送按键
 * @return {boolean}
 */
function imeInputText(selectors, content) {
    if (selectors == null || selectors == undefined || selectors == "") {
        return acEvent.imeInputText(selectors, content);
    }
    if (isAccMode()) {
        return acEvent.imeInputText(selectors, content);
    } else if (isAgentMode()) {
        return agentEvent.imeInputText(selectors, content);
    }
    return false;
}
 
/**
 * 使用输入法输入内容时,输入法键盘视图是否展示出来
 * 前提:在EC 系统设置中,勾选了 显示输入法键盘
 * 适配EC 9.18.0+
 * @return {boolean}true代表视图展示 false代表未展示
 */
function imeInputViewShown() {
    return acEventWrapper.imeInputViewShown();
};
 
/**
 * 使用输入法输入内容,前提是已经设置本程序的输入法为默认输入法
 * @param selectors  选择器
 * @param content 整型,具体请看 KeyEvent.KEYCODE_*的值,例如66 = enter 67=del,84=SEARCH
 * @return {boolean}
 */
function imeInputKeyCode(selectors, content) {
    if (selectors == null || selectors == undefined || selectors == "") {
        return acEvent.imeInputKeyCode(selectors, content);
    }
    if (isAccMode()) {
        return acEvent.imeInputKeyCode(selectors, content);
    } else if (isAgentMode()) {
        return agentEvent.imeInputKeyCode(selectors, content);
    }
    return false;
}
 
 
/**
 * 清除文本数据
 * @param selectors 节点选择器
 *  @return {boolean} 布尔型| true代表成功
 */
function clearTextField(selectors) {
    if (isAccMode()) {
        return acEvent.clearTextField(selectors);
    } else if (isAgentMode()) {
        return agentEvent.clearTextField(selectors);
    }
 
}
 
 
/**
 * 通过选择器滑动节点
 * @param selectors 节点选择器
 * @param endX      结束的X坐标
 * @param endY      结束的Y坐标
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 代表成功 false 代表失败
 */
function swipe(selectors, endX, endY, duration) {
    if (isAccMode()) {
        return acEvent.swipe(selectors, endX, endY, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipe(selectors, endX, endY, duration);
    }
    return false;
}
 
/**
 * 从一个坐标滑动到另一个坐标
 * @param startX 起始坐标的X轴值
 * @param startY 起始坐标的Y轴值
 * @param endX   结束坐标的X轴值
 * @param endY   结束坐标的Y轴值
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 滑动成功, false 滑动失败
 */
function swipeToPoint(startX, startY, endX, endY, duration) {
    if (isAccMode()) {
        return acEvent.swipeToPoint(startX, startY, endX, endY, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeToPoint(startX, startY, endX, endY, duration);
    }
    return false;
}
 
 
/**
 * 通过选择器从下向上滑动
 * @param selectors 节点选择器
 * @param distance  滑动距离 单位是像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 滑动成功,false 滑动失败
 */
function swipeFromDownToUp(selectors, distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromDownToUp(selectors, distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromDownToUp(selectors, distance, duration);
    }
    return false;
}
 
/**
 * 通过选择器从上向下滑动
 * @param selectors 节点选择器
 * @param distance  滑动距离 单位是像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 滑动成功,false 滑动失败
 */
function swipeFromUpToDown(selectors, distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromUpToDown(selectors, distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromUpToDown(selectors, distance, duration);
    }
    return false;
}
 
 
/**
 * 通过选择器从右向左滑动
 * @param selectors 节点选择器
 * @param distance  滑动距离 单位是像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 滑动成功,false 滑动失败
 */
function swipeFromRightToLeft(selectors, distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromRightToLeft(selectors, distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromRightToLeft(selectors, distance, duration);
    }
    return false;
}
 
/**
 * 通过选择器从左向右滑动
 * @param selectors 节点选择器
 * @param distance  滑动距离 单位是像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 滑动成功,false 滑动失败
 */
function swipeFromLeftToRight(selectors, distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromLeftToRight(selectors, distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromLeftToRight(selectors, distance, duration);
    }
    return false;
}
 
/**
 * 向上滑动
 * @param distance 滑动距离 单位像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 成功,false 失败
 */
function swipeFromDownToUpInScreen(distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromDownToUpInScreen(distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromDownToUpInScreen(distance, duration);
    }
    return false;
}
 
/**
 * 向下滑动
 * @param distance 滑动距离 单位像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 代表成功 false 代表失败
 */
function swipeFromUpToDownInScreen(distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromUpToDownInScreen(distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromUpToDownInScreen(distance, duration);
    }
    return false;
}
 
/**
 * 向左滑动
 * @param distance 滑动距离 单位像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 代表成功 false 代表失败
 */
function swipeFromRightToLeftInScreen(distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromRightToLeftInScreen(distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromRightToLeftInScreen(distance, duration);
    }
    return false;
}
 
/**
 * 向右滑动
 * @param distance 滑动距离 单位像素
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 代表成功 false 代表失败
 */
function swipeFromLeftToRightInScreen(distance, duration) {
    if (isAccMode()) {
        return acEvent.swipeFromLeftToRightInScreen(distance, duration);
    } else if (isAgentMode()) {
        return agentEvent.swipeFromLeftToRightInScreen(distance, duration);
    }
    return false;
}
 
/**
 * 是否滚动到底部了,如果查不到元素也会返回false
 * @param distance 滚动方向 UP,DOWN,LEFT,RIGHT
 * @param selectors 选择器
 * @return {boolean} false 代表未滚动到位,true 代表滚动完成了
 */
function isScrollEnd(distance, selectors) {
    if (isAccMode()) {
        return acEvent.isScrollEnd(distance, selectors);
    } else if (isAgentMode()) {
        return agentEvent.isScrollEnd(distance, selectors);
    }
    return false;
}
 
/**
 * <p>执行从一个坐标到另一个坐标的拖动</p>
 * </p>
 * @param startX 起始坐标的X轴值
 * @param startY 起始坐标的Y轴值
 * @param endX   结束坐标的X轴值
 * @param endY   结束坐标的Y轴值
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 拖动成功, false 拖动失败
 */
function drag(startX, startY, endX, endY, duration) {
    if (isAccMode()) {
        return acEvent.drag(startX, startY, endX, endY, duration);
    } else if (isAgentMode()) {
        return agentEvent.drag(startX, startY, endX, endY, duration);
    }
    return false;
}
 
/**
 * 通过选择器拖动某个元素到目标元素
 * @param selectors 选择器 {@link S}
 * @param destObj   目标元素选择器
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 成功 false 失败
 */
function dragTo(selectors, destObj, duration) {
    if (isAccMode()) {
        return acEvent.dragTo(selectors, destObj, duration);
    } else if (isAgentMode()) {
        return agentEvent.dragTo(selectors, destObj, duration);
    }
    return false;
}
 
/**
 * 通过选择器拖动某个元素到目标X Y 坐标
 * @param selectors 原始元素选择器
 * @param endX      目标 X 坐标
 * @param endY      目标 Y 坐标
 * @param duration 持续时长 单位毫秒
 * @return {boolean} true 成功 false 失败
 */
function dragToPoint(selectors, endX, endY, duration) {
    if (isAccMode()) {
        return acEvent.dragToPoint(selectors, endX, endY, duration);
    } else if (isAgentMode()) {
        return agentEvent.dragToPoint(selectors, endX, endY, duration);
    }
    return false;
}
 
/**
 * 请求展示浮窗的权限
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @param timeout 请求权限超时时间 单位是秒
 * @return {boolean} true 代表请求权限成功,false代表失败
 */
function requestFloatViewPermission(timeout) {
    return utils.requestFloatViewPermission(timeout);
}
 
/**
 * 展示浮窗
 * @param params js的map对象,包含的
 * var map = {"path":"main.html","tag":"test"};  类似这样的参数
 * <br/>
 * 参数解析:
 * tag:字符串 悬浮窗唯一定位的标示
 * path:字符串 IEC 中的布局文件
 * title:字符串 悬浮窗标题
 * titleBg:字符串 悬浮窗背景,16进制,例如#888888,或者#88000000
 * x:整型 悬浮窗起始X坐标
 * y:整型 悬浮窗起始Y坐标
 * w:整型 悬浮窗起始宽度
 * h:整型 悬浮窗起始高度
 * @return {boolean} true 代表请求权限成功,false代表失败
 */
function showFloatView(params) {
    return utils.showFloatView(params);
}
 
 
/**
 * 折叠日志悬浮窗,只保留标题
 * 适配EC 9.32.0+
 * @return {boolean} true 成功,false代表失败
 */
function collapseLogView() {
    return utils.collapseLogView();
}
 
/**
 * 关闭浮窗
 * @param tag showFloatView 使用的tag参数,对悬浮窗唯一定位的
 * @return {boolean} true 成功,false代表失败
 */
function closeFloatView(tag) {
    return utils.closeFloatView(tag);
}
 
 
/**
 * 展开日志悬浮窗
 * 适配EC 9.32.0+
 * @return {boolean} true 成功,false代表失败
 */
function expandLogView() {
    return utils.expandLogView();
}
 
/**
 * 关闭所有悬浮窗,但不包含日志悬浮窗
 * @return {boolean} true 成功,false代表失败
 */
function closeAllFloatView() {
    return utils.closeAllFloatView();
}
 
/**
 * 设置日志窗口大小
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @param w 宽度
 * @param h 高度
 * @param textSize 日志的字体大小
 * @param backgroundColor 背景颜色,例如#336699
 */
function setLogViewSize(w, h, textSize, backgroundColor) {
    utils.setLogViewSize(w, h, textSize, backgroundColor);
}
 
 
/**
 * 设置日志窗口大小扩展函数
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @param map 例如
 *  {
 *      "x":100,
 *      "y":100,
 *      "w":100,
 *      "h":200,
 *      "textSize":12,
 *      "backgroundColor":"#ffffff",
 *      "title":"我是日志",
 *      "showTitle":true
 *  }
 *  解释:
 *      x: 起始X位置
 *      y: 起始Y位置
 *      w:宽度
 *      h:高度
 *      textSize:日志的字体大小
 *      backgroundColor:背景颜色,例如#336699
 *      title:日志框标题
 *      showTitle:是否显示标题
 *      backgroundImg 背景图片,放到工程的res文件夹,录入填写res/a.png
 * @return {boolean} true代表成功,false代表失败
 */
function setLogViewSizeEx(map) {
    return utils.setLogViewSizeEx(JSON.stringify(map));
}
 
/**
 * 设置日志固定栏目属性
 * 适合EC 6.17.0+
 * @param map 例如
 *  {
 *      "show":true,
 *      "h":200,
 *      "textSize":12,
 *      "backgroundColor":"#ffffff"
 *  }
 *  解释:
 *      show:是否展示
 *      h:高度
 *      textSize:日志的字体大小
 *      backgroundColor:背景颜色,例如#336699
 * @return {boolean} true代表成功,false代表失败
 */
function setLogFixedViewEx(map) {
    return utils.setLogFixedViewEx(JSON.stringify(map));
}
 
/**
 * 设置日志固定栏目属性
 * @param msg string
 * @return {boolean}
 */
function setFixedViewText(msg) {
    return utils.setFixedViewText(msg);
}
 
 
/**
 * 设置启停控制悬浮窗窗口位置扩展函数
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @param map 例如
 *  {
 *      "x":100,
 *      "y":100,
 *      "backgroundColor":"#99000000",
 *  }
 *  解释:
 *      x: 起始X位置
 *      y: 起始Y位置
 *      backgroundColor:背景颜色,例如#336699
 * @return {boolean} true代表成功,false代表失败
 */
function setCtrlViewSizeEx(map) {
    return utils.setCtrlViewSizeEx(JSON.stringify(map));
}
 
 
/**
 * 检查是否含有浮窗权限
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @return {boolean} true 有权限,false 代表无权限
 */
function hasFloatViewPermission() {
    return utils.hasFloatViewPermission();
}
 
/**
 * 展示日志浮窗
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @return {boolean}
 */
function showLogWindow() {
    return utils.showLogWindow();
}
 
/**
 * 显示脚本暂停控制悬浮窗
 * 适配EC 10.0.0+
 */
function showScriptCtrlFloatView() {
    utilsWrapper.showScriptCtrlFloatView();
}
 
/**
 * 关闭脚本暂停控制悬浮窗
 * 适配EC 10.0.0+
 */
function closeScriptCtrlFloatView() {
    utilsWrapper.closeScriptCtrlFloatView();
}
 
/**
 * 展示启停浮窗
 * 兼容版本: Android 4.4 以上
 */
function showCtrlWindow() {
    return utils.showCtrlWindow();
}
 
/**
 * 关闭启停浮窗
 * 兼容版本: Android 4.4 以上
 * @return {boolean}
 */
function closeCtrlWindow() {
    return utils.hideCtrlWindow();
}
 
 
/**
 * 关闭日志浮窗
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 * @return {boolean}
 */
function closeLogWindow() {
    return utils.hideLogWindow();
}
 
/**
 * 展示消息到悬浮窗日志中,颜色是白色的
 * @param msg 消息
 * @param color 颜色值例如  #ffffff
 * @param size 字体大小
 * @return {boolean}
 */
function setLogText(msg, color, size) {
    return utils.setLogText(msg, color, size);
}
 
///// 2020312新增节点相关的快捷操作
 
/**
 * 通过选择器 获取第一个节点信息
 * @param selectors 选择器
 * @param timeout
 * @return {null|NodeInfo} 对象或者null
 */
function getOneNodeInfo(selectors, timeout) {
    if (isAccMode()) {
        return acEvent.getOneNodeInfo(selectors, timeout);
    } else if (isAgentMode()) {
        return agentEvent.getOneNodeInfo(selectors, timeout);
    }
    return null;
}
 
/**
 * 取得父级
 * @param nodeinfo NodeInfo对象
 * @return {null|NodeInfo} NodeInfo 对象|null
 */
function getNodeInfoParent(nodeinfo) {
    if (nodeinfo == null || nodeinfo.nid == null) {
        return null;
    }
    if (isAccMode()) {
        return acEvent.getNodeInfoParent(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.getNodeInfoParent(nodeinfo.nid);
    }
    return null;
}
 
 
/**
 * 取得单个子节点
 * @param nodeinfo NodeInfo对象
 * @param index 子节点索引
 * @return {null|NodeInfo} NodeInfo 对象|null
 */
function getNodeInfoChild(nodeinfo, index) {
    if (nodeinfo == null || nodeinfo.nid == null) {
        return null;
    }
    if (isAccMode()) {
        return acEvent.getNodeInfoChild(nodeinfo.nid, index);
    } else if (isAgentMode()) {
        return agentEvent.getNodeInfoChild(nodeinfo.nid, index);
    }
    return null;
}
 
 
/**
 * 取得所有子节点
 * @param nodeinfo NodeInfo对象
 * @return {null|NodeInfo[]} NodeInfo 数组
 */
function getNodeInfoAllChildren(nodeinfo) {
    if (nodeinfo == null || nodeinfo.nid == null) {
        return null;
    }
    if (isAccMode()) {
        return acEvent.getNodeInfoAllChildren(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.getNodeInfoAllChildren(nodeinfo.nid);
    }
    return null;
}
 
 
/**
 * 当前节点的所有兄弟节点
 * @param nodeinfo NodeInfo对象
 * @return {null|NodeInfo[]} NodeInfo 数组
 */
function getSiblingNodeInfo(nodeinfo) {
    if (nodeinfo == null || nodeinfo.nid == null) {
        return null;
    }
    if (isAccMode()) {
        return acEvent.getSiblingNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.getSiblingNodeInfo(nodeinfo.nid);
    }
    return null;
}
 
/**
 * 在当前节点前面的兄弟节点
 * @param nodeinfo NodeInfo对象
 * @return {null|NodeInfo[]} 节点集合
 */
function getPreviousSiblingNodeInfo(nodeinfo) {
    if (nodeinfo == null || nodeinfo.nid == null) {
        return null;
    }
    if (isAccMode()) {
        return acEvent.getPreviousSiblingNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.getPreviousSiblingNodeInfo(nodeinfo.nid);
    }
    return null;
}
 
/**
 * 在当前节点后面的兄弟节点
 * @param nodeinfo NodeInfo对象
 * @return {null|NodeInfo[]} NodeInfo 数组
 */
function getNextSiblingNodeInfo(nodeinfo) {
 
    if (nodeinfo == null || nodeinfo.nid == null) {
        return null;
    }
    if (isAccMode()) {
        return acEvent.getNextSiblingNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.getNextSiblingNodeInfo(nodeinfo.nid);
    }
    return null;
}
 
/**
 * 对某个节点输入数据
 * @param nodeinfo NodeInfo对象
 * @param content 数据字符串
 * @return {boolean}
 */
function inputTextNodeInfo(nodeinfo, content) {
    if (isAccMode()) {
        return acEvent.inputTextNodeInfo(nodeinfo.nid, content);
    } else if (isAgentMode()) {
        return agentEvent.inputTextNodeInfo(nodeinfo.nid, content);
    }
 
    return false;
}
 
/**
 * 对某个节点粘贴数据
 * @param nodeinfo NodeInfo对象
 * @param content 数据字符串
 * @return {boolean}
 */
function pasteTextNodeInfo(nodeinfo, content) {
    if (isAccMode()) {
        return acEvent.pasteTextNodeInfo(nodeinfo.nid, content);
    } else if (isAgentMode()) {
        return agentEvent.pasteTextNodeInfo(nodeinfo.nid, content);
    }
    return false;
}
 
/**
 * 使用输入法对某个节点输入数据,前提是已经设置本程序的输入法为默认输入法
 * @param nodeinfo NodeInfo对象
 * @param content 数据字符串
 * @return {boolean}
 */
function imeInputTextNodeInfo(nodeinfo, content) {
    if (isAccMode()) {
        return acEvent.imeInputTextNodeInfo(nodeinfo.nid, content);
    } else if (isAgentMode()) {
        return agentEvent.imeInputTextNodeInfo(nodeinfo.nid, nodeinfo.bounds, content);
    }
    return false;
}
 
/**
 * 使用输入法对某个节点输入数据,前提是已经设置本程序的输入法为默认输入法
 * @param nodeinfo NodeInfo对象
 * @param content 具体请看 KeyEvent.KEYCODE_*的值,例如66 = enter 67=del,84=SEARCH
 * @return {boolean}
 */
function imeInputKeyCodeNodeInfo(nodeinfo, content) {
    if (isAccMode()) {
        return acEvent.imeInputKeyCodeNodeInfo(nodeinfo.nid, content);
    } else if (isAgentMode()) {
        return agentEvent.imeInputKeyCodeNodeInfo(nodeinfo.nid, nodeinfo.bounds, content);
    }
    return false;
}
 
 
/**
 * 清除节点文本数据
 *  @param nodeinfo NodeInfo对象
 *  @return {boolean} 布尔型| true代表成功
 */
function clearTextFieldNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.clearTextFieldNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.clearTextFieldNodeInfo(nodeinfo.nid);
    }
}
 
/**
 *  刷新节点缓存
 *  @param nodeinfo NodeInfo对象
 */
function refreshNodeInfo(nodeinfo) {
    if (isAccMode()) {
        acEvent.refreshNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        agentEvent.refreshNodeInfo(nodeinfo.nid);
    }
}
 
/**
 *  节点信息是否有效
 *  @param nodeinfo NodeInfo对象
 *  @return {boolean} true代表有
 */
function isValidNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.isValidNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.isValidNodeInfo(nodeinfo.nid);
    }
    return false;
}
 
 
/**
 * 设置获取节点的模式
 * @param mode 1 是增强型, 2 是快速型,默认是增强型
 * @param fetchInvisibleNode 是否抓取隐藏的元素,默认不抓取
 * @param fetchNotImportantNode 是否抓取不重要的元素
 * @param algorithm 节点查找算法,默认是nsf,分别有 nsf = 节点静态算法,bsf= 广度优先, dsf=深度度优先
 * @return {boolean}
 */
function setFetchNodeMode(mode, fetchInvisibleNode, fetchNotImportantNode, algorithm) {
    if (isAccMode()) {
        return acEvent.setFetchNodeMode(mode, fetchInvisibleNode, fetchNotImportantNode, algorithm);
    } else if (isAgentMode()) {
        return agentEvent.setFetchNodeMode(mode, fetchInvisibleNode, fetchNotImportantNode, algorithm);
    }
    return false;
}
 
 
/**
 * 设置nsf抓节点参数
 * 适配EC 10.9.0+
 * 不同的深度、抓节点方式,可以增加速度以及节点过多防止内存溢出问题
 * @param data map格式 {"dumpMethod":1,"maxDepth":50}
 *      dumpMethod: NSF算法下的抓节点方式分别是1、2、3,默认是1
 *      maxDepth: 抓节点深度
 * @return {boolean}
 */
function setNodeDumpParam(data) {
    if (isAccMode()) {
        return acEvent.setNodeDumpParam(data);
    } else if (isAgentMode()) {
        return agentEvent.setNodeDumpParam(data);
    }
    return false;
}
 
 
/**
 * 设置要屏蔽的节点属性
 * 设置后,系统不会抓取这些节点数据属性
 * 适配 EC 9.23.0+
 * @param blockNode 字符串,以英文逗号分割,例如 clz,index,bounds,获取属性值,参考idea节点面板的右侧属性
 * blockNode 设置为 "" , 代表恢复默认
 * @return {boolean}
 */
function setBlockNodeAttr(blockNodeAttr) {
    if (isAccMode()) {
        return acEvent.setBlockNode(blockNodeAttr);
    } else if (isAgentMode()) {
        return agentEvent.setBlockNode(blockNodeAttr);
    }
    return false;
}
 
/**
 * 加上节点获取的某个标志位
 * @param flag 参见 AccessibilityServiceInfo.FLAG_*,如果是0是强制刷新
 * @return {boolean}
 */
function addNodeFlag(flag) {
    if (isAccMode()) {
        return acEvent.addNodeFlag(flag);
    } else if (isAgentMode()) {
        return agentEvent.addNodeFlag(flag);
    }
    return false;
}
 
/**
 * 移除节点获取的某个标志位
 * @param flag 参见 AccessibilityServiceInfo.FLAG_*,如果是0是强制刷新
 */
function removeNodeFlag(flag) {
    if (isAccMode()) {
        acEvent.removeNodeFlag(flag);
    } else if (isAgentMode()) {
        agentEvent.removeNodeFlag(flag);
    }
}
 
 
/**
 * 转换成node inf的数组
 * @param d
 * @return {null|NodeInfo[]} NodeInfo 数组 | null
 */
function nodeInfoArray(d) {
    if (d == null || d == "") {
        return null;
    }
    try {
        d = JSON.parse(d);
        var x = [];
        for (var i = 0; i < d.length; i++) {
            x.push(new NodeInfo(d[i]));
        }
        return x;
    } catch (e) {
 
    }
    return null;
}
 
 
/**
 * 多点触摸集合
 * @constructor
 */
function MultiPoint() {
    this.mps = [];
    this.m = {};
    this.create();
}
 
MultiPoint.prototype.create = function () {
    this.m = {};
    this.mps.push(this.m);
};
/**
 * 多点触摸对象
 * @return {MultiPoint} 选择器对象
 */
MultiPoint.get = function () {
    return new MultiPoint();
};
/**
 * 创建一个多点触摸下一个对象
 *
 * @return {MultiPoint} 选择器对象
 */
MultiPoint.prototype.next = function () {
    this.create();
    return this;
};
/**
 * 动作,可以参考android的MotionEvent.ACTION_*
 * @param value 一般情况下 按下为0,弹起为1,移动为2
 * @return {MultiPoint}
 */
MultiPoint.prototype.action = function (value) {
    if (this.m != null) {
        this.m["action"] = value;
    }
    return this;
};
 
/**
 * 按下动作
 * @return {MultiPoint}
 */
MultiPoint.prototype.downAction = function () {
    this.action(0);
    return this;
};
 
/**
 * 弹起动作
 * @return {MultiPoint}
 */
MultiPoint.prototype.upAction = function () {
    this.action(1);
    return this;
};
 
/**
 * 移动动作
 * @return {MultiPoint}
 */
MultiPoint.prototype.moveAction = function () {
    this.action(2);
    return this;
};
 
 
/**
 * 设置X坐标
 * @param value X坐标
 * @return {MultiPoint}
 */
MultiPoint.prototype.x = function (value) {
    if (this.m != null) {
        this.m["x"] = value;
    }
    return this;
};
/**
 * 设置X坐标
 * @param value X坐标
 * @return {MultiPoint}
 */
MultiPoint.prototype.y = function (value) {
    if (this.m != null) {
        this.m["y"] = value;
    }
    return this;
};
/**
 * 设置第几个手指触摸点,分别是 1,2,3等,代表第n个手机
 * @param value 整型
 * @return MultiPoint
 */
MultiPoint.prototype.pointer = function (value) {
    if (this.m != null) {
        this.m["pointer"] = value;
    }
    return this;
};
/**
 * 该动作延迟多少毫秒执行
 * @param value 延迟时间,单位是毫秒
 * @return {MultiPoint}
 */
MultiPoint.prototype.delay = function (value) {
    if (this.m != null) {
        this.m["delay"] = value;
    }
    return this;
};
/**
 * meta / modifier 键的状态,一般设置为0
 * @param value
 * @return {MultiPoint}
 */
MultiPoint.prototype.metaState = function (value) {
    if (this.m != null) {
        this.m["metaState"] = value;
    }
    return this;
};
 
MultiPoint.prototype.toJSON = function () {
    return this.mps;
};
 
/**
 * 按照属性 id 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function id(value) {
    return S.get().id(value);
}
 
/**
 * 按照属性 id 进行匹配, 支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function idMatch(value) {
    return S.get().idMatch(value);
}
 
/**
 * 按照属性 clz 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function clz(value) {
    return S.get().clz(value);
}
 
/**
 * 按照属性 clz 进行匹配, 支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function clzMatch(value) {
    return S.get().clzMatch(value);
}
 
/**
 * 按照属性 pkg 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function pkg(value) {
    return S.get().pkg(value);
}
 
/**
 * 按照属性 pkg 进行匹配, 支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function pkgMatch(value) {
    return S.get().pkgMatch(value);
}
 
/**
 * 按照属性 desc 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function desc(value) {
    return S.get().desc(value);
}
 
/**
 * 按照属性 desc 进行匹配, 支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function descMatch(value) {
    return S.get().descMatch(value);
}
 
/**
 * 按照属性 text 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function text(value) {
    return S.get().text(value);
}
 
/**
 * xpath选择器,xpath技术请看 :https://www.jianshu.com/p/c205334122b3 和 https://www.runoob.com/xpath/xpath-syntax.html
 * xpath使用请到idea的节点面板查看xpath属性以及测试xpath功能
 * 适配EC 10.12.0+
 * @param value 例如 //node[@text='易点云测'] 代表选取文本等于易点云测的节点
 * @return {S} 节点选择器
 */
function xpath(value) {
    return S.get().xpath(value);
}
 
/**
 *
 * @param value
 * @return {*S
 */
function row(value) {
    return S.get().row(value);
}
 
/**
 *
 * @param value
 * @return {S}
 */
function column(value) {
    return S.get().column(value);
}
 
/**
 *
 * @param value
 * @return {S}
 */
function rowSpan(value) {
    return S.get().rowSpan(value);
}
 
/**
 *
 * @param value
 * @return {S}
 */
function columnSpan(value) {
    return S.get().columnSpan(value);
}
 
/**
 *
 * @param value
 * @return {S}
 */
function rowCount(value) {
    return S.get().rowCount(value);
}
 
/**
 *
 * @param value
 * @return {S}
 */
function columnCount(value) {
    return S.get().columnCount(value);
}
 
/**
 * 按照属性 bounds 进行范围
 *
 * @param left 范围左边数值
 *  @param top 范围上边数值
 *  @param right 范围右边数值
 *  @param bottom 范围底边数值
 * @return {S} 节点选择器
 */
function bounds(left, top, right, bottom) {
    return S.get().bounds(left, top, right, bottom);
}
 
 
/**
 * 按照属性 text 进行匹配, 支持正则
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function textMatch(value) {
    return S.get().textMatch(value);
}
 
/**
 * 按照属性 visible 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function visible(value) {
    return S.get().visible(value);
}
 
/**
 * 按照属性 depth 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function depth(value) {
    return S.get().depth(value);
}
 
 
/**
 * 按照属性 checked 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function checked(value) {
    return S.get().checked(value);
}
 
/**
 * 按照属性 drawingOrder 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function drawingOrder(value) {
    return S.get().drawingOrder(value);
}
 
/**
 * 按照属性 checkable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function checkable(value) {
    return S.get().checkable(value);
}
 
/**
 * 按照属性 childCount 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function childCount(value) {
    return S.get().childCount(value);
}
 
/**
 * 按照属性 clickable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function clickable(value) {
    return S.get().clickable(value);
}
 
/**
 * 按照属性 dismissable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function dismissable(value) {
    return S.get().dismissable(value);
}
 
/**
 * 按照属性 editable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function editable(value) {
    return S.get().editable(value);
}
 
/**
 * 按照属性 enabled 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function enabled(value) {
    return S.get().enabled(value);
}
 
/**
 * 按照属性 focusable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function focusable(value) {
    return S.get().focusable(value);
}
 
/**
 * 按照属性 focused 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function focused(value) {
    return S.get().focused(value);
}
 
/**
 * 按照属性 index 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function index(value) {
    return S.get().index(value);
}
 
/**
 * 按照属性 longClickable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function longClickable(value) {
    return S.get().longClickable(value);
}
 
/**
 * 按照属性 multiLine 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function multiLine(value) {
    return S.get().multiLine(value);
}
 
/**
 * 按照属性 password 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function password(value) {
    return S.get().password(value);
}
 
/**
 * 按照属性 scrollable 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function scrollable(value) {
    return S.get().scrollable(value);
}
 
/**
 * 按照属性 selected 进行匹配
 *
 * @param value 字符串
 * @return {S} 节点选择器
 */
function selected(value) {
    return S.get().selected(value);
}
 
/**
 * 多点触摸<br/>
 * 触摸参数: action :一般情况下 按下为0,弹起为1,移动为2<br/>
 * x: X坐标<br/>
 * y: Y坐标<br/>
 * pointer:设置第几个手指触摸点,分别是 1,2,3等,代表第n个手指<br/>
 * delay: 该动作延迟多少毫秒执行
 * @param touch1 第1个手指的触摸点数组,例如:[{"action":0,"x":1,"y":1,"pointer":1,"delay":20},
 * {"action":2,"x":1,"y":1,"pointer":1,"delay":20}
 * ]
 * @param touch2 第2个手指的触摸点数组
 * @param touch3 第3个手指的触摸点数组
 * @param timeout 多点触摸执行的超时时间,单位是毫秒,在无障碍模式下,这个参数不生效
 * @return {boolean}
 */
function multiTouch(touch1, touch2, touch3, timeout) {
    if (isAccMode()) {
        return acEvent.multiTouch(touch1, touch2, touch3, timeout);
    } else if (isAgentMode()) {
        return agentEvent.multiTouch(touch1, touch2, touch3, timeout);
    }
}
 
/**
 * 取得某个范围的随机值
 * @param min 最小值
 * @param max 最大值
 * @return {number} 在min和max中间的值, 包含最大和最小值
 */
function random(min, max) {
    return utils.getRangeInt(min, max);
}
 
/**
 * 开启一个定时脚本任务
 * @param tag 任务的唯一标示,不能为空,脚本中可以使用readConfigString("jobTaskTag")获取当前tag值,判断是那个任务过来执行的
 * @param execTime 定时时间格式: 2020-04-17 19:20:00,或者直接是秒数字,例如 3,代表3秒后
 * @param cancelBeforeRunning
 * @return {number} jobid
 */
function startJob(tag, execTime, cancelBeforeRunning) {
    return utilsWrapper.startJob(tag, execTime, cancelBeforeRunning);
}
 
/**
 * 取消所有定时任务
 * @return {boolean} true 代表有任务被取消
 *
 */
function cancelAllJob() {
    return utilsWrapper.cancelAllJob();
}
 
/**
 * 通过tag对定时任务进行取消
 * @param tag tag名称
 * @return {boolean} true 代表有任务被取消
 */
function cancelJob(tag) {
    return utilsWrapper.cancelJob(tag);
}
 
/**
 * 取得所有的定时任务标签
 * @return {null|JSON} 字符串数组或者null
 */
function getAllJobTag() {
    var x = utilsWrapper.getAllJobTag();
    if (x != null && x != "") {
        return JSON.parse(x);
    }
    return null;
}
 
 
//=====滚动相关
/**
 * 向前滚动
 * @param selectors 选择器对象
 * @return {boolean} true 成功,false 失败
 */
function scrollForward(selectors) {
    if (isAccMode()) {
        return acEvent.scrollForward(selectors);
    } else if (isAgentMode()) {
        return agentEvent.scrollForward(selectors);
    }
    return false;
}
 
/**
 * 向后滚动
 * @param selectors 选择器对象
 * @return {boolean} true 成功,false 失败
 */
function scrollBackward(selectors) {
    if (isAccMode()) {
        return acEvent.scrollBackward(selectors);
    } else if (isAgentMode()) {
        return agentEvent.scrollBackward(selectors);
    }
    return false;
}
 
/**
 * 向左滚动
 * @param selectors 选择器对象
 * @return {boolean} true 成功,false 失败
 */
function scrollLeft(selectors) {
    if (isAccMode()) {
        return acEvent.scrollLeft(selectors);
    } else if (isAgentMode()) {
        return agentEvent.scrollLeft(selectors);
    }
    return false;
}
 
/**
 * 向右滚动
 * @param selectors 选择器对象
 * @return {boolean} true 成功,false 失败
 */
function scrollRight(selectors) {
    if (isAccMode()) {
        return acEvent.scrollRight(selectors);
    } else if (isAgentMode()) {
        return agentEvent.scrollRight(selectors);
    }
    return false;
}
 
 
/**
 * 向上滚动
 * @param selectors 选择器对象
 * @return {boolean} true 成功,false 失败
 */
function scrollUp(selectors) {
    if (isAccMode()) {
        return acEvent.scrollUp(selectors);
    } else if (isAgentMode()) {
        return agentEvent.scrollUp(selectors);
    }
    return false;
}
 
 
/**
 * 向下滚动
 * @param selectors 选择器对象
 * @return {boolean} true 成功,false 失败
 */
function scrollDown(selectors) {
    if (isAccMode()) {
        return acEvent.scrollDown(selectors);
    } else if (isAgentMode()) {
        return agentEvent.scrollDown(selectors);
    }
    return false;
}
 
 
/**
 *
 * @param nodeinfo
 * @return {boolean}
 */
function clickExNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.clickExNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.clickExNodeInfo(nodeinfo.nid);
    }
}
 
/**
 *
 * @param nodeinfo
 * @return {boolean}
 */
function setFocusNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.setFocusNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.setFocusNodeInfo(nodeinfo.nid);
    }
}
 
/**
 *
 * @param nodeinfo
 * @return {boolean}
 */
function longClickExNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.longClickExNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.longClickExNodeInfo(nodeinfo.nid);
    }
}
 
/**
 *
 * @param nodeinfo
 * @return {boolean}
 */
function scrollForwardNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.scrollForwardNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.scrollForwardNodeInfo(nodeinfo.nid);
    }
}
 
/**
 *
 * @param nodeinfo
 * @return {boolean}
 */
function scrollBackwardNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.scrollBackwardNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.scrollBackwardNodeInfo(nodeinfo.nid);
    }
}
 
/**
 *
 * @param nodeinfo
 * @return {boolean}
 */
function scrollLeftNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.scrollLeftNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.scrollLeftNodeInfo(nodeinfo.nid);
    }
}
 
function scrollRightNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.scrollRightNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.scrollRightNodeInfo(nodeinfo.nid);
    }
}
 
function scrollUpNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.scrollUpNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.scrollUpNodeInfo(nodeinfo.nid);
    }
}
 
function scrollDownNodeInfo(nodeinfo) {
    if (isAccMode()) {
        return acEvent.scrollDownNodeInfo(nodeinfo.nid);
    } else if (isAgentMode()) {
        return agentEvent.scrollDownNodeInfo(nodeinfo.nid);
    }
}
 
 
/**
 * 读取res文件夹中的资源文件,并返 AutoImage 图片对象
 * @param fileName 文件名称,不要加res前缀
 * @return {null|AutoImage} 如果是null代表没内容
 */
function readResAutoImage(fileName) {
    return image.readResAutoImage(fileName);
}
 
/**
 * 获取最近的节点事件处罚的时间,可通过时间判断节点服务是否可用
 *
 * @return {number} 长整型时间,毫秒级别
 */
function lastNodeEventTime() {
 
    if (isAccMode()) {
        return acEvent.lastNodeEventTime();
    } else if (isAgentMode()) {
        return agentEvent.lastNodeEventTime();
    }
    return 0;
}
 
 
/**
 * 长按住事件
 * @param x x坐标
 * @param y y坐标
 * @param delay 长按时间  毫秒
 * @return {boolean} true 成功 false 失败
 */
 
function press(x, y, delay) {
    if (isAccMode()) {
        return acEvent.press(x, y, delay);
    } else if (isAgentMode()) {
        return agentEvent.press(x, y, delay);
    }
    return false;
}
 
 
/**
 * 执行按下事件
 * 适合EC 7.4.0+
 * @param x         x坐标
 * @param y         y坐标
 * @return {boolean} true 代表成功 false代表失败
 */
function touchDown(x, y) {
    if (isAccMode()) {
        return acEvent.touchDown(x, y);
    } else if (isAgentMode()) {
        return agentEvent.touchDown(x, y);
    }
    return false;
}
 
/**
 * 执行移动事件
 * 适合EC 7.4.0+
 * @param x         x坐标
 * @param y         y坐标
 * @return {boolean} true 代表成功 false代表失败
 */
function touchMove(x, y) {
    if (isAccMode()) {
        return acEvent.touchMove(x, y);
    } else if (isAgentMode()) {
        return agentEvent.touchMove(x, y);
    }
    return false;
}
 
/**
 * 执行弹起事件
 * 适合EC 7.4.0+
 * @param x         x坐标
 * @param y         y坐标
 * @return {boolean} true 代表成功 false代表失败
 */
function touchUp(x, y) {
    if (isAccMode()) {
        return acEvent.touchUp(x, y);
    } else if (isAgentMode()) {
        return agentEvent.touchUp(x, y);
    }
    return false;
}