summaryrefslogtreecommitdiffstats
path: root/jenkins_jobs/modules/wrappers.py
blob: fa92186070b2de4ed0ddee57294d1c5cf158fe11 (plain)
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
# Copyright 2012 Hewlett-Packard Development Company, L.P.
#
# 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.


"""
Wrappers can alter the way the build is run as well as the build output.

**Component**: wrappers
  :Macro: wrapper
  :Entry Point: jenkins_jobs.wrappers

"""

import logging
import pkg_resources
import sys
import xml.etree.ElementTree as XML

from jenkins_jobs.errors import InvalidAttributeError
from jenkins_jobs.errors import JenkinsJobsException
import jenkins_jobs.modules.base
from jenkins_jobs.modules.builders import create_builders
import jenkins_jobs.modules.helpers as helpers

logger = logging.getLogger(__name__)

MIN_TO_SEC = 60


def docker_custom_build_env(registry, xml_parent, data):
    """yaml: docker-custom-build-env
    Allows the definition of a build environment for a job using a Docker
    container.

    Requires the Jenkins :jenkins-plugins:`CloudBees Docker Custom Build
    Environment Plugin<docker-custom-build-environment>`.

    :arg str image-type: Docker image type. Valid values and their
        additional attributes described in the image_types_ table
    :arg str docker-tool: The name of the docker installation to use
        (default 'Default')
    :arg str host: URI to the docker host you are using
    :arg str credentials-id: Argument to specify the ID of credentials to use
        for docker host (optional)
    :arg str registry-credentials-id: Argument to specify the ID of
        credentials to use for docker registry (optional)
    :arg list volumes: Volumes to bind mound from slave host into container

        :volume: * **host-path** (`str`) Path on host
                 * **path** (`str`) Path inside container

    :arg bool verbose: Log docker commands executed by plugin on build log
        (default false)
    :arg bool privileged: Run in privileged mode (default false)
    :arg bool force-pull: Force pull (default false)
    :arg str group: The user to run build has to be the same as the Jenkins
        slave user so files created in workspace have adequate owner and
        permission set
    :arg str command: Container start command (default '/bin/cat')
    :arg str net: Network bridge (default 'bridge')
    :arg str memory-limit: Configure the limit memory
        constraint (default '')
    :arg str cpu-shares: Configure the CPU shares
        constraint (default '')

    .. _image_types:

    ================== ====================================================
    Image Type         Description
    ================== ====================================================
    dockerfile         Build docker image from a Dockerfile in project
                       workspace. With this option, project can define the
                       build environment as a Dockerfile stored in SCM with
                       project source code

                         :context-path: (str) Path to docker context
                           (default '.')
                         :dockerfile: (str) Use an alternate Dockerfile to
                           build the container hosting this build
                           (default 'Dockerfile')
    pull               Pull specified docker image from Docker repository

                         :image: (str) Image id/tag
    ================== ====================================================

    Example:

    .. literalinclude::
        /../../tests/wrappers/fixtures/docker-custom-build-env001.yaml
       :language: yaml
    """
    core_prefix = "com.cloudbees.jenkins.plugins.okidocki."
    entry_xml = XML.SubElement(xml_parent, core_prefix + "DockerBuildWrapper")
    entry_xml.set("plugin", "docker-custom-build-environment")

    selectorobj = XML.SubElement(entry_xml, "selector")
    image_type = data["image-type"]
    if image_type == "dockerfile":
        selectorobj.set("class", core_prefix + "DockerfileImageSelector")
        dockerfile_mapping = [
            ("context-path", "contextPath", "."),
            ("dockerfile", "dockerfile", "Dockerfile"),
        ]
        helpers.convert_mapping_to_xml(
            selectorobj, data, dockerfile_mapping, fail_required=True
        )

    elif image_type == "pull":
        selectorobj.set("class", core_prefix + "PullDockerImageSelector")
        pull_mapping = [("image", "image", "")]
        helpers.convert_mapping_to_xml(
            selectorobj, data, pull_mapping, fail_required=True
        )

    XML.SubElement(entry_xml, "dockerInstallation").text = data.get(
        "docker-tool", "Default"
    )

    host = XML.SubElement(entry_xml, "dockerHost")
    host.set("plugin", "docker-commons")
    mapping_optional = [
        ("host", "uri", None),
        ("credentials-id", "credentialsId", None),
    ]
    helpers.convert_mapping_to_xml(host, data, mapping_optional, fail_required=False)

    XML.SubElement(entry_xml, "dockerRegistryCredentials").text = data.get(
        "registry-credentials-id", ""
    )
    volumesobj = XML.SubElement(entry_xml, "volumes")
    volumes = data.get("volumes", [])
    if not volumes:
        volumesobj.set("class", "empty-list")
    else:
        for volume in volumes:
            volumeobj = XML.SubElement(
                volumesobj, "com.cloudbees.jenkins.plugins.okidocki.Volume"
            )
            XML.SubElement(volumeobj, "hostPath").text = volume["volume"].get(
                "host-path", ""
            )
            XML.SubElement(volumeobj, "path").text = volume["volume"].get("path", "")
    mapping = [
        ("force-pull", "forcePull", False),
        ("privileged", "privileged", False),
        ("verbose", "verbose", False),
        ("group", "group", ""),
        ("command", "command", "/bin/cat"),
        ("net", "net", "bridge"),
        ("memory-limit", "memory", ""),
        ("cpu-shares", "cpu", ""),
    ]
    helpers.convert_mapping_to_xml(entry_xml, data, mapping, fail_required=True)


def ci_skip(registry, xml_parent, data):
    """yaml: ci-skip
    Skip making a build for certain push.
    Just add [ci skip] into your commit's message to let Jenkins know,
    that you do not want to perform build for the next push.

    Requires the Jenkins :jenkins-plugins:`Ci Skip Plugin <ci-skip>`.

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/ci-skip001.yaml
    """
    rpobj = XML.SubElement(xml_parent, "ruby-proxy-object")
    robj = XML.SubElement(
        rpobj,
        "ruby-object",
        {"pluginid": "ci-skip", "ruby-class": "Jenkins::Tasks::BuildWrapperProxy"},
    )
    pluginid = XML.SubElement(
        robj, "pluginid", {"pluginid": "ci-skip", "ruby-class": "String"}
    )
    pluginid.text = "ci-skip"
    obj = XML.SubElement(
        robj, "object", {"pluginid": "ci-skip", "ruby-class": "CiSkipWrapper"}
    )
    XML.SubElement(obj, "ci__skip", {"pluginid": "ci-skip", "ruby-class": "NilClass"})


def config_file_provider(registry, xml_parent, data):
    """yaml: config-file-provider
    Provide configuration files (i.e., settings.xml for maven etc.)
    which will be copied to the job's workspace.

    Requires the Jenkins :jenkins-plugins:`Config File Provider Plugin
    <config-file-provider>`.

    :arg list files: List of managed config files made up of three
      parameters

      :files: * **file-id** (`str`) -- The identifier for the managed config
                file
              * **target** (`str`) -- Define where the file should be created
                (default '')
              * **variable** (`str`) -- Define an environment variable to be
                used (default '')
              * **replace-tokens** (`bool`) -- Replace tokens in config file.
                For example "password: ${PYPI_JENKINS_PASS}" will be replaced
                with the global variable configured in Jenkins.

    Full Example:

    .. literalinclude::
        /../../tests/wrappers/fixtures/config-file-provider-full.yaml

    Minimal Example:

    .. literalinclude::
        /../../tests/wrappers/fixtures/config-file-provider-minimal.yaml
    """
    cfp = XML.SubElement(
        xml_parent,
        "org.jenkinsci.plugins.configfiles." "buildwrapper.ConfigFileBuildWrapper",
    )
    cfp.set("plugin", "config-file-provider")
    helpers.config_file_provider_builder(cfp, data)


def logfilesize(registry, xml_parent, data):
    """yaml: logfilesize
    Abort the build if its logfile becomes too big.

    Requires the Jenkins :jenkins-plugins:`Logfilesizechecker Plugin
    <logfilesizechecker>`.

    :arg bool set-own: Use job specific maximum log size instead of global
        config value (default false).
    :arg bool fail: Make builds aborted by this wrapper be marked as "failed"
        (default false).
    :arg int size: Abort the build if logfile size is bigger than this
        value (in MiB, default 128). Only applies if set-own is true.

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/logfilesize-full.yaml

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/logfilesize-minimal.yaml
    """
    lfswrapper = XML.SubElement(
        xml_parent, "hudson.plugins.logfilesizechecker." "LogfilesizecheckerWrapper"
    )
    lfswrapper.set("plugin", "logfilesizechecker")

    mapping = [
        ("set-own", "setOwn", False),
        ("size", "maxLogSize", 128),
        ("fail", "failBuild", False),
    ]
    helpers.convert_mapping_to_xml(lfswrapper, data, mapping, fail_required=True)


def timeout(registry, xml_parent, data):
    """yaml: timeout
    Abort the build if it runs too long.

    Requires the Jenkins :jenkins-plugins:`Build Timeout Plugin
    <build-timeout>`.

    :arg bool fail: Mark the build as failed (default false)
    :arg bool abort: Mark the build as aborted (default false)
    :arg bool write-description: Write a message in the description
        (default false)
    :arg int timeout: Abort the build after this number of minutes (default 3)
    :arg str timeout-var: Export an environment variable to reference the
        timeout value (optional)
    :arg str type: Timeout type to use (default absolute)
    :type values:
        * **likely-stuck**
        * **no-activity**
        * **elastic**
        * **absolute**
        * **deadline**

    :arg int elastic-percentage: Percentage of the three most recent builds
        where to declare a timeout, only applies to **elastic** type.
        (default 0)
    :arg int elastic-number-builds: Number of builds to consider computing
        average duration, only applies to **elastic** type. (default 3)
    :arg int elastic-default-timeout: Timeout to use if there were no previous
        builds, only applies to **elastic** type. (default 3)

    :arg str deadline-time: Build terminate automatically at next deadline time
        (HH:MM:SS), only applies to **deadline** type. (default 0:00:00)
    :arg int deadline-tolerance: Period in minutes after deadline when a job
        should be immediately aborted, only applies to **deadline** type.
        (default 1)

    Example (Version < 1.14):

    .. literalinclude:: /../../tests/wrappers/fixtures/timeout/timeout001.yaml

    .. literalinclude:: /../../tests/wrappers/fixtures/timeout/timeout002.yaml

    .. literalinclude:: /../../tests/wrappers/fixtures/timeout/timeout003.yaml

    Example (Version >= 1.14):

    .. literalinclude::
        /../../tests/wrappers/fixtures/timeout/version-1.14/absolute001.yaml

    .. literalinclude::
        /../../tests/wrappers/fixtures/timeout/version-1.14/no-activity001.yaml

    .. literalinclude::
        /../../tests/wrappers/fixtures/timeout/version-1.14/likely-stuck001.yaml

    .. literalinclude::
        /../../tests/wrappers/fixtures/timeout/version-1.14/elastic001.yaml

    .. literalinclude::
        /../../tests/wrappers/fixtures/timeout/version-1.15/deadline001.yaml

    """
    prefix = "hudson.plugins.build__timeout."
    twrapper = XML.SubElement(xml_parent, prefix + "BuildTimeoutWrapper")

    plugin_info = registry.get_plugin_info("Build Timeout")
    if "version" not in plugin_info:
        plugin_info = registry.get_plugin_info("Jenkins build timeout plugin")
    version = plugin_info.get("version", None)
    if version:
        version = pkg_resources.parse_version(version)

    valid_strategies = [
        "absolute",
        "no-activity",
        "likely-stuck",
        "elastic",
        "deadline",
    ]

    # NOTE(toabctl): if we don't know the version assume that we
    # use a newer version of the plugin
    if not version or version >= pkg_resources.parse_version("1.14"):
        strategy = data.get("type", "absolute")
        if strategy not in valid_strategies:
            InvalidAttributeError("type", strategy, valid_strategies)

        if strategy == "absolute":
            strategy_element = XML.SubElement(
                twrapper,
                "strategy",
                {
                    "class": "hudson.plugins.build_timeout."
                    "impl.AbsoluteTimeOutStrategy"
                },
            )
            mapping = [("timeout", "timeoutMinutes", 3)]
            helpers.convert_mapping_to_xml(
                strategy_element, data, mapping, fail_required=True
            )
        elif strategy == "no-activity":
            strategy_element = XML.SubElement(
                twrapper,
                "strategy",
                {
                    "class": "hudson.plugins.build_timeout."
                    "impl.NoActivityTimeOutStrategy"
                },
            )
            timeout_sec = int(data.get("timeout", 3)) * MIN_TO_SEC
            mapping = [("", "timeoutSecondsString", timeout_sec)]
            helpers.convert_mapping_to_xml(
                strategy_element, data, mapping, fail_required=True
            )
        elif strategy == "likely-stuck":
            strategy_element = XML.SubElement(
                twrapper,
                "strategy",
                {
                    "class": "hudson.plugins.build_timeout."
                    "impl.LikelyStuckTimeOutStrategy"
                },
            )
            mapping = [("timeout", "timeoutMinutes", 3)]
            helpers.convert_mapping_to_xml(
                strategy_element, data, mapping, fail_required=True
            )
        elif strategy == "elastic":
            strategy_element = XML.SubElement(
                twrapper,
                "strategy",
                {
                    "class": "hudson.plugins.build_timeout."
                    "impl.ElasticTimeOutStrategy"
                },
            )
            mapping = [
                ("elastic-percentage", "timeoutPercentage", 0),
                ("elastic-number-builds", "numberOfBuilds", 0),
                ("elastic-default-timeout", "timeoutMinutesElasticDefault", 3),
            ]
            helpers.convert_mapping_to_xml(
                strategy_element, data, mapping, fail_required=True
            )

        elif strategy == "deadline":
            strategy_element = XML.SubElement(
                twrapper,
                "strategy",
                {
                    "class": "hudson.plugins.build_timeout."
                    "impl.DeadlineTimeOutStrategy"
                },
            )
            deadline_time = str(data.get("deadline-time", "0:00:00"))
            deadline_tolerance = int(data.get("deadline-tolerance", 1))
            mapping = [
                ("", "deadlineTime", deadline_time),
                ("", "deadlineToleranceInMinutes", deadline_tolerance),
            ]
            helpers.convert_mapping_to_xml(
                strategy_element, data, mapping, fail_required=True
            )

        actions = []

        for action in ["fail", "abort"]:
            if str(data.get(action, "false")).lower() == "true":
                actions.append(action)

        # Set the default action to "abort"
        if len(actions) == 0:
            actions.append("abort")

        description = data.get("write-description", None)
        if description is not None:
            actions.append("write-description")

        operation_list = XML.SubElement(twrapper, "operationList")

        for action in actions:
            fmt_str = prefix + "operations.{0}Operation"
            if action == "abort":
                XML.SubElement(operation_list, fmt_str.format("Abort"))
            elif action == "fail":
                XML.SubElement(operation_list, fmt_str.format("Fail"))
            elif action == "write-description":
                write_description = XML.SubElement(
                    operation_list, fmt_str.format("WriteDescription")
                )
                XML.SubElement(write_description, "description").text = description
            else:
                raise JenkinsJobsException(
                    "Unsupported BuiltTimeoutWrapper "
                    "plugin action: {0}".format(action)
                )
        mapping = [("timeout-var", "timeoutEnvVar", None)]
        helpers.convert_mapping_to_xml(twrapper, data, mapping, fail_required=False)
    else:
        mapping = [
            ("timeout", "timeoutMinutes", 3),
            ("timeout-var", "timeoutEnvVar", None),
            ("fail", "failBuild", "false"),
            ("write-description", "writingDescription", "false"),
            ("elastic-percentage", "timeoutPercentage", 0),
            ("elastic-default-timeout", "timeoutMinutesElasticDefault", 3),
        ]
        helpers.convert_mapping_to_xml(twrapper, data, mapping, fail_required=False)

        tout_type = str(data.get("type", "absolute")).lower()
        if tout_type == "likely-stuck":
            tout_type = "likelyStuck"
        XML.SubElement(twrapper, "timeoutType").text = tout_type


def timestamps(registry, xml_parent, data):
    """yaml: timestamps
    Add timestamps to the console log.

    Requires the Jenkins :jenkins-plugins:`Timestamper Plugin <timestamper>`.

    Example::

      wrappers:
        - timestamps
    """
    XML.SubElement(xml_parent, "hudson.plugins.timestamper.TimestamperBuildWrapper")


def ansicolor(registry, xml_parent, data):
    """yaml: ansicolor
    Translate ANSI color codes to HTML in the console log.

    Requires the Jenkins :jenkins-plugins:`Ansi Color Plugin <ansicolor>`.

    :arg string colormap: Color mapping to use (default xterm)

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/ansicolor-minimal.yaml
       :language: yaml

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/ansicolor-full.yaml
       :language: yaml
    """
    cwrapper = XML.SubElement(
        xml_parent, "hudson.plugins.ansicolor.AnsiColorBuildWrapper"
    )

    valid_types = ["xterm", "vga", "css", "gnome-terminal"]
    mapping = [("colormap", "colorMapName", "xterm", valid_types)]
    helpers.convert_mapping_to_xml(cwrapper, data, mapping, fail_required=False)


def build_keeper(registry, xml_parent, data):
    """yaml: build-keeper
    Keep builds based on specific policy.

    Requires the Jenkins :jenkins-plugins:`Build Keeper Plugin
    <build-keeper-plugin>`.

    :arg str policy: Policy to keep builds.

        :policy values:
          * **by-day**
          * **keep-since**
          * **build-number**
          * **keep-first-failed**
          * **run-condition**
    :arg int build-period: Number argument to calculate build to keep,
        depends on the policy. (default 0)
    :arg bool dont-keep-failed: Flag to indicate if to keep failed builds.
        (default false)
    :arg int number-of-fails: number of consecutive failed builds in order
        to mark first as keep forever, only applies to keep-first-failed
        policy (default 0)
    :arg bool keep-build: Build will be kept if there is a problem
        evaluating the RunCondition (default false)
    :arg str token: Token value for the boolean condition (default '')
    :arg list build-cause: The cause why the build
        was triggered (default USER_CAUSE)
    :arg bool exclusive-cause: Cause must be the only one causing this
        build to be triggered (default False)
    :arg str command: Contents of your shell script (default '')
    :arg str allowed-nodes: Node to be executed on (default '')
    :arg str expression: The regular expression used to
        match the label (default '')
    :arg str label: The label that will be tested by
        the regular expression (default '')
    :arg str arg1: First string argument for
        strings-match condition (default '')
    :arg str arg2: Second string argument for
        strings-match condition (default '')
    :arg bool ignore-case: Ignore the case of the strings when
        matching the two string arguments (default False)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/build-keeper0001.yaml

    .. literalinclude:: /../../tests/wrappers/fixtures/build-keeper0002.yaml

    """
    root = XML.SubElement(
        xml_parent, "org.jenkins__ci.plugins.build__keeper.BuildKeeper"
    )

    valid_policies = (
        "by-day",
        "keep-since",
        "build-number",
        "keep-first-failed",
        "run-condition",
    )
    policy = data.get("policy")

    mapping = [
        ("build-period", "buildPeriod", 0),
        ("dont-keep-failed", "dontKeepFailed", False),
    ]

    if policy == "by-day":
        policy_element = XML.SubElement(
            root,
            "policy",
            {"class": "org.jenkins_ci.plugins." "build_keeper.ByDayPolicy"},
        )
    elif policy == "keep-since":
        policy_element = XML.SubElement(
            root,
            "policy",
            {"class": "org.jenkins_ci.plugins." "build_keeper.KeepSincePolicy"},
        )
    elif policy == "build-number":
        policy_element = XML.SubElement(
            root,
            "policy",
            {"class": "org.jenkins_ci.plugins." "build_keeper.BuildNumberPolicy"},
        )
    elif policy == "keep-first-failed":
        policy_element = XML.SubElement(
            root,
            "policy",
            {"class": "org.jenkins_ci.plugins." "build_keeper.KeepFirstFailedPolicy"},
        )
        mapping = [("number-of-fails", "numberOfFails", 0)]
    elif policy == "run-condition":
        policy_element = XML.SubElement(
            root,
            "policy",
            {"class": "org.jenkins_ci.plugins." "build_keeper.RunConditionPolicy"},
        )

        run_condition = data.get("run-condition", [])
        run_condition_base_class = {
            "core": "org.jenkins_ci.plugins.run_condition.core.",
            "shell": "org.jenkins_ci.plugins.run_condition.contributed.",
        }
        mapping = [("keep-build", "keepBuildIfEvalFails", False)]
        bool_cond_mapping = [("token", "token", "")]
        build_cause_types = [
            "USER_CAUSE",
            "CLI_CAUSE",
            "REMOTE_CAUSE",
            "SCM_CAUSE",
            "TIMER_CAUSE",
            "UPSTREAM_CAUSE",
            "FS_CAUSE",
            "URL_CAUSE",
            "IVY_CAUSE",
            "SCRIPT_CAUSE",
            "BUILDRESULT_CAUSE",
        ]
        cause_cond_mapping = [
            ("build-cause", "buildCause", "USER_CAUSE", build_cause_types),
            ("exclusive-cause", "exclusiveCause", False),
        ]
        execute_mapping = [("command", "command", "")]
        regexp_match_mapping = [
            ("expression", "expression", ""),
            ("label", "label", ""),
        ]
        strings_match_mapping = [
            ("arg1", "arg1", ""),
            ("arg2", "arg2", ""),
            ("ignore-case", "ignoreCase", False),
        ]
        for value in run_condition:
            if value.get("type") == "always":
                XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (run_condition_base_class.get("core"), "AlwaysRun")
                        )
                    },
                )
            elif value.get("type") == "never":
                XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (run_condition_base_class.get("core"), "NeverRun")
                        )
                    },
                )
            elif value.get("type") == "boolean-condition":
                boolean_condition_element = XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (run_condition_base_class.get("core"), "BooleanCondition")
                        )
                    },
                )
                helpers.convert_mapping_to_xml(
                    boolean_condition_element,
                    value,
                    bool_cond_mapping,
                    fail_required=False,
                )
            elif value.get("type") == "cause-condition":
                cause_condition_element = XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (run_condition_base_class.get("core"), "CauseCondition")
                        )
                    },
                )
                helpers.convert_mapping_to_xml(
                    cause_condition_element,
                    value,
                    cause_cond_mapping,
                    fail_required=False,
                )
            elif value.get("type") == "execute-shell":
                execute_shell_element = XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (run_condition_base_class.get("shell"), "ShellCondition")
                        )
                    },
                )
                helpers.convert_mapping_to_xml(
                    execute_shell_element, value, execute_mapping, fail_required=False
                )
            elif value.get("type") == "execute-batch":
                execute_shell_element = XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (
                                run_condition_base_class.get("shell"),
                                "BatchFileCondition",
                            )
                        )
                    },
                )
                helpers.convert_mapping_to_xml(
                    execute_shell_element, value, execute_mapping, fail_required=False
                )
            elif value.get("type") == "execution-node":
                execute_shell_element = XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (run_condition_base_class.get("core"), "NodeCondition")
                        )
                    },
                )
                allowed_nodes = XML.SubElement(execute_shell_element, "allowedNodes")
                XML.SubElement(allowed_nodes, "string").text = value.get(
                    "allowed-nodes", None
                )
            elif value.get("type") == "regexp-match":
                regexp_match_element = XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (
                                run_condition_base_class.get("core"),
                                "ExpressionCondition",
                            )
                        )
                    },
                )
                helpers.convert_mapping_to_xml(
                    regexp_match_element,
                    value,
                    regexp_match_mapping,
                    fail_required=False,
                )
            elif value.get("type") == "strings-match":
                strings_match_element = XML.SubElement(
                    policy_element,
                    "runCondition",
                    {
                        "class": "".join(
                            (
                                run_condition_base_class.get("core"),
                                "StringsMatchCondition",
                            )
                        )
                    },
                )
                helpers.convert_mapping_to_xml(
                    strings_match_element,
                    value,
                    strings_match_mapping,
                    fail_required=False,
                )
    else:
        InvalidAttributeError("policy", policy, valid_policies)

    helpers.convert_mapping_to_xml(policy_element, data, mapping, fail_required=True)


def live_screenshot(registry, xml_parent, data):
    """yaml: live-screenshot
    Show live screenshots of running jobs in the job list.

    Requires the Jenkins :jenkins-plugins:`Live-Screenshot Plugin
    <livescreenshot>`.

    :arg str full-size: name of screenshot file (default 'screenshot.png')
    :arg str thumbnail: name of thumbnail file (default 'screenshot-thumb.png')

    File type must be .png and they must be located inside the $WORKDIR.

    Full Example:

    .. literalinclude::
       /../../tests/wrappers/fixtures/live-screenshot-full.yaml

    Minimal Example:

    .. literalinclude::
       /../../tests/wrappers/fixtures/live-screenshot-minimal.yaml
    """
    live = XML.SubElement(
        xml_parent, "org.jenkinsci.plugins.livescreenshot.LiveScreenshotBuildWrapper"
    )
    live.set("plugin", "livescreenshot")
    mapping = [
        ("full-size", "fullscreenFilename", "screenshot.png"),
        ("thumbnail", "thumbnailFilename", "screenshot-thumb.png"),
    ]
    helpers.convert_mapping_to_xml(live, data, mapping, fail_required=True)


def mask_passwords(registry, xml_parent, data):
    """yaml: mask-passwords
    Hide passwords in the console log.

    Requires the Jenkins :jenkins-plugins:`Mask Passwords Plugin
    <mask-passwords>`.

    Example::

      wrappers:
        - mask-passwords
    """
    XML.SubElement(
        xml_parent,
        "com.michelin.cio.hudson.plugins.maskpasswords." "MaskPasswordsBuildWrapper",
    )


def workspace_cleanup(registry, xml_parent, data):
    """yaml: workspace-cleanup (pre-build)

    Requires the Jenkins :jenkins-plugins:`Workspace Cleanup Plugin
    <ws-cleanup>`.

    The post-build workspace-cleanup is available as a publisher.

    :arg list include: list of files to be included
    :arg list exclude: list of files to be excluded
    :arg bool dirmatch: Apply pattern to directories too (default false)
    :arg str check-parameter: boolean environment variable to check to
        determine whether to actually clean up
    :arg str external-deletion-command: external deletion command to run
        against files and directories
    :arg bool disable-deferred-wipeout: Disable improved deferred wipeout
        method (default false)

    Full Example:

    .. literalinclude::
        /../../tests/wrappers/fixtures/workspace-cleanup-full.yaml
       :language: yaml

    Minimal Example:

    .. literalinclude::
        /../../tests/wrappers/fixtures/workspace-cleanup-min.yaml
       :language: yaml
    """

    p = XML.SubElement(xml_parent, "hudson.plugins.ws__cleanup.PreBuildCleanup")
    p.set("plugin", "ws-cleanup")

    if "include" in data or "exclude" in data:
        patterns = XML.SubElement(p, "patterns")

    for inc in data.get("include", []):
        ptrn = XML.SubElement(patterns, "hudson.plugins.ws__cleanup.Pattern")
        mapping = [("", "pattern", inc), ("", "type", "INCLUDE")]
        helpers.convert_mapping_to_xml(ptrn, data, mapping, fail_required=True)

    for exc in data.get("exclude", []):
        ptrn = XML.SubElement(patterns, "hudson.plugins.ws__cleanup.Pattern")
        mapping = [("", "pattern", exc), ("", "type", "EXCLUDE")]
        helpers.convert_mapping_to_xml(ptrn, data, mapping, fail_required=True)

    mapping = [
        ("dirmatch", "deleteDirs", False),
        ("check-parameter", "cleanupParameter", ""),
        ("external-deletion-command", "externalDelete", ""),
        ("disable-deferred-wipeout", "disableDeferredWipeout", False),
    ]
    helpers.convert_mapping_to_xml(p, data, mapping, fail_required=True)


def m2_repository_cleanup(registry, xml_parent, data):
    """yaml: m2-repository-cleanup
    Configure M2 Repository Cleanup.

    Requires the Jenkins :jenkins-plugins:`M2 Repository Cleanup
    <maven-repo-cleaner>`.

    :arg list patterns: List of patterns for artifacts to cleanup before
                        building. (optional)

    This plugin allows you to configure a maven2 job to clean some or all of
    the artifacts from the repository before it runs.

    Example:

        .. literalinclude:: \
../../tests/wrappers/fixtures/m2-repository-cleanup001.yaml
    """
    m2repo = XML.SubElement(
        xml_parent, "hudson.plugins.m2__repo__reaper.M2RepoReaperWrapper"
    )
    m2repo.set("plugin", "m2-repo-reaper")
    patterns = data.get("patterns", [])
    XML.SubElement(m2repo, "artifactPatterns").text = ",".join(patterns)
    p = XML.SubElement(m2repo, "patterns")
    for pattern in patterns:
        XML.SubElement(p, "string").text = pattern


def rvm_env(registry, xml_parent, data):
    """yaml: rvm-env
    Set the RVM implementation.

    Requires the Jenkins :jenkins-plugins:`Rvm Plugin <rvm>`.

    :arg str implementation: Type of implementation. Syntax is RUBY[@GEMSET],
                             such as '1.9.3' or 'jruby@foo'.

    Example::

      wrappers:
        - rvm-env:
            implementation: 1.9.3
    """
    rpo = XML.SubElement(xml_parent, "ruby-proxy-object")

    ro_class = "Jenkins::Plugin::Proxies::BuildWrapper"

    plugin_info = registry.get_plugin_info("RVM Plugin")
    plugin_ver = pkg_resources.parse_version(
        plugin_info.get("version", str(sys.maxsize))
    )

    if plugin_ver >= pkg_resources.parse_version("0.5"):
        ro_class = "Jenkins::Tasks::BuildWrapperProxy"

    ro = XML.SubElement(rpo, "ruby-object", {"ruby-class": ro_class, "pluginid": "rvm"})

    o = XML.SubElement(ro, "object", {"ruby-class": "RvmWrapper", "pluginid": "rvm"})

    XML.SubElement(o, "impl", {"pluginid": "rvm", "ruby-class": "String"}).text = data[
        "implementation"
    ]

    XML.SubElement(
        ro, "pluginid", {"pluginid": "rvm", "ruby-class": "String"}
    ).text = "rvm"


def rbenv(registry, xml_parent, data):
    """yaml: rbenv
    Set the rbenv implementation.

    Requires the Jenkins :jenkins-plugins:`rbenv plugin <rbenv>`.

    All parameters are optional.

    :arg str ruby-version: Version of Ruby to use  (default 1.9.3-p484)
    :arg bool ignore-local-version: If true, ignore local Ruby
        version (defined in the ".ruby-version" file in workspace) even if it
        has been defined  (default false)
    :arg str preinstall-gem-list: List of gems to install
        (default 'bundler,rake')
    :arg str rbenv-root: RBENV_ROOT  (default $HOME/.rbenv)
    :arg str rbenv-repo: Which repo to clone rbenv from
        (default https://github.com/rbenv/rbenv)
    :arg str rbenv-branch: Which branch to clone rbenv from  (default master)
    :arg str ruby-build-repo: Which repo to clone ruby-build from
        (default https://github.com/rbenv/ruby-build)
    :arg str ruby-build-branch: Which branch to clone ruby-build from
        (default master)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/rbenv003.yaml
    """

    rpo = XML.SubElement(xml_parent, "ruby-proxy-object")

    ro_class = "Jenkins::Tasks::BuildWrapperProxy"
    ro = XML.SubElement(
        rpo, "ruby-object", {"ruby-class": ro_class, "pluginid": "rbenv"}
    )

    XML.SubElement(
        ro, "pluginid", {"pluginid": "rbenv", "ruby-class": "String"}
    ).text = "rbenv"

    o = XML.SubElement(
        ro, "object", {"ruby-class": "RbenvWrapper", "pluginid": "rbenv"}
    )

    mapping = [
        # option, xml name, default value (text), attributes (hard coded)
        ("preinstall-gem-list", "gem__list", "bundler,rake"),
        ("rbenv-root", "rbenv__root", "$HOME/.rbenv"),
        ("rbenv-repo", "rbenv__repository", "https://github.com/rbenv/rbenv"),
        ("rbenv-branch", "rbenv__revision", "master"),
        (
            "ruby-build-repo",
            "ruby__build__repository",
            "https://github.com/rbenv/ruby-build",
        ),
        ("ruby-build-branch", "ruby__build__revision", "master"),
        ("ruby-version", "version", "1.9.3-p484"),
    ]
    helpers.convert_mapping_to_xml(o, data, mapping, fail_required=False)

    for elem in mapping:
        (optname, xmlname, val) = elem[:3]
        elem_tag = o.find(xmlname)
        elem_tag.set("ruby-class", "String")
        elem_tag.set("pluginid", "rbenv")

    ignore_local_class = "FalseClass"

    if "ignore-local-version" in data:
        ignore_local_string = str(data["ignore-local-version"]).lower()
        if ignore_local_string == "true":
            ignore_local_class = "TrueClass"

    XML.SubElement(
        o,
        "ignore__local__version",
        {"ruby-class": ignore_local_class, "pluginid": "rbenv"},
    )


def build_name(registry, xml_parent, data):
    """yaml: build-name
    Set the name of the build.

    Requires the Jenkins :jenkins-plugins:`Build Name Setter Plugin
    <build-name-setter>`.

    :arg str name: Name for the build.  Typically you would use a variable
                   from Jenkins in the name.  The syntax would be ${FOO} for
                   the FOO variable.

    Example::

      wrappers:
        - build-name:
            name: Build-${FOO}
    """
    bsetter = XML.SubElement(
        xml_parent, "org.jenkinsci.plugins.buildnamesetter." "BuildNameSetter"
    )
    mapping = [("name", "template", None)]
    helpers.convert_mapping_to_xml(bsetter, data, mapping, fail_required=True)


def port_allocator(registry, xml_parent, data):
    """yaml: port-allocator
    Assign unique TCP port numbers.

    Requires the Jenkins :jenkins-plugins:`Port Allocator Plugin
    <port-allocator>`.

    :arg str name: Deprecated, use names instead
    :arg list names: Variable list of names of the port or list of
        specific port numbers

    Example:

    .. literalinclude::  /../../tests/wrappers/fixtures/port-allocator002.yaml
    """
    pa = XML.SubElement(
        xml_parent, "org.jvnet.hudson.plugins.port__allocator." "PortAllocator"
    )
    ports = XML.SubElement(pa, "ports")
    names = data.get("names")
    if not names:
        logger = logging.getLogger(__name__)
        logger.warning(
            "port_allocator name is deprecated, use a names list " " instead"
        )
        names = [data["name"]]
    for name in names:
        dpt = XML.SubElement(
            ports, "org.jvnet.hudson.plugins.port__allocator." "DefaultPortType"
        )
        XML.SubElement(dpt, "name").text = name


def locks(registry, xml_parent, data):
    """yaml: locks
    Control parallel execution of jobs.

    Requires the Jenkins :jenkins-wiki:`Locks and Latches Plugin
    <Locks+and+Latches+plugin>`.

    :arg: list of locks to use

    Example:

    .. literalinclude::  /../../tests/wrappers/fixtures/locks002.yaml
       :language: yaml
    """
    locks = data
    if locks:
        lw = XML.SubElement(xml_parent, "hudson.plugins.locksandlatches.LockWrapper")
        locktop = XML.SubElement(lw, "locks")
        for lock in locks:
            lockwrapper = XML.SubElement(
                locktop, "hudson.plugins.locksandlatches." "LockWrapper_-LockWaitConfig"
            )
            XML.SubElement(lockwrapper, "name").text = lock


def copy_to_slave(registry, xml_parent, data):
    """yaml: copy-to-slave
    Copy files to slave before build.

    Requires the Jenkins :jenkins-wiki:`Copy To Slave Plugin
    <Copy+To+Slave+Plugin>`.

    :arg list includes: list of file patterns to copy (optional)
    :arg list excludes: list of file patterns to exclude (optional)
    :arg bool flatten: flatten directory structure (default false)
    :arg str relative-to: base location of includes/excludes, must be home
        ($JENKINS_HOME), somewhereElse ($JENKINS_HOME/copyToSlave),
        userContent ($JENKINS_HOME/userContent) or workspace
        (default userContent)
    :arg bool include-ant-excludes: exclude ant's default excludes
        (default false)

    Minimal Example:

    .. literalinclude::  /../../tests/wrappers/fixtures/copy-to-slave001.yaml
       :language: yaml

    Full Example:

    .. literalinclude::  /../../tests/wrappers/fixtures/copy-to-slave002.yaml
       :language: yaml
    """
    p = "com.michelin.cio.hudson.plugins.copytoslave.CopyToSlaveBuildWrapper"
    cs = XML.SubElement(xml_parent, p)

    XML.SubElement(cs, "includes").text = ",".join(data.get("includes", [""]))
    XML.SubElement(cs, "excludes").text = ",".join(data.get("excludes", [""]))

    locations = ["home", "somewhereElse", "userContent", "workspace"]
    mapping = [
        ("flatten", "flatten", False),
        ("include-ant-excludes", "includeAntExcludes", False),
        ("relative-to", "relativeTo", "userContent", locations),
        ("", "hudsonHomeRelative", False),
    ]
    helpers.convert_mapping_to_xml(cs, data, mapping, fail_required=True)


def inject(registry, xml_parent, data):
    """yaml: inject
    Add or override environment variables to the whole build process.

    Requires the Jenkins :jenkins-plugins:`EnvInject Plugin <envinject>`.

    :arg str properties-file: path to the properties file (optional)
    :arg str properties-content: key value pair of properties (optional)
    :arg str script-file: path to the script file (optional)
    :arg str script-content: contents of a script (optional)
    :arg bool load-from-master: load files from master (default false)
    :arg str groovy-script: contents of the groovy script (optional)
    :arg bool groovy-sandbox: use groovy sandbox (default false)

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/inject-minimal.yaml

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/inject-full.yaml

    """
    eib = XML.SubElement(xml_parent, "EnvInjectBuildWrapper")
    info = XML.SubElement(eib, "info")
    mapping = [
        ("properties-file", "propertiesFilePath", None),
        ("properties-content", "propertiesContent", None),
        ("script-file", "scriptFilePath", None),
        ("script-content", "scriptContent", None),
        ("load-from-master", "loadFilesFromMaster", False),
    ]
    helpers.convert_mapping_to_xml(info, data, mapping, fail_required=False)

    secure_groovy_script = XML.SubElement(info, "secureGroovyScript")
    mapping = [("groovy-script", "script", None), ("groovy-sandbox", "sandbox", False)]
    helpers.convert_mapping_to_xml(
        secure_groovy_script, data, mapping, fail_required=False
    )


def inject_ownership_variables(registry, xml_parent, data):
    """yaml: inject-ownership-variables
    Inject ownership variables to the build as environment variables.

    Requires the Jenkins :jenkins-plugins:`EnvInject Plugin <envinject>`
    and Jenkins :jenkins-plugins:`Ownership plugin <ownership>`.

    :arg bool job-variables: inject job ownership variables to the job
        (default false)
    :arg bool node-variables: inject node ownership variables to the job
        (default false)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/ownership001.yaml

    """
    ownership = XML.SubElement(
        xml_parent,
        "com.synopsys.arc.jenkins.plugins." "ownership.wrappers.OwnershipBuildWrapper",
    )
    mapping = [
        ("node-variables", "injectNodeOwnership", False),
        ("job-variables", "injectJobOwnership", False),
    ]
    helpers.convert_mapping_to_xml(ownership, data, mapping, fail_required=True)


def inject_passwords(registry, xml_parent, data):
    """yaml: inject-passwords
    Inject passwords to the build as environment variables.

    Requires the Jenkins :jenkins-plugins:`EnvInject Plugin <envinject>`.

    :arg bool global: inject global passwords to the job
    :arg bool mask-password-params: mask password parameters
    :arg list job-passwords: key value pair of job passwords

        :Parameter: * **name** (`str`) Name of password
                    * **password** (`str`) Encrypted password

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/passwords001.yaml

    """
    eib = XML.SubElement(xml_parent, "EnvInjectPasswordWrapper")
    mapping = [
        ("global", "injectGlobalPasswords", False),
        ("mask-password-params", "maskPasswordParameters", False),
    ]
    helpers.convert_mapping_to_xml(eib, data, mapping, fail_required=True)

    entries = XML.SubElement(eib, "passwordEntries")
    passwords = data.get("job-passwords", [])
    if passwords:
        for password in passwords:
            entry = XML.SubElement(entries, "EnvInjectPasswordEntry")
            mapping = [("name", "name", None), ("password", "value", None)]
            helpers.convert_mapping_to_xml(entry, password, mapping, fail_required=True)


def vault_secrets(registry, xml_parent, data):
    """yaml: vault-secrets
    Inject environment variables from a HashiCorp Vault secret.

    Secrets are generally masked in the build log.

    Requires the Jenkins :jenkins-plugins:`HashiCorp Vault Plugin
    <hashicorp-vault-plugin>`.

    :arg str vault-url: Vault URL
    :arg str credentials-id: Vault Credential
    :arg list secrets: List of secrets

      :secrets:
        * **secret-path** (`str`) --
          The path of the secret in the vault server

        :secret-values:
          * **secret-values** (`list`) -- List of key / value pairs

            * **env-var** (`str`) --
              The environment variable to set with the value of the
              vault key
            * **vault-key** (`str`) -- The vault key whose value with
              populate the environment variable

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/vault-minimal.yaml
       :language: yaml

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/vault-full.yaml
       :language: yaml

    """
    vault = XML.SubElement(xml_parent, "com.datapipe.jenkins.vault.VaultBuildWrapper")
    vault.set("plugin", "hashicorp-vault-plugin")
    configuration = XML.SubElement(vault, "configuration")
    conf_mapping = [
        ("vault-url", "vaultUrl", ""),
        ("credentials-id", "vaultCredentialId", ""),
    ]
    helpers.convert_mapping_to_xml(
        configuration, data, conf_mapping, fail_required=True
    )

    secret_obj_mapping = [("secret-path", "path", "")]
    secret_value_mapping = [("env-var", "envVar", ""), ("vault-key", "vaultKey", "")]
    secretsobj = XML.SubElement(vault, "vaultSecrets")
    secrets = data.get("secrets", [])
    for secret in secrets:
        secretobj = XML.SubElement(
            secretsobj, "com.datapipe.jenkins.vault.model.VaultSecret"
        )

        helpers.convert_mapping_to_xml(
            secretobj, secret, secret_obj_mapping, fail_required=False
        )
        secretvaluesobj = XML.SubElement(secretobj, "secretValues")
        for secretvalue in secret["secret-values"]:
            secretvalueobj = XML.SubElement(
                secretvaluesobj, "com.datapipe.jenkins.vault.model.VaultSecretValue"
            )
            helpers.convert_mapping_to_xml(
                secretvalueobj, secretvalue, secret_value_mapping, fail_required=False
            )
    XML.SubElement(vault, "valuesToMask")
    XML.SubElement(vault, "vaultAccessor")


def env_file(registry, xml_parent, data):
    """yaml: env-file
    Add or override environment variables to the whole build process.

    Requires the Jenkins :jenkins-plugins:`Environment File Plugin <envfile>`.

    :arg str properties-file: path to the properties file (optional)

    Example::

      wrappers:
        - env-file:
            properties-file: ${WORKSPACE}/foo
    """
    eib = XML.SubElement(xml_parent, "hudson.plugins.envfile.EnvFileBuildWrapper")
    mapping = [("properties-file", "filePath", None)]
    helpers.convert_mapping_to_xml(eib, data, mapping, fail_required=False)


def env_script(registry, xml_parent, data):
    """yaml: env-script
    Add or override environment variables to the whole build process.

    Requires the Jenkins :jenkins-plugins:`Environment Script Plugin
    <environment-script>`.

    :arg script-content: The script to run (default '')
    :arg str script-type: The script type.

        :script-types supported:
            * **unix-script** (default)
            * **power-shell**
            * **batch-script**
    :arg only-run-on-parent: Only applicable for Matrix Jobs. If true, run only
      on the matrix parent job (default false)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/env-script001.yaml

    """
    el = XML.SubElement(xml_parent, "com.lookout.jenkins.EnvironmentScript")

    valid_script_types = {
        "unix-script": "unixScript",
        "power-shell": "powerShell",
        "batch-script": "batchScript",
    }
    mapping = [
        ("script-content", "script", ""),
        ("script-type", "scriptType", "unix-script", valid_script_types),
        ("only-run-on-parent", "runOnlyOnParent", False),
    ]
    helpers.convert_mapping_to_xml(el, data, mapping, fail_required=True)


def jclouds(registry, xml_parent, data):
    """yaml: jclouds
    Uses JClouds to provide slave launching on most of the currently
    usable Cloud infrastructures.

    Requires the Jenkins :jenkins-plugins:`JClouds Plugin <jclouds-jenkins>`.

    :arg bool single-use: Whether or not to terminate the slave after use
                          (default false).
    :arg list instances: The name of the jclouds template to create an
                         instance from, and its parameters.
    :arg str cloud-name: The name of the jclouds profile containing the
                         specified template.
    :arg int count: How many instances to create (default 1).
    :arg bool stop-on-terminate: Whether or not to suspend instead of terminate
                                 the instance (default false).

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/jclouds001.yaml
       :language: yaml

    """
    mapping = [
        ("cloud-name", "cloudName", ""),
        ("count", "count", "1"),
        ("stop-on-terminate", "suspendOrTerminate", False),
    ]
    if "instances" in data:
        buildWrapper = XML.SubElement(
            xml_parent, "jenkins.plugins.jclouds.compute.JCloudsBuildWrapper"
        )
        instances = XML.SubElement(buildWrapper, "instancesToRun")
        for foo in data["instances"]:
            for template, params in foo.items():
                instance = XML.SubElement(
                    instances, "jenkins.plugins.jclouds.compute." "InstancesToRun"
                )
                XML.SubElement(instance, "templateName").text = template
                helpers.convert_mapping_to_xml(
                    instance, params, mapping, fail_required=False
                )
    if data.get("single-use"):
        XML.SubElement(
            xml_parent, "jenkins.plugins.jclouds.compute." "JCloudsOneOffSlave"
        )


def openstack(registry, xml_parent, data):
    """yaml: openstack
    Provision slaves from OpenStack on demand.

    Requires the Jenkins :jenkins-plugins:`Openstack Cloud Plugin
    <openstack-cloud>`.

    :arg list instances: List of instances to be launched at the beginning of
        the build.

        :instances:
            * **cloud-name** (`str`) -- The name of the cloud profile which
              contains the specified cloud instance template (required).
            * **template-name** (`str`) -- The name of the cloud instance
              template to create an instance from(required).
            * **manual-template** (`bool`) -- If True, instance template name
              will be put in 'Specify Template Name as String' option. Not
              specifying or specifying False, instance template name will be
              put in 'Select Template from List' option. To use parameter
              replacement, set this to True.  (default false)
            * **count** (`int`) -- How many instances to create (default 1).

    :arg bool single-use: Whether or not to terminate the slave after use
        (default false).

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/openstack001.yaml
    """
    tag_prefix = "jenkins.plugins.openstack.compute."

    if "instances" in data:
        clouds_build_wrapper = XML.SubElement(
            xml_parent, tag_prefix + "JCloudsBuildWrapper"
        )
        instances_wrapper = XML.SubElement(clouds_build_wrapper, "instancesToRun")

        for instance in data["instances"]:
            instances_to_run = XML.SubElement(
                instances_wrapper, tag_prefix + "InstancesToRun"
            )

            instance_mapping = [
                ("cloud-name", "cloudName", None),
                ("count", "count", 1),
            ]

            if instance.get("manual-template", False):
                instance_mapping.append(("template-name", "manualTemplateName", None))
            else:
                instance_mapping.append(("template-name", "templateName", None))
            helpers.convert_mapping_to_xml(
                instances_to_run, instance, instance_mapping, fail_required=True
            )

    if data.get("single-use", False):
        XML.SubElement(xml_parent, tag_prefix + "JCloudsOneOffSlave")


def build_user_vars(registry, xml_parent, data):
    """yaml: build-user-vars
    Set environment variables to the value of the user that started the build.

    Requires the Jenkins :jenkins-plugins:`Build User Vars Plugin
    <build-user-vars-plugin>`.

    Example::

      wrappers:
        - build-user-vars
    """
    XML.SubElement(xml_parent, "org.jenkinsci.plugins.builduser.BuildUser")


def release(registry, xml_parent, data):
    """yaml: release
    Add release build configuration.

    Requires the Jenkins :jenkins-plugins:`Release Plugin <release>`.

    :arg bool keep-forever: Keep build forever (default true)
    :arg bool override-build-parameters: Enable build-parameter override
        (default false)
    :arg string version-template: Release version template (default '')
    :arg list parameters: Release parameters (see the :ref:`Parameters` module)
    :arg list pre-build: Pre-build steps (see the :ref:`Builders` module)
    :arg list post-build: Post-build steps (see :ref:`Builders`)
    :arg list post-success: Post successful-build steps (see :ref:`Builders`)
    :arg list post-failed: Post failed-build steps (see :ref:`Builders`)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/release001.yaml

    """
    relwrap = XML.SubElement(xml_parent, "hudson.plugins.release.ReleaseWrapper")
    # For 'keep-forever', the sense of the XML flag is the opposite of
    # the YAML flag.
    mapping = [
        ("do-not-keep-log", "doNotKeepLog", not data.get("keep-forever", True)),
        ("override-build-parameters", "overrideBuildParameters", False),
        ("version-template", "releaseVersionTemplate", ""),
    ]
    helpers.convert_mapping_to_xml(relwrap, data, mapping, fail_required=True)

    parameters = data.get("parameters", [])
    if parameters:
        pdef = XML.SubElement(relwrap, "parameterDefinitions")
        for param in parameters:
            registry.dispatch("parameter", pdef, param)
    builder_steps = {
        "pre-build": "preBuildSteps",
        "post-build": "postBuildSteps",
        "post-success": "postSuccessfulBuildSteps",
        "post-fail": "postFailedBuildSteps",
    }
    for step in builder_steps.keys():
        for builder in data.get(step, []):
            registry.dispatch(
                "builder", XML.SubElement(relwrap, builder_steps[step]), builder
            )


def sauce_ondemand(registry, xml_parent, data):
    """yaml: sauce-ondemand
    Allows you to integrate Sauce OnDemand with Jenkins.  You can
    automate the setup and tear down of Sauce Connect and integrate
    the Sauce OnDemand results videos per test.

    Requires the Jenkins :jenkins-plugins:`Sauce OnDemand Plugin
    <sauce-ondemand>`.

    :arg bool enable-sauce-connect: launches a SSH tunnel from their cloud
        to your private network (default false)
    :arg str sauce-host: The name of the selenium host to be used.  For
        tests run using Sauce Connect, this should be localhost.
        ondemand.saucelabs.com can also be used to connect directly to
        Sauce OnDemand,  The value of the host will be stored in the
        SAUCE_ONDEMAND_HOST environment variable.  (default '')
    :arg str sauce-port: The name of the Selenium Port to be used.  For
        tests run using Sauce Connect, this should be 4445.  If using
        ondemand.saucelabs.com for the Selenium Host, then use 4444.
        The value of the port will be stored in the SAUCE_ONDEMAND_PORT
        environment variable.  (default '')
    :arg str override-username: If set then api-access-key must be set.
        Overrides the username from the global config. (default '')
    :arg str override-api-access-key: If set then username must be set.
        Overrides the api-access-key set in the global config. (default '')
    :arg str starting-url: The value set here will be stored in the
        SELENIUM_STARTING_ULR environment variable.  Only used when type
        is selenium. (default '')
    :arg str type: Type of test to run (default selenium)

        :type values:
          * **selenium**
          * **webdriver**
    :arg list platforms: The platforms to run the tests on.  Platforms
        supported are dynamically retrieved from sauce labs.  The format of
        the values has only the first letter capitalized, no spaces, underscore
        between os and version, underscore in internet_explorer, everything
        else is run together.  If there are not multiple version of the browser
        then just the first version number is used.
        Examples: Mac_10.8iphone5.1 or Windows_2003firefox10
        or Windows_2012internet_explorer10 (default '')
    :arg bool launch-sauce-connect-on-slave: Whether to launch sauce connect
        on the slave. (default false)
    :arg str https-protocol: The https protocol to use (default '')
    :arg str sauce-connect-options: Options to pass to sauce connect
        (default '')

    Example::

      wrappers:
        - sauce-ondemand:
            enable-sauce-connect: true
            sauce-host: foo
            sauce-port: 8080
            override-username: foo
            override-api-access-key: 123lkj123kh123l;k12323
            type: webdriver
            platforms:
              - Linuxandroid4
              - Linuxfirefox10
              - Linuxfirefox11
            launch-sauce-connect-on-slave: true
    """
    sauce = XML.SubElement(
        xml_parent, "hudson.plugins.sauce__ondemand." "SauceOnDemandBuildWrapper"
    )
    mapping = [
        ("enable-sauce-connect", "enableSauceConnect", False),
        ("sauce-host", "seleniumHost", ""),
        ("sauce-port", "seleniumPort", ""),
        ("launch-sauce-connect-on-slave", "launchSauceConnectOnSlave", False),
        ("https-protocol", "httpsProtocol", ""),
        ("sauce-connect-options", "options", ""),
    ]
    helpers.convert_mapping_to_xml(sauce, data, mapping, fail_required=True)

    # Optional override global authentication
    username = data.get("override-username")
    key = data.get("override-api-access-key")
    if username and key:
        cred = XML.SubElement(sauce, "credentials")
        mapping = [
            ("override-username", "username", None),
            ("override-api-access-key", "apiKey", None),
        ]
        helpers.convert_mapping_to_xml(cred, data, mapping, fail_required=True)
    atype = data.get("type", "selenium")
    info = XML.SubElement(sauce, "seleniumInformation")

    if atype == "selenium":
        selenium_mapping = [
            ("starting-url", "seleniumBrowsers", ""),
            ("", "isWebDriver", False),
        ]
        helpers.convert_mapping_to_xml(info, data, selenium_mapping, fail_required=True)

        browsers = XML.SubElement(info, "seleniumBrowsers")
        for platform in data["platforms"]:
            mapping = [("", "string", platform)]
            helpers.convert_mapping_to_xml(browsers, data, mapping, fail_required=True)
        XML.SubElement(
            sauce,
            "seleniumBrowsers",
            {"reference": "../seleniumInformation/" "seleniumBrowsers"},
        )
    if atype == "webdriver":
        browsers = XML.SubElement(info, "webDriverBrowsers")
        for platform in data["platforms"]:
            mapping = [("", "string", platform)]
            helpers.convert_mapping_to_xml(browsers, data, mapping, fail_required=True)
        webdriver_mapping = [("", "isWebDriver", True)]
        helpers.convert_mapping_to_xml(
            info, data, webdriver_mapping, fail_required=True
        )
        XML.SubElement(
            sauce,
            "webDriverBrowsers",
            {"reference": "../seleniumInformation/" "webDriverBrowsers"},
        )


def sonar(registry, xml_parent, data):
    """yaml: sonar
    Wrapper for SonarQube Plugin.

    Requires :jenkins-plugins:`SonarQube plugin <sonar>`

    :arg str install-name: Release goals and options (default '')

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/sonar-minimal.yaml
       :language: yaml

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/sonar-full.yaml
       :language: yaml
    """
    sonar = XML.SubElement(xml_parent, "hudson.plugins.sonar.SonarBuildWrapper")
    sonar.set("plugin", "sonar")

    if data.get("install-name"):
        mapping = [("install-name", "installationName", "")]
        helpers.convert_mapping_to_xml(sonar, data, mapping, fail_required=True)


def pathignore(registry, xml_parent, data):
    """yaml: pathignore
    This plugin allows SCM-triggered jobs to ignore
    build requests if only certain paths have changed.

    Requires the Jenkins :jenkins-plugins:`Pathignore Plugin <pathignore>`.

    :arg str ignored: A set of patterns to define ignored changes

    Example::

      wrappers:
        - pathignore:
            ignored: "docs, tests"
    """
    ruby = XML.SubElement(xml_parent, "ruby-proxy-object")
    robj = XML.SubElement(
        ruby,
        "ruby-object",
        attrib={
            "pluginid": "pathignore",
            "ruby-class": "Jenkins::Plugin::Proxies::BuildWrapper",
        },
    )
    pluginid = XML.SubElement(
        robj, "pluginid", {"pluginid": "pathignore", "ruby-class": "String"}
    )
    pluginid.text = "pathignore"
    obj = XML.SubElement(
        robj, "object", {"ruby-class": "PathignoreWrapper", "pluginid": "pathignore"}
    )
    ignored = XML.SubElement(
        obj, "ignored__paths", {"pluginid": "pathignore", "ruby-class": "String"}
    )
    ignored.text = data.get("ignored", "")
    XML.SubElement(
        obj, "invert__ignore", {"ruby-class": "FalseClass", "pluginid": "pathignore"}
    )


def pre_scm_buildstep(registry, xml_parent, data):
    """yaml: pre-scm-buildstep
    Execute a Build Step before running the SCM.

    Requires the Jenkins :jenkins-plugins:`Pre SCM BuildStep
    <preSCMbuildstep>`.

    :arg string failOnError: Specifies if the job should fail on error
        (plugin >= 0.3) (default false).
    :arg list buildsteps: List of build steps to execute

        :Buildstep: Any acceptable builder, as seen in the example

    Example:

    .. literalinclude::
       /../../tests/wrappers/fixtures/pre-scm-buildstep001.yaml
       :language: yaml
    """
    # Get plugin information to maintain backwards compatibility
    info = registry.get_plugin_info("preSCMbuildstep")
    version = pkg_resources.parse_version(info.get("version", "0"))

    bsp = XML.SubElement(
        xml_parent, "org.jenkinsci.plugins.preSCMbuildstep." "PreSCMBuildStepsWrapper"
    )
    bs = XML.SubElement(bsp, "buildSteps")
    stepList = data if type(data) is list else data.get("buildsteps")

    for step in stepList:
        for edited_node in create_builders(registry, step):
            bs.append(edited_node)
    if version >= pkg_resources.parse_version("0.3"):
        mapping = [("failOnError", "failOnError", False)]
        helpers.convert_mapping_to_xml(bsp, data, mapping, fail_required=True)


def logstash(registry, xml_parent, data):
    """yaml: logstash build wrapper
    Dump the Jenkins console output to Logstash.

    Requires the Jenkins :jenkins-plugins:`logstash plugin <logstash>`.

    :arg use-redis: Boolean to use Redis. (default true)
    :arg redis: Redis config params

        :Parameter: * **host** (`str`) Redis hostname\
        (default 'localhost')
        :Parameter: * **port** (`int`) Redis port number (default 6397)
        :Parameter: * **database-number** (`int`)\
        Redis database number (default 0)
        :Parameter: * **database-password** (`str`)\
        Redis database password (default '')
        :Parameter: * **data-type** (`str`)\
        Redis database type (default 'list')
        :Parameter: * **key** (`str`) Redis key (default 'logstash')

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/logstash001.yaml

    """
    logstash = XML.SubElement(
        xml_parent, "jenkins.plugins.logstash." "LogstashBuildWrapper"
    )
    logstash.set("plugin", "logstash@0.8.0")

    mapping = [("use-redis", "useRedis", True)]
    helpers.convert_mapping_to_xml(logstash, data, mapping, fail_required=True)

    if data.get("use-redis"):
        redis_config = data.get("redis", {})
        redis_sub_element = XML.SubElement(logstash, "redis")

        mapping = [
            ("host", "host", "localhost"),
            ("port", "port", "6379"),
            ("database-number", "numb", "0"),
            ("database-password", "pass", ""),
            ("data-type", "dataType", "list"),
            ("key", "key", "logstash"),
        ]
        helpers.convert_mapping_to_xml(
            redis_sub_element, redis_config, mapping, fail_required=True
        )


def mongo_db(registry, xml_parent, data):
    """yaml: mongo-db build wrapper
    Initializes a MongoDB database while running the build.

    Requires the Jenkins :jenkins-plugins:`MongoDB plugin <mongodb>`.

    :arg str name: The name of the MongoDB install to use (required)
    :arg str data-directory: Data directory for the server (default '')
    :arg int port: Port for the server (default '')
    :arg str startup-params: Startup parameters for the server (default '')
    :arg int start-timeout: How long to wait for the server to start in
        milliseconds. 0 means no timeout. (default 0)

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/mongo-db-full.yaml

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/mongo-db-minimal.yaml
    """
    mongodb = XML.SubElement(
        xml_parent, "org.jenkinsci.plugins.mongodb." "MongoBuildWrapper"
    )
    mongodb.set("plugin", "mongodb")

    mapping = [
        ("name", "mongodbName", None),
        ("port", "port", ""),
        ("data-directory", "dbpath", ""),
        ("startup-params", "parameters", ""),
        ("start-timeout", "startTimeout", 0),
    ]
    helpers.convert_mapping_to_xml(mongodb, data, mapping, fail_required=True)


def delivery_pipeline(registry, xml_parent, data):
    """yaml: delivery-pipeline
    If enabled the job will create a version based on the template.
    The version will be set to the environment variable PIPELINE_VERSION and
    will also be set in the downstream jobs.

    Requires the Jenkins :jenkins-plugins:`Delivery Pipeline Plugin
    <delivery-pipeline-plugin>`.

    :arg str version-template: Template for generated version e.g
        1.0.${BUILD_NUMBER} (default '')
    :arg bool set-display-name: Set the generated version as the display name
        for the build (default false)

    Minimal Example:

    .. literalinclude::
       /../../tests/wrappers/fixtures/delivery-pipeline-minimal.yaml
       :language: yaml

    Full Example:

    .. literalinclude::
       /../../tests/wrappers/fixtures/delivery-pipeline-full.yaml
       :language: yaml
    """
    pvc = XML.SubElement(
        xml_parent, "se.diabol.jenkins.pipeline.PipelineVersionContributor"
    )
    pvc.set("plugin", "delivery-pipeline-plugin")

    mapping = [
        ("version-template", "versionTemplate", ""),
        ("set-display-name", "updateDisplayName", False),
    ]
    helpers.convert_mapping_to_xml(pvc, data, mapping, fail_required=True)


def matrix_tie_parent(registry, xml_parent, data):
    """yaml: matrix-tie-parent
    Tie parent to a node.

    Requires the Jenkins :jenkins-plugins:`Matrix Tie Parent Plugin
    <matrixtieparent>`.

    Note that from Jenkins version 1.532 this plugin's functionality is
    available under the "advanced" option of the matrix project configuration.
    You can use the top level ``node`` parameter to control where the parent
    job is tied in Jenkins 1.532 and higher.

    :arg str node: Name of the node (required)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/matrix-tie-parent.yaml
    """
    mtp = XML.SubElement(xml_parent, "matrixtieparent.BuildWrapperMtp")
    mapping = [("node", "labelName", None)]
    helpers.convert_mapping_to_xml(mtp, data, mapping, fail_required=True)


def exclusion(registry, xml_parent, data):
    """yaml: exclusion
    Add a resource to use for critical sections to establish a mutex on. If
    another job specifies the same resource, the second job will wait for the
    blocked resource to become available.

    Requires the Jenkins :jenkins-plugins:`Exclusion Plugin <Exclusion>`.

    :arg list resources: List of resources to add for exclusion

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/exclusion002.yaml

    """
    exl = XML.SubElement(xml_parent, "org.jvnet.hudson.plugins.exclusion.IdAllocator")
    exl.set("plugin", "Exclusion")
    ids = XML.SubElement(exl, "ids")
    resources = data.get("resources", [])
    for resource in resources:
        dit = XML.SubElement(ids, "org.jvnet.hudson.plugins.exclusion.DefaultIdType")
        mapping = [("", "name", resource.upper())]
        helpers.convert_mapping_to_xml(dit, data, mapping, fail_required=True)


def ssh_agent_credentials(registry, xml_parent, data):
    """yaml: ssh-agent-credentials
    Sets up the user for the ssh agent plugin for jenkins.

    Requires the Jenkins :jenkins-plugins:`SSH-Agent Plugin <ssh-agent>`.

    :arg list users: A list of Jenkins users credential IDs (required)
    :arg str user: The user id of the jenkins user credentials (deprecated)
    :arg bool ignore-missing-credentials: Specifies the option to ignore
        missing credentials (default false)

    Example:

    .. literalinclude::
            /../../tests/wrappers/fixtures/ssh-agent-credentials002.yaml


    if both **users** and **user** parameters specified, **users** will be
        preferred, **user** will be ignored.

    Example:

    .. literalinclude::
            /../../tests/wrappers/fixtures/ssh-agent-credentials003.yaml

    The **users** with one value in list equals to the **user**. In this
    case old style XML will be generated. Use this format if you use
    SSH-Agent plugin < 1.5.

    Example:

    .. literalinclude::
            /../../tests/wrappers/fixtures/ssh-agent-credentials004.yaml

    equals to:

    .. literalinclude::
            /../../tests/wrappers/fixtures/ssh-agent-credentials001.yaml

    """

    logger = logging.getLogger(__name__)

    entry_xml = XML.SubElement(
        xml_parent, "com.cloudbees.jenkins.plugins.sshagent.SSHAgentBuildWrapper"
    )
    xml_key = "user"

    user_list = list()
    if "users" in data:
        user_list += data["users"]
        if len(user_list) > 1:
            entry_xml = XML.SubElement(entry_xml, "credentialIds")
            xml_key = "string"
        if "user" in data:
            logger.warning(
                "Both 'users' and 'user' parameters specified for "
                "ssh-agent-credentials. 'users' is used, 'user' is "
                "ignored."
            )
    elif "user" in data:
        logger.warning(
            "The 'user' param has been deprecated, " "use the 'users' param instead."
        )
        user_list.append(data["user"])
    else:
        raise JenkinsJobsException(
            "Missing 'user' or 'users' parameter " "for ssh-agent-credentials"
        )

    for user in user_list:
        XML.SubElement(entry_xml, xml_key).text = user

    mapping = [("ignore-missing-credentials", "ignoreMissing", False)]
    helpers.convert_mapping_to_xml(entry_xml, data, mapping, fail_required=False)


def credentials_binding(registry, xml_parent, data):
    """yaml: credentials-binding
    Binds credentials to environment variables using the credentials binding
    plugin for jenkins.

    Requires the Jenkins :jenkins-plugins:`Credentials Binding Plugin
    <credentials-binding>` version 1.1 or greater.

    :arg list binding-type: List of each bindings to create.  Bindings may be
      of type `zip-file`, `file`, `username-password`, `text`,
      `username-password-separated` or `amazon-web-services`.
      username-password sets a variable to the username and password given in
      the credentials, separated by a colon.
      username-password-separated sets one variable to the username and one
      variable to the password given in the credentials.
      amazon-web-services sets one variable to the access key and one
      variable to the secret access key. Requires the
      :jenkins-plugins:`AWS Credentials Plugin <aws-credentials>`
      .

        :Parameters: * **credential-id** (`str`) UUID of the credential being
                       referenced
                     * **variable** (`str`) Environment variable where the
                       credential will be stored
                     * **username** (`str`) Environment variable for the
                       username (Required for binding-type
                       username-password-separated)
                     * **password** (`str`) Environment variable for the
                       password (Required for binding-type
                       username-password-separated)
                     * **access-key** (`str`) Environment variable for the
                       access key (Required for binding-type
                       amazon-web-services)
                     * **secret-key** (`str`) Environment variable for the
                       access secret key (Required for binding-type
                       amazon-web-services)
                     * **key-file-variable** (`str`) Environment variable
                       to be set to the temporary path of the SSH key
                       file during the build.
                     * **username-variable** (`str`) Environment variable
                       to be set to the username during
                       the build. (optional)
                     * **passphrase-variable** (`str`) Environment
                       variable to be set to the password
                       during the build. (optional)
                     * **keystore-variable** (`str`) Environment
                       variable to be set to the temporary
                       keystore location during the build.
                     * **password-variable** (`str`) Environment
                       variable to be set to the password
                       during the build.
                     * **alias-variable** (`str`) Environment variable
                       to be set to the keystore alias name
                       of the certificate during the build.

    Example:

    .. literalinclude::
            /../../tests/wrappers/fixtures/credentials_binding.yaml
            :language: yaml

    """
    entry_xml = xml_parent.find(
        "org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper"
    )
    if entry_xml is None:
        entry_xml = XML.SubElement(
            xml_parent,
            "org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper",
        )

    bindings_xml = entry_xml.find("bindings")
    if bindings_xml is None:
        bindings_xml = XML.SubElement(entry_xml, "bindings")

    binding_types = {
        "zip-file": "org.jenkinsci.plugins.credentialsbinding.impl." "ZipFileBinding",
        "file": "org.jenkinsci.plugins.credentialsbinding.impl.FileBinding",
        "username-password": "org.jenkinsci.plugins.credentialsbinding.impl."
        "UsernamePasswordBinding",
        "username-password-separated": "org.jenkinsci.plugins."
        "credentialsbinding.impl."
        "UsernamePasswordMultiBinding",
        "text": "org.jenkinsci.plugins.credentialsbinding.impl.StringBinding",
        "amazon-web-services": "com.cloudbees.jenkins.plugins.awscredentials"
        ".AmazonWebServicesCredentialsBinding",
        "ssh-user-private-key": "org.jenkinsci.plugins.credentialsbinding"
        ".impl.SSHUserPrivateKeyBinding",
        "docker-server-creds-binding": "org.jenkinsci.plugins.docker.commons"
        ".credentials.DockerServerCredentialsBinding",
        "cert-multi-binding": "org.jenkinsci.plugins.credentialsbinding"
        ".impl.CertificateMultiBinding",
    }
    for binding in data:
        for binding_type, params in binding.items():
            if binding_type not in binding_types.keys():
                raise JenkinsJobsException(
                    "binding-type must be one of %r" % binding_types.keys()
                )

            binding_xml = XML.SubElement(bindings_xml, binding_types[binding_type])
            if binding_type == "username-password-separated":
                mapping = [
                    ("username", "usernameVariable", None),
                    ("password", "passwordVariable", None),
                ]
                helpers.convert_mapping_to_xml(
                    binding_xml, params, mapping, fail_required=True
                )
            elif binding_type == "amazon-web-services":
                mapping = [
                    ("access-key", "accessKeyVariable", None),
                    ("secret-key", "secretKeyVariable", None),
                ]
                helpers.convert_mapping_to_xml(
                    binding_xml, params, mapping, fail_required=True
                )
            elif binding_type == "ssh-user-private-key":
                mapping = [
                    ("key-file-variable", "keyFileVariable", None),
                    ("username-variable", "usernameVariable", ""),
                    ("passphrase-variable", "passphraseVariable", ""),
                ]
                helpers.convert_mapping_to_xml(
                    binding_xml, params, mapping, fail_required=True
                )
            elif binding_type == "cert-multi-binding":
                mapping = [
                    ("keystore-variable", "keystoreVariable", None),
                    ("password-variable", "passwordVariable", None),
                    ("alias-variable", "aliasVariable", None),
                ]
                helpers.convert_mapping_to_xml(
                    binding_xml, params, mapping, fail_required=True
                )
            else:
                mapping = [("variable", "variable", None)]
                helpers.convert_mapping_to_xml(
                    binding_xml, params, mapping, fail_required=False
                )
            mapping = [("credential-id", "credentialsId", None)]
            helpers.convert_mapping_to_xml(
                binding_xml, params, mapping, fail_required=False
            )


def custom_tools(registry, xml_parent, data):
    """yaml: custom-tools
    Requires the Jenkins :jenkins-plugins:`Custom Tools Plugin
    <custom-tools-plugin>`.

    :arg list tools: List of custom tools to add
                     (optional)
    :arg bool skip-master-install: skips the install in top level matrix job
                                   (default 'false')
    :arg bool convert-homes-to-upper: Converts the home env vars to uppercase
                                      (default 'false')

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/custom-tools001.yaml
    """
    base = "com.cloudbees.jenkins.plugins.customtools"
    wrapper = XML.SubElement(xml_parent, base + ".CustomToolInstallWrapper")

    wrapper_tools = XML.SubElement(wrapper, "selectedTools")
    tools = data.get("tools", [])
    tool_node = base + ".CustomToolInstallWrapper_-SelectedTool"
    for tool in tools:
        tool_wrapper = XML.SubElement(wrapper_tools, tool_node)
        mapping = [("", "name", tool)]
        helpers.convert_mapping_to_xml(tool_wrapper, data, mapping, fail_required=True)

    opts = XML.SubElement(wrapper, "multiconfigOptions")
    mapping = [("skip-master-install", "skipMasterInstallation", False)]
    helpers.convert_mapping_to_xml(opts, data, mapping, fail_required=True)

    mapping = [("convert-homes-to-upper", "convertHomesToUppercase", False)]
    helpers.convert_mapping_to_xml(wrapper, data, mapping, fail_required=True)


def nodejs_installator(registry, xml_parent, data):
    """yaml: nodejs-installator
    Provides Jenkins integration for NodeJS & npm packages.

    Requires the Jenkins :jenkins-plugins:`NodeJS Plugin
    <nodejs>`.

    :arg str name: nodejs installation name (required)

    Example:

    .. literalinclude::
            /../../tests/wrappers/fixtures/nodejs-installator001.yaml
    """
    npm_node = XML.SubElement(
        xml_parent, "jenkins.plugins.nodejs." "NodeJSBuildWrapper"
    )

    version = registry.get_plugin_info("nodejs").get("version", "0")
    npm_node.set("plugin", "nodejs@" + version)
    mapping = [("name", "nodeJSInstallationName", None)]
    helpers.convert_mapping_to_xml(npm_node, data, mapping, fail_required=True)


def xvnc(registry, xml_parent, data):
    """yaml: xvnc
    Enable xvnc during the build.

    Requires the Jenkins :jenkins-plugins:`xvnc plugin <xvnc>`.

    :arg bool screenshot: Take screenshot upon build completion (default false)
    :arg bool xauthority: Create a dedicated Xauthority file per build (default
        true)

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/xvnc-full.yaml
       :language: yaml

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/xvnc-minimal.yaml
       :language: yaml
    """
    xwrapper = XML.SubElement(xml_parent, "hudson.plugins.xvnc.Xvnc")
    xwrapper.set("plugin", "xvnc")

    mapping = [
        ("screenshot", "takeScreenshot", False),
        ("xauthority", "useXauthority", True),
    ]
    helpers.convert_mapping_to_xml(xwrapper, data, mapping, fail_required=True)


def job_log_logger(registry, xml_parent, data):
    """yaml: job-log-logger
    Enable writing the job log to the underlying logging system.

    Requires the Jenkins :jenkins-plugins:`Job Log Logger plugin
    <job-log-logger-plugin>`.

    :arg bool suppress-empty: Suppress empty log messages (default true)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/job-log-logger001.yaml

    """
    top = XML.SubElement(
        xml_parent, "org.jenkins.ci.plugins.jobloglogger." "JobLogLoggerBuildWrapper"
    )
    mapping = [("suppress-empty", "suppressEmpty", True)]
    helpers.convert_mapping_to_xml(top, data, mapping, fail_required=True)


def xvfb(registry, xml_parent, data):
    """yaml: xvfb
    Enable xvfb during the build.

    Requires the Jenkins :jenkins-plugins:`Xvfb Plugin <xvfb>`.

    :arg str installation-name: The name of the Xvfb tool installation (default
        'default')
    :arg bool auto-display-name: Uses the -displayfd option of Xvfb by which it
        chooses it's own display name (default false)
    :arg str display-name: Ordinal of the display Xvfb will be running on, if
        left empty chosen based on current build executor number (default '')
    :arg str assigned-labels: If you want to start Xvfb only on specific nodes
        specify its name or label (default '')
    :arg bool parallel-build: When running multiple Jenkins nodes on the same
        machine this setting influences the display number generation (default
        false)
    :arg int timeout: A timeout of given seconds to wait before returning
        control to the job (default 0)
    :arg str screen: Resolution and color depth. (default '1024x768x24')
    :arg int display-name-offset: Offset for display names. (default 1)
    :arg str additional-options: Additional options to be added with the
        options above to the Xvfb command line (default '')
    :arg bool debug: If Xvfb output should appear in console log of this job
        (default false)
    :arg bool shutdown-with-build: Should the display be kept until the whole
        job ends (default false)

    Full Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/xvfb-full.yaml
       :language: yaml

    Minimal Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/xvfb-minimal.yaml
       :language: yaml
    """
    xwrapper = XML.SubElement(xml_parent, "org.jenkinsci.plugins.xvfb.XvfbBuildWrapper")

    mapping = [
        ("installation-name", "installationName", "default"),
        ("auto-display-name", "autoDisplayName", False),
        ("display-name", "displayName", ""),
        ("assigned-labels", "assignedLabels", ""),
        ("parallel-build", "parallelBuild", False),
        ("timeout", "timeout", 0),
        ("screen", "screen", "1024x768x24"),
        ("display-name-offset", "displayNameOffset", 1),
        ("additional-options", "additionalOptions", ""),
        ("debug", "debug", False),
        ("shutdown-with-build", "shutdownWithBuild", False),
    ]
    helpers.convert_mapping_to_xml(xwrapper, data, mapping, fail_required=True)


def android_emulator(registry, xml_parent, data):
    """yaml: android-emulator
    Automates many Android development tasks including SDK installation,
    build file generation, emulator creation and launch,
    APK (un)installation...

    Requires the Jenkins :jenkins-plugins:`Android Emulator Plugin
    <android-emulator>`.

    :arg str avd: Enter the name of an existing Android emulator configuration.
        If this is exclusive with the 'os' arg.
    :arg str os: Can be an OS version, target name or SDK add-on
    :arg str screen-density: Density in dots-per-inch (dpi) or as an alias,
        e.g. "160" or "mdpi". (default mdpi)
    :arg str screen-resolution: Can be either a named resolution or explicit
        size, e.g. "WVGA" or "480x800". (default WVGA)
    :arg str locale: Language and country pair. (default en_US)
    :arg str target-abi: Name of the ABI / system image to be used. (optional)
    :arg str sd-card: sd-card size e.g. "32M" or "10240K". (optional)
    :arg bool wipe: if true, the emulator will have its user data reset at
        start-up (default false)
    :arg bool show-window: if true, the Android emulator user interface will
        be displayed on screen during the build. (default false)
    :arg bool snapshot: Start emulator from stored state (default false)
    :arg bool delete: Delete Android emulator at the end of build
        (default false)
    :arg int startup-delay: Wait this many seconds before attempting
        to start the emulator (default 0)
    :arg str commandline-options: Will be given when starting the
        Android emulator executable (optional)
    :arg str exe: The emulator executable. (optional)
    :arg list hardware-properties: Dictionary of hardware properties. Allows
        you to override the default values for an AVD. (optional)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/android003.yaml
    """
    root = XML.SubElement(
        xml_parent, "hudson.plugins.android__emulator.AndroidEmulator"
    )

    if data.get("avd") and data.get("os"):
        raise JenkinsJobsException(
            "'avd' and 'os' options are " "exclusive, please pick one only"
        )

    if not data.get("avd") and not data.get("os"):
        raise JenkinsJobsException(
            "AndroidEmulator requires an AVD name or"
            "OS version to run: specify 'os' or 'avd'"
        )

    if data.get("avd"):
        XML.SubElement(root, "avdName").text = str(data["avd"])

    else:
        mapping = [
            ("os", "osVersion", None),
            ("screen-density", "screenDensity", "mdpi"),
            ("screen-resolution", "screenResolution", "WVGA"),
            ("locale", "deviceLocale", "en_US"),
            ("target-abi", "targetAbi", ""),
            ("sd-card", "sdCardSize", ""),
        ]
        helpers.convert_mapping_to_xml(root, data, mapping, fail_required=True)

    hardware = XML.SubElement(root, "hardwareProperties")
    for prop_name, prop_val in data.get("hardware-properties", {}).items():
        prop_node = XML.SubElement(
            hardware,
            "hudson.plugins.android__emulator" ".AndroidEmulator_-HardwareProperty",
        )
        mapping = [("", "key", prop_name), ("", "value", prop_val)]
        helpers.convert_mapping_to_xml(prop_node, data, mapping, fail_required=True)
    mapping = [
        ("wipe", "wipeData", False),
        ("show-window", "showWindow", False),
        ("snapshot", "useSnapshots", False),
        ("delete", "deleteAfterBuild", False),
        ("startup-delay", "startupDelay", 0),
        ("commandline-options", "commandLineOptions", ""),
        ("exe", "executable", ""),
    ]
    helpers.convert_mapping_to_xml(root, data, mapping, fail_required=True)


def artifactory_maven(registry, xml_parent, data):
    """yaml: artifactory-maven
    Wrapper for non-Maven projects.

    Requires the Jenkins :jenkins-plugins:`Artifactory Plugin <artifactory>`

    :arg str url: URL of the Artifactory server. e.g.
        https://jfrog.com/artifactory/ (default '')
    :arg str name: Artifactory user with permissions use for
        connected to the selected Artifactory Server
        (default '')
    :arg str repo-key: Name of the repository to search for
        artifact dependencies. Provide a single repo-key or provide
        separate release-repo-key and snapshot-repo-key.
    :arg str release-repo-key: Release repository name. Value of
        repo-key take priority over release-repo-key if provided.
    :arg str snapshot-repo-key: Snapshots repository name. Value of
        repo-key take priority over release-repo-key if provided.

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/artifactory001.yaml
       :language: yaml

    """

    artifactory = XML.SubElement(
        xml_parent, "org.jfrog.hudson.maven3.ArtifactoryMaven3NativeConfigurator"
    )

    # details
    details = XML.SubElement(artifactory, "details")
    helpers.artifactory_common_details(details, data)

    if "repo-key" in data:
        mapping = [("repo-key", "downloadRepositoryKey", None)]
    else:
        mapping = [
            ("snapshot-repo-key", "downloadSnapshotRepositoryKey", ""),
            ("release-repo-key", "downloadReleaseRepositoryKey", ""),
        ]
    helpers.convert_mapping_to_xml(details, data, mapping, fail_required=True)


def artifactory_generic(registry, xml_parent, data):
    """yaml: artifactory-generic
    Wrapper for non-Maven projects.

    Requires the Jenkins :jenkins-plugins:`Artifactory Plugin <artifactory>`

    :arg str url: URL of the Artifactory server. e.g.
        https://jfrog.com/artifactory/ (default '')
    :arg str name: Artifactory user with permissions use for
        connected to the selected Artifactory Server
        (default '')
    :arg str repo-key: Release repository name (plugin < 2.3.0) (default '')
    :arg str snapshot-repo-key: Snapshots repository name (plugin < 2.3.0)
        (default '')
    :arg str key-from-select: Repository key to use (plugin >= 2.3.0)
        (default '')
    :arg str key-from-text: Repository key to use that can be configured
        dynamically using Jenkins variables (plugin >= 2.3.0) (default '')
    :arg str upload-spec: File Spec schema for uploading files is as follows
        (default '')
    :arg str download-spec: File Spec schema for downloading
        files is as follows (default '')
    :arg str upload-spec-file: File location for uploading Spec schema
        (default '')
    :arg str download-spec-file: File location for downloading Spec schema
        (default '')
    :arg list deploy-pattern: List of patterns for mappings
        build artifacts to published artifacts. Supports Ant-style wildcards
        mapping to target directories. E.g.: */*.zip=>dir (default [])
    :arg list resolve-pattern: List of references to other
        artifacts that this build should use as dependencies.
    :arg list matrix-params: List of properties to attach to all deployed
        artifacts in addition to the default ones: build.name, build.number,
        and vcs.revision (default [])
    :arg bool deploy-build-info: Deploy jenkins build metadata with
        artifacts to Artifactory (default false)
    :arg bool env-vars-include: Include environment variables accessible by
        the build process. Jenkins-specific env variables are always included.
        Use the env-vars-include-patterns and env-vars-exclude-patterns to
        filter the environment variables published to artifactory.
        (default false)
    :arg list env-vars-include-patterns: List of environment variable patterns
        for including env vars as part of the published build info. Environment
        variables may contain the * and the ? wildcards (default [])
    :arg list env-vars-exclude-patterns: List of environment variable patterns
        that determine the env vars excluded from the published build info
        (default [])
    :arg bool discard-old-builds:
        Remove older build info from Artifactory (default false)
    :arg bool discard-build-artifacts:
        Remove older build artifacts from Artifactory (default false)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/artifactory002.yaml
       :language: yaml

    """

    use_specs = False
    artifactory = XML.SubElement(
        xml_parent, "org.jfrog.hudson.generic.ArtifactoryGenericConfigurator"
    )

    # details
    details = XML.SubElement(artifactory, "details")
    helpers.artifactory_common_details(details, data)

    # Get plugin information to maintain backwards compatibility
    info = registry.get_plugin_info("artifactory")
    # Note: Assume latest version of plugin is preferred config format
    version = pkg_resources.parse_version(info.get("version", str(sys.maxsize)))

    if version >= pkg_resources.parse_version("2.3.0"):
        deploy_release_repo = XML.SubElement(details, "deployReleaseRepository")
        mapping = [
            ("key-from-text", "keyFromText", ""),
            ("key-from-select", "keyFromSelect", ""),
            ("key-from-text", "dynamicMode", ""),
        ]
        helpers.convert_mapping_to_xml(
            deploy_release_repo, data, mapping, fail_required=False
        )
    else:
        mapping = [
            ("repo-key", "repositoryKey", ""),
            ("snapshot-repo-key", "snapshotsRepositoryKey", ""),
        ]
        helpers.convert_mapping_to_xml(details, data, mapping, fail_required=False)

    if "upload-spec" in data or "download-spec" in data:
        upload_spec = data.get("upload-spec", "")
        upl_spec_xml = XML.SubElement(artifactory, "uploadSpec")
        XML.SubElement(upl_spec_xml, "spec").text = upload_spec

        download_spec = data.get("download-spec", "")
        dnl_spec_xml = XML.SubElement(artifactory, "downloadSpec")
        XML.SubElement(dnl_spec_xml, "spec").text = download_spec
        use_specs = True

    if "upload-spec-file" in data or "download-spec-file" in data:
        upload_spec_file = data.get("upload-spec-file", "")
        upl_spec_xml = XML.SubElement(artifactory, "uploadSpec")
        XML.SubElement(upl_spec_xml, "filePath").text = upload_spec_file

        download_spec_file = data.get("download-spec-file", "")
        dnl_spec_xml = XML.SubElement(artifactory, "downloadSpec")
        XML.SubElement(dnl_spec_xml, "filePath").text = download_spec_file
        use_specs = True

    XML.SubElement(artifactory, "useSpecs").text = str(use_specs).lower()

    XML.SubElement(artifactory, "deployPattern").text = ",".join(
        data.get("deploy-pattern", [])
    )
    XML.SubElement(artifactory, "resolvePattern").text = ",".join(
        data.get("resolve-pattern", [])
    )
    XML.SubElement(artifactory, "matrixParams").text = ",".join(
        data.get("matrix-params", [])
    )
    mapping = [
        ("deploy-build-info", "deployBuildInfo", False),
        ("env-vars-include", "includeEnvVars", False),
        ("discard-old-builds", "discardOldBuilds", False),
        ("discard-build-artifacts", "discardBuildArtifacts", True),
    ]
    helpers.convert_mapping_to_xml(artifactory, data, mapping, fail_required=False)

    # envVarsPatterns
    helpers.artifactory_env_vars_patterns(artifactory, data)


def artifactory_maven_freestyle(registry, xml_parent, data):
    """yaml: artifactory-maven-freestyle
    Wrapper for Free Stype projects.

    Requires the Jenkins :jenkins-plugins:`Artifactory Plugin <artifactory>`

    :arg str url: URL of the Artifactory server. e.g.
        https://jfrog.com/artifactory/ (default '')
    :arg str name: Artifactory user with permissions use for
        connected to the selected Artifactory Server (default '')
    :arg str release-repo-key: Release repository name (default '')
    :arg str snapshot-repo-key: Snapshots repository name (default '')
    :arg bool publish-build-info: Push build metadata with artifacts
        (default false)
    :arg bool discard-old-builds:
        Remove older build info from Artifactory (default true)
    :arg bool discard-build-artifacts:
        Remove older build artifacts from Artifactory (default false)
    :arg bool include-env-vars: Include all environment variables
        accessible by the build process. Jenkins-specific env variables
        are always included (default false)
    :arg bool run-checks: Run automatic license scanning check after the
        build is complete (default false)
    :arg bool include-publish-artifacts: Include the build's published
        module artifacts in the license violation checks if they are
        also used as dependencies for other modules in this build
        (default false)
    :arg bool license-auto-discovery: Tells Artifactory not to try
        and automatically analyze and tag the build's dependencies
        with license information upon deployment (default true)
    :arg bool enable-issue-tracker-integration: When the Jenkins
        JIRA plugin is enabled, synchronize information about JIRA
        issues to Artifactory and attach issue information to build
        artifacts (default false)
    :arg bool aggregate-build-issues: When the Jenkins JIRA plugin
        is enabled, include all issues from previous builds up to the
        latest build status defined in "Aggregation Build Status"
        (default false)
    :arg bool filter-excluded-artifacts-from-build: Add the excluded
        files to the excludedArtifacts list and remove them from the
        artifacts list in the build info (default false)
    :arg str scopes:  A list of dependency scopes/configurations to run
        license violation checks on. If left empty all dependencies from
        all scopes will be checked (default '')
    :arg str violation-recipients: Recipients that need to be notified
        of license violations in the build info (default '')
    :arg list matrix-params: List of properties to attach to all
        deployed artifacts in addition to the default ones:
        build.name, build.number, and vcs.revision (default '')
    :arg str black-duck-app-name: The existing Black Duck Code Center
        application name (default '')
    :arg str black-duck-app-version: The existing Black Duck Code Center
        application version (default '')
    :arg str black-duck-report-recipients: Recipients that will be emailed
        a report after the automatic Black Duck Code Center compliance checks
        finished (default '')
    :arg str black-duck-scopes: A list of dependency scopes/configurations
        to run Black Duck Code Center compliance checks on. If left empty
        all dependencies from all scopes will be checked (default '')
    :arg bool black-duck-run-checks: Automatic Black Duck Code Center
        compliance checks will occur after the build completes
        (default false)
    :arg bool black-duck-include-published-artifacts: Include the build's
        published module artifacts in the license violation checks if they
        are also used as dependencies for other modules in this build
        (default false)
    :arg bool auto-create-missing-component-requests: Auto create
        missing components in Black Duck Code Center application after
        the build is completed and deployed in Artifactory
        (default true)
    :arg bool auto-discard-stale-component-requests: Auto discard
        stale components in Black Duck Code Center application after
        the build is completed and deployed in Artifactory
        (default true)
    :arg bool deploy-artifacts: Push artifacts to the Artifactory
        Server. The specific artifacts to push are controlled using
        the deployment-include-patterns and deployment-exclude-patterns.
        (default true)
    :arg list deployment-include-patterns: List of patterns for including
        build artifacts to publish to artifactory. (default[]')
    :arg list deployment-exclude-patterns: List of patterns
        for excluding artifacts from deployment to Artifactory
        (default [])
    :arg bool env-vars-include: Include environment variables
        accessible by the build process. Jenkins-specific env variables
        are always included. Environment variables can be filtered using
        the env-vars-include-patterns nad env-vars-exclude-patterns.
        (default false)
    :arg list env-vars-include-patterns: List of environment variable patterns
        that will be included as part of the published build info. Environment
        variables may contain the * and the ? wildcards (default [])
    :arg list env-vars-exclude-patterns: List of environment variable patterns
        that will be excluded from the published build info
        (default [])

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/artifactory003.yaml
       :language: yaml

    """

    artifactory = XML.SubElement(
        xml_parent, "org.jfrog.hudson.maven3.ArtifactoryMaven3Configurator"
    )

    # details
    details = XML.SubElement(artifactory, "details")
    helpers.artifactory_common_details(details, data)

    deploy_release = XML.SubElement(details, "deployReleaseRepository")
    helpers.artifactory_repository(deploy_release, data, "release")

    deploy_snapshot = XML.SubElement(details, "deploySnapshotRepository")
    helpers.artifactory_repository(deploy_snapshot, data, "snapshot")

    XML.SubElement(details, "stagingPlugin").text = data.get(
        "resolve-staging-plugin", ""
    )

    # resolverDetails
    resolver = XML.SubElement(artifactory, "resolverDetails")
    helpers.artifactory_common_details(resolver, data)

    resolve_snapshot = XML.SubElement(resolver, "resolveSnapshotRepository")
    helpers.artifactory_repository(resolve_snapshot, data, "snapshot")

    deploy_release = XML.SubElement(resolver, "resolveReleaseRepository")
    helpers.artifactory_repository(deploy_release, data, "release")

    XML.SubElement(resolver, "stagingPlugin").text = data.get(
        "resolve-staging-plugin", ""
    )

    # artifactDeploymentPatterns
    helpers.artifactory_deployment_patterns(artifactory, data)

    # envVarsPatterns
    helpers.artifactory_env_vars_patterns(artifactory, data)

    XML.SubElement(artifactory, "matrixParams").text = ",".join(
        data.get("matrix-params", [])
    )

    # optional__props
    helpers.artifactory_optional_props(artifactory, data, "wrappers")


def maven_release(registry, xml_parent, data):
    """yaml: maven-release
    Wrapper for Maven projects

    Requires the Jenkins :jenkins-plugins:`M2 Release Plugin <m2release>`

    :arg str release-goals: Release goals and options (default '')
    :arg str dry-run-goals: DryRun goals and options (default '')
    :arg int num-successful-builds: Number of successful release builds to keep
        (default 1)
    :arg bool select-custom-scm-comment-prefix: Preselect 'Specify custom SCM
        comment prefix' (default false)
    :arg bool select-append-jenkins-username: Preselect 'Append Jenkins
        Username' (default false)
    :arg bool select-scm-credentials: Preselect 'Specify SCM login/password'
        (default false)
    :arg str release-env-var: Release environment variable (default '')
    :arg str scm-user-env-var: SCM username environment variable (default '')
    :arg str scm-password-env-var: SCM password environment variable
        (default '')

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/maven-release001.yaml
       :language: yaml

    """
    mvn_release = XML.SubElement(
        xml_parent, "org.jvnet.hudson.plugins.m2release." "M2ReleaseBuildWrapper"
    )

    mapping = [
        ("release-goals", "releaseGoals", ""),
        ("dry-run-goals", "dryRunGoals", ""),
        ("num-successful-builds", "numberOfReleaseBuildsToKeep", 1),
        ("select-custom-scm-comment-prefix", "selectCustomScmCommentPrefix", False),
        ("select-append-jenkins-username", "selectAppendHudsonUsername", False),
        ("select-scm-credentials", "selectScmCredentials", False),
        ("release-env-var", "releaseEnvVar", ""),
        ("scm-user-env-var", "scmUserEnvVar", ""),
        ("scm-password-env-var", "scmPasswordEnvVar", ""),
    ]
    helpers.convert_mapping_to_xml(mvn_release, data, mapping, fail_required=True)


def version_number(parser, xml_parent, data):
    """yaml: version-number
    Generate a version number for the build using a format string. See the
    wiki page for more detailed descriptions of options.

    Requires the Jenkins :jenkins-plugins:`Version number plugin
    <versionnumber>`.

    :arg str variable-name: Name of environment variable to assign version
        number to (required)
    :arg str format-string: Format string used to generate version number
        (required)
    :arg str prefix-variable: Variable that contains version number prefix
        (optional)
    :arg bool skip-failed-builds: If the build fails, DO NOT increment any
        auto-incrementing component of the version number (default: false)
    :arg bool display-name: Use the version number for the build display
        name (default: false)
    :arg str start-date: The date the project began as a UTC timestamp
        (default 1970-1-1 00:00:00.0 UTC)
    :arg int builds-today: The number of builds that have been executed
        today (optional)
    :arg int builds-this-month: The number of builds that have been executed
        since the start of the month (optional)
    :arg int builds-this-year: The number of builds that have been executed
        since the start of the year (optional)
    :arg int builds-all-time: The number of builds that have been executed
        since the start of the project (optional)

    Example:

    .. literalinclude:: /../../tests/wrappers/fixtures/version-number001.yaml
       :language: yaml

    """
    version_number = XML.SubElement(
        xml_parent, "org.jvnet.hudson.tools.versionnumber.VersionNumberBuilder"
    )

    mapping = [
        # option, xml name, default value
        ("variable-name", "environmentVariableName", None),
        ("format-string", "versionNumberString", None),
        ("prefix-variable", "environmentPrefixVariable", ""),
        ("skip-failed-builds", "skipFailedBuilds", False),
        ("display-name", "useAsBuildDisplayName", False),
        ("start-date", "projectStartDate", "1970-1-1 00:00:00.0 UTC"),
        ("builds-today", "oBuildsToday", "-1"),
        ("builds-this-month", "oBuildsThisMonth", "-1"),
        ("builds-this-year", "oBuildsThisYear", "-1"),
        ("builds-all-time", "oBuildsAllTime", "-1"),
    ]

    helpers.convert_mapping_to_xml(version_number, data, mapping, fail_required=True)


def github_pull_request(parser, xml_parent, data):
    """yaml: github-pull-request
    Set GitHub commit status with custom context and message.

    Requires the Jenkins :jenkins-plugins:`GitHub Pull Request Builder Plugin
    <ghprb>`.

    :arg bool show-matrix-status: Only post commit status of parent matrix job
        (default false)
    :arg str status-context: The context to include on PR status comments
        (default '')
    :arg str triggered-status: The status message to set when the build has
        been triggered (default '')
    :arg str started-status: The status message to set when the build has
        been started (default '')
    :arg str status-url: The status URL to set (default '')
    :arg bool status-add-test-results: Add test result one-liner to status
        message (default false)
    :arg list statuses: List of custom statuses on the commit for when a build
        is completed

        :Status:
            * **message** (`str`) -- The message that is appended to a comment
              when a build finishes with the desired build status. If no status
              updates should be made when a build finishes with the indicated
              build status, use "--none--" to alert the trigger. (required)
            * **result** (`str`) -- Build result. Can be one of 'SUCCESS',
              'ERROR' or 'FAILURE'. (required)

    Minimal Example:

    .. literalinclude::
        /../../tests/wrappers/fixtures/github-pull-request-minimal.yaml
       :language: yaml

    Full Example:

    .. literalinclude::
        /../../tests/wrappers/fixtures/github-pull-request-full.yaml
       :language: yaml

    """
    ghprb = XML.SubElement(
        xml_parent, "org.jenkinsci.plugins.ghprb.upstream.GhprbUpstreamStatus"
    )

    mapping = [
        # option, xml name, default value
        ("show-matrix-status", "showMatrixStatus", False),
        ("status-context", "commitStatusContext", ""),
        ("triggered-status", "triggeredStatus", ""),
        ("started-status", "startedStatus", ""),
        ("status-url", "statusUrl", ""),
        ("status-add-test-results", "addTestResults", False),
    ]
    helpers.convert_mapping_to_xml(ghprb, data, mapping, fail_required=True)

    statuses = data.get("statuses", [])
    if statuses:
        status_mapping = [("message", "message", None), ("result", "result", "")]
        result_list = ["ERROR", "SUCCESS", "FAILURE"]

        completed_tag = XML.SubElement(ghprb, "completedStatus")
        for status in statuses:
            result = status.get("result", "")
            if result not in result_list:
                raise JenkinsJobsException(
                    "'result' must be one of: " + ", ".join(result_list)
                )

            result_tag = XML.SubElement(
                completed_tag,
                "org.jenkinsci.plugins.ghprb.extensions"
                ".comments.GhprbBuildResultMessage",
            )
            helpers.convert_mapping_to_xml(
                result_tag, status, status_mapping, fail_required=True
            )


class Wrappers(jenkins_jobs.modules.base.Base):
    sequence = 80

    component_type = "wrapper"
    component_list_type = "wrappers"

    def gen_xml(self, xml_parent, data):
        wrappers = XML.SubElement(xml_parent, "buildWrappers")

        for wrap in data.get("wrappers", []):
            self.registry.dispatch("wrapper", wrappers, wrap)