1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
|
/*
* Copyright 2000-2021 Vaadin Ltd.
*
* 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.
*/
package com.vaadin.data;
import java.io.Serializable;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.IdentityHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.function.BiFunction;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import com.googlecode.gentyref.GenericTypeReflector;
import com.vaadin.annotations.PropertyId;
import com.vaadin.data.HasValue.ValueChangeEvent;
import com.vaadin.data.HasValue.ValueChangeListener;
import com.vaadin.data.converter.StringToIntegerConverter;
import com.vaadin.data.validator.BeanValidator;
import com.vaadin.event.EventRouter;
import com.vaadin.server.AbstractErrorMessage.ContentMode;
import com.vaadin.server.ErrorMessage;
import com.vaadin.server.SerializableFunction;
import com.vaadin.server.SerializablePredicate;
import com.vaadin.server.Setter;
import com.vaadin.server.UserError;
import com.vaadin.shared.Registration;
import com.vaadin.shared.ui.ErrorLevel;
import com.vaadin.ui.AbstractComponent;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.UI;
import com.vaadin.util.ReflectTools;
/**
* Connects one or more {@code Field} components to properties of a backing data
* type such as a bean type. With a binder, input components can be grouped
* together into forms to easily create and update business objects with little
* explicit logic needed to move data between the UI and the data layers of the
* application.
* <p>
* A binder is a collection of <i>bindings</i>, each representing the mapping of
* a single field, through converters and validators, to a backing property.
* <p>
* A binder instance can be bound to a single bean instance at a time, but can
* be rebound as needed. This allows usage patterns like a <i>master-details</i>
* view, where a select component is used to pick the bean to edit.
* <p>
* Bean level validators can be added using the
* {@link #withValidator(Validator)} method and will be run on the bound bean
* once it has been updated from the values of the bound fields. Bean level
* validators are also run as part of {@link #writeBean(Object)} and
* {@link #writeBeanIfValid(Object)} if all field level validators pass.
* <p>
* Note: For bean level validators, the bean must be updated before the
* validators are run. If a bean level validator fails in
* {@link #writeBean(Object)} or {@link #writeBeanIfValid(Object)}, the bean
* will be reverted to the previous state before returning from the method. You
* should ensure that the getters/setters in the bean do not have side effects.
* <p>
* Unless otherwise specified, {@code Binder} method arguments cannot be null.
*
* @author Vaadin Ltd.
*
* @param <BEAN>
* the bean type
*
* @see BindingBuilder
* @see Binding
* @see HasValue
*
* @since 8.0
*/
public class Binder<BEAN> implements Serializable {
/**
* Represents the binding between a field and a data property.
*
* @param <BEAN>
* the bean type
* @param <TARGET>
* the target data type of the binding, matches the field type
* unless a converter has been set
*
* @see Binder#forField(HasValue)
*/
public interface Binding<BEAN, TARGET> extends Serializable {
/**
* Gets the field the binding uses.
*
* @return the field for the binding
*/
public HasValue<?> getField();
/**
* Validates the field value and returns a {@code ValidationStatus}
* instance representing the outcome of the validation. This method is a
* short-hand for calling {@link #validate(boolean)} with
* {@code fireEvent} {@code true}.
*
* @see #validate(boolean)
* @see Binder#validate()
* @see Validator#apply(Object, ValueContext)
*
* @return the validation result.
*/
public default BindingValidationStatus<TARGET> validate() {
return validate(true);
}
/**
* Validates the field value and returns a {@code ValidationStatus}
* instance representing the outcome of the validation.
*
* <strong>Note:</strong> Calling this method will not trigger the value
* update in the bean automatically. This method will attempt to
* temporarily apply all current changes to the bean and run full bean
* validation for it. The changes are reverted after bean validation.
*
* @see #validate()
* @see Binder#validate()
*
* @param fireEvent
* {@code true} to fire status event; {@code false} to not
* @return the validation result.
*
* @since 8.2
*/
public BindingValidationStatus<TARGET> validate(boolean fireEvent);
/**
* Gets the validation status handler for this Binding.
*
* @return the validation status handler for this binding
*
* @since 8.2
*/
public BindingValidationStatusHandler getValidationStatusHandler();
/**
* Unbinds the binding from its respective {@code Binder} Removes any
* {@code ValueChangeListener} {@code Registration} from associated
* {@code HasValue}.
*
* @since 8.2
*/
public void unbind();
/**
* Reads the value from given item and stores it to the bound field.
*
* @param bean
* the bean to read from
*
* @since 8.2
*/
public void read(BEAN bean);
/**
* Sets the read-only status on for this Binding. Setting a Binding
* read-only will mark the field read-only and not write any values from
* the fields to the bean.
* <p>
* This helper method is the preferred way to control the read-only
* state of the bound field.
*
* @param readOnly
* {@code true} to set binding read-only; {@code false} to
* enable writes
* @since 8.4
* @throws IllegalStateException
* if trying to make binding read-write and the setter is
* {@code null}
*/
public void setReadOnly(boolean readOnly);
/**
* Gets the current read-only status for this Binding.
*
* @see #setReadOnly(boolean)
*
* @return {@code true} if read-only; {@code false} if not
* @since 8.4
*/
public boolean isReadOnly();
/**
* Gets the getter associated with this Binding.
*
* @return the getter
* @since 8.4
*/
public ValueProvider<BEAN, TARGET> getGetter();
/**
* Gets the setter associated with this Binding.
*
* @return the setter
* @since 8.4
*/
public Setter<BEAN, TARGET> getSetter();
/**
* Enable or disable asRequired validator. The validator is enabled by
* default.
*
* @see #asRequired(String)
* @see #asRequired(ErrorMessageProvider)
*
* @param asRequiredEnabled
* {@code false} if asRequired validator should be disabled,
* {@code true} otherwise (default)
*
* @since 8.10
*/
public void setAsRequiredEnabled(boolean asRequiredEnabled);
/**
* Returns whether asRequired validator is currently enabled or not.
*
* @see #asRequired(String)
* @see #asRequired(ErrorMessageProvider)
*
* @return {@code false} if asRequired validator is disabled
* {@code true} otherwise (default)
*
* @since 8.10
*/
public boolean isAsRequiredEnabled();
/**
* Define whether validators are disabled or enabled for this
* specific binding.
*
* @param validatorsDisabled A boolean value
*
* @since 8.11
*/
public void setValidatorsDisabled(boolean validatorsDisabled);
/**
* Returns if validators are currently disabled or not
*
* @return A boolean value
*
* @since 8.11
*/
public boolean isValidatorsDisabled();
}
/**
* Creates a binding between a field and a data property.
*
* @param <BEAN>
* the bean type
* @param <TARGET>
* the target data type of the binding, matches the field type
* until a converter has been set
*
* @see Binder#forField(HasValue)
*/
public interface BindingBuilder<BEAN, TARGET> extends Serializable {
/**
* Gets the field the binding is being built for.
*
* @return the field this binding is being built for
*/
public HasValue<?> getField();
/**
* Completes this binding using the given getter and setter functions
* representing a backing bean property. The functions are used to
* update the field value from the property and to store the field value
* to the property, respectively.
* <p>
* When a bean is bound with {@link Binder#setBean(BEAN)}, the field
* value is set to the return value of the given getter. The property
* value is then updated via the given setter whenever the field value
* changes. The setter may be null; in that case the property value is
* never updated and the binding is said to be <i>read-only</i>.
* <p>
* If the Binder is already bound to some bean, the newly bound field is
* associated with the corresponding bean property as described above.
* <p>
* The getter and setter can be arbitrary functions, for instance
* implementing user-defined conversion or validation. However, in the
* most basic use case you can simply pass a pair of method references
* to this method as follows:
*
* <pre>
* class Person {
* public String getName() { ... }
* public void setName(String name) { ... }
* }
*
* TextField nameField = new TextField();
* binder.forField(nameField).bind(Person::getName, Person::setName);
* </pre>
*
* <p>
* <strong>Note:</strong> when a {@code null} setter is given the field
* will be marked as read-only by invoking
* {@link HasValue#setReadOnly(boolean)}.
*
* @param getter
* the function to get the value of the property to the
* field, not null
* @param setter
* the function to write the field value to the property or
* null if read-only
* @return the newly created binding
* @throws IllegalStateException
* if {@code bind} has already been called on this binding
*/
public Binding<BEAN, TARGET> bind(ValueProvider<BEAN, TARGET> getter,
Setter<BEAN, TARGET> setter);
/**
* Completes this binding by connecting the field to the property with
* the given name. The getter and setter of the property are looked up
* using a {@link PropertySet}.
* <p>
* For a <code>Binder</code> created using the
* {@link Binder#Binder(Class)} constructor, introspection will be used
* to find a Java Bean property. If a JSR-303 bean validation
* implementation is present on the classpath, a {@link BeanValidator}
* is also added to the binding.
* <p>
* The property must have an accessible getter method. It need not have
* an accessible setter; in that case the property value is never
* updated and the binding is said to be <i>read-only</i>.
*
* <p>
* <strong>Note:</strong> when the binding is <i>read-only</i> the field
* will be marked as read-only by invoking
* {@link HasValue#setReadOnly(boolean)}.
*
* @param propertyName
* the name of the property to bind, not null
* @return the newly created binding
*
* @throws IllegalArgumentException
* if the property name is invalid
* @throws IllegalArgumentException
* if the property has no accessible getter
* @throws IllegalStateException
* if the binder is not configured with an appropriate
* {@link PropertySet}
*
* @see Binder.BindingBuilder#bind(ValueProvider, Setter)
*/
public Binding<BEAN, TARGET> bind(String propertyName);
/**
* Adds a validator to this binding. Validators are applied, in
* registration order, when the field value is written to the backing
* property. If any validator returns a failure, the property value is
* not updated.
*
* @see #withValidator(SerializablePredicate, String)
* @see #withValidator(SerializablePredicate, ErrorMessageProvider)
*
* @param validator
* the validator to add, not null
* @return this binding, for chaining
* @throws IllegalStateException
* if {@code bind} has already been called
*/
public BindingBuilder<BEAN, TARGET> withValidator(
Validator<? super TARGET> validator);
/**
* A convenience method to add a validator to this binding using the
* {@link Validator#from(SerializablePredicate, String)} factory method.
* <p>
* Validators are applied, in registration order, when the field value
* is written to the backing property. If any validator returns a
* failure, the property value is not updated.
*
* @see #withValidator(Validator)
* @see #withValidator(SerializablePredicate, String, ErrorLevel)
* @see #withValidator(SerializablePredicate, ErrorMessageProvider)
* @see Validator#from(SerializablePredicate, String)
*
* @param predicate
* the predicate performing validation, not null
* @param message
* the error message to report in case validation failure
* @return this binding, for chaining
* @throws IllegalStateException
* if {@code bind} has already been called
*/
public default BindingBuilder<BEAN, TARGET> withValidator(
SerializablePredicate<? super TARGET> predicate,
String message) {
return withValidator(Validator.from(predicate, message));
}
/**
* A convenience method to add a validator to this binding using the
* {@link Validator#from(SerializablePredicate, String, ErrorLevel)}
* factory method.
* <p>
* Validators are applied, in registration order, when the field value
* is written to the backing property. If any validator returns a
* failure, the property value is not updated.
*
* @see #withValidator(Validator)
* @see #withValidator(SerializablePredicate, String)
* @see #withValidator(SerializablePredicate, ErrorMessageProvider,
* ErrorLevel)
* @see Validator#from(SerializablePredicate, String)
*
* @param predicate
* the predicate performing validation, not null
* @param message
* the error message to report in case validation failure
* @param errorLevel
* the error level for failures from this validator, not null
* @return this binding, for chaining
* @throws IllegalStateException
* if {@code bind} has already been called
*
* @since 8.2
*/
public default BindingBuilder<BEAN, TARGET> withValidator(
SerializablePredicate<? super TARGET> predicate, String message,
ErrorLevel errorLevel) {
return withValidator(
Validator.from(predicate, message, errorLevel));
}
/**
* A convenience method to add a validator to this binding using the
* {@link Validator#from(SerializablePredicate, ErrorMessageProvider)}
* factory method.
* <p>
* Validators are applied, in registration order, when the field value
* is written to the backing property. If any validator returns a
* failure, the property value is not updated.
*
* @see #withValidator(Validator)
* @see #withValidator(SerializablePredicate, String)
* @see #withValidator(SerializablePredicate, ErrorMessageProvider,
* ErrorLevel)
* @see Validator#from(SerializablePredicate, ErrorMessageProvider)
*
* @param predicate
* the predicate performing validation, not null
* @param errorMessageProvider
* the provider to generate error messages, not null
* @return this binding, for chaining
* @throws IllegalStateException
* if {@code bind} has already been called
*/
public default BindingBuilder<BEAN, TARGET> withValidator(
SerializablePredicate<? super TARGET> predicate,
ErrorMessageProvider errorMessageProvider) {
return withValidator(
Validator.from(predicate, errorMessageProvider));
}
/**
* A convenience method to add a validator to this binding using the
* {@link Validator#from(SerializablePredicate, ErrorMessageProvider, ErrorLevel)}
* factory method.
* <p>
* Validators are applied, in registration order, when the field value
* is written to the backing property. If any validator returns a
* failure, the property value is not updated.
*
* @see #withValidator(Validator)
* @see #withValidator(SerializablePredicate, String, ErrorLevel)
* @see #withValidator(SerializablePredicate, ErrorMessageProvider)
* @see Validator#from(SerializablePredicate, ErrorMessageProvider,
* ErrorLevel)
*
* @param predicate
* the predicate performing validation, not null
* @param errorMessageProvider
* the provider to generate error messages, not null
* @param errorLevel
* the error level for failures from this validator, not null
* @return this binding, for chaining
* @throws IllegalStateException
* if {@code bind} has already been called
*
* @since 8.2
*/
public default BindingBuilder<BEAN, TARGET> withValidator(
SerializablePredicate<? super TARGET> predicate,
ErrorMessageProvider errorMessageProvider,
ErrorLevel errorLevel) {
return withValidator(Validator.from(predicate, errorMessageProvider,
errorLevel));
}
/**
* Maps the binding to another data type using the given
* {@link Converter}.
* <p>
* A converter is capable of converting between a presentation type,
* which must match the current target data type of the binding, and a
* model type, which can be any data type and becomes the new target
* type of the binding. When invoking
* {@link #bind(ValueProvider, Setter)}, the target type of the binding
* must match the getter/setter types.
* <p>
* For instance, a {@code TextField} can be bound to an integer-typed
* property using an appropriate converter such as a
* {@link StringToIntegerConverter}.
*
* @param <NEWTARGET>
* the type to convert to
* @param converter
* the converter to use, not null
* @return a new binding with the appropriate type
* @throws IllegalStateException
* if {@code bind} has already been called
*/
public <NEWTARGET> BindingBuilder<BEAN, NEWTARGET> withConverter(
Converter<TARGET, NEWTARGET> converter);
/**
* Maps the binding to another data type using the mapping functions and
* a possible exception as the error message.
* <p>
* The mapping functions are used to convert between a presentation
* type, which must match the current target data type of the binding,
* and a model type, which can be any data type and becomes the new
* target type of the binding. When invoking
* {@link #bind(ValueProvider, Setter)}, the target type of the binding
* must match the getter/setter types.
* <p>
* For instance, a {@code TextField} can be bound to an integer-typed
* property using appropriate functions such as:
* <code>withConverter(Integer::valueOf, String::valueOf);</code>
*
* @param <NEWTARGET>
* the type to convert to
* @param toModel
* the function which can convert from the old target type to
* the new target type
* @param toPresentation
* the function which can convert from the new target type to
* the old target type
* @return a new binding with the appropriate type
* @throws IllegalStateException
* if {@code bind} has already been called
*/
public default <NEWTARGET> BindingBuilder<BEAN, NEWTARGET> withConverter(
SerializableFunction<TARGET, NEWTARGET> toModel,
SerializableFunction<NEWTARGET, TARGET> toPresentation) {
return withConverter(Converter.from(toModel, toPresentation,
exception -> exception.getMessage()));
}
/**
* Maps the binding to another data type using the mapping functions and
* the given error error message if a value cannot be converted to the
* new target type.
* <p>
* The mapping functions are used to convert between a presentation
* type, which must match the current target data type of the binding,
* and a model type, which can be any data type and becomes the new
* target type of the binding. When invoking
* {@link #bind(ValueProvider, Setter)}, the target type of the binding
* must match the getter/setter types.
* <p>
* For instance, a {@code TextField} can be bound to an integer-typed
* property using appropriate functions such as:
* <code>withConverter(Integer::valueOf, String::valueOf);</code>
*
* @param <NEWTARGET>
* the type to convert to
* @param toModel
* the function which can convert from the old target type to
* the new target type
* @param toPresentation
* the function which can convert from the new target type to
* the old target type
* @param errorMessage
* the error message to use if conversion using
* <code>toModel</code> fails
* @return a new binding with the appropriate type
* @throws IllegalStateException
* if {@code bind} has already been called
*/
public default <NEWTARGET> BindingBuilder<BEAN, NEWTARGET> withConverter(
SerializableFunction<TARGET, NEWTARGET> toModel,
SerializableFunction<NEWTARGET, TARGET> toPresentation,
String errorMessage) {
return withConverter(Converter.from(toModel, toPresentation,
exception -> errorMessage));
}
/**
* Maps binding value {@code null} to given null representation and back
* to {@code null} when converting back to model value.
*
* @param nullRepresentation
* the value to use instead of {@code null}
* @return a new binding with null representation handling.
*/
public default BindingBuilder<BEAN, TARGET> withNullRepresentation(
TARGET nullRepresentation) {
return withConverter(
fieldValue -> Objects.equals(fieldValue, nullRepresentation)
? null
: fieldValue,
modelValue -> Objects.isNull(modelValue)
? nullRepresentation
: modelValue);
}
/**
* Sets the given {@code label} to show an error message if validation
* fails.
* <p>
* The validation state of each field is updated whenever the user
* modifies the value of that field. The validation state is by default
* shown using {@link AbstractComponent#setComponentError} which is used
* by the layout that the field is shown in. Most built-in layouts will
* show this as a red exclamation mark icon next to the component, so
* that hovering or tapping the icon shows a tooltip with the message
* text.
* <p>
* This method allows to customize the way a binder displays error
* messages to get more flexibility than what
* {@link AbstractComponent#setComponentError} provides (it replaces the
* default behavior).
* <p>
* This is just a shorthand for
* {@link #withValidationStatusHandler(BindingValidationStatusHandler)}
* method where the handler instance hides the {@code label} if there is
* no error and shows it with validation error message if validation
* fails. It means that it cannot be called after
* {@link #withValidationStatusHandler(BindingValidationStatusHandler)}
* method call or
* {@link #withValidationStatusHandler(BindingValidationStatusHandler)}
* after this method call.
*
* @see #withValidationStatusHandler(BindingValidationStatusHandler)
* @see AbstractComponent#setComponentError(ErrorMessage)
* @param label
* label to show validation status for the field
* @return this binding, for chaining
*/
public default BindingBuilder<BEAN, TARGET> withStatusLabel(
Label label) {
return withValidationStatusHandler(status -> {
label.setValue(status.getMessage().orElse(""));
// Only show the label when validation has failed
label.setVisible(status.isError());
});
}
/**
* Sets a {@link BindingValidationStatusHandler} to track validation
* status changes.
* <p>
* The validation state of each field is updated whenever the user
* modifies the value of that field. The validation state is by default
* shown using {@link AbstractComponent#setComponentError} which is used
* by the layout that the field is shown in. Most built-in layouts will
* show this as a red exclamation mark icon next to the component, so
* that hovering or tapping the icon shows a tooltip with the message
* text.
* <p>
* This method allows to customize the way a binder displays error
* messages to get more flexibility than what
* {@link AbstractComponent#setComponentError} provides (it replaces the
* default behavior).
* <p>
* The method may be called only once. It means there is no chain unlike
* {@link #withValidator(Validator)} or
* {@link #withConverter(Converter)}. Also it means that the shorthand
* method {@link #withStatusLabel(Label)} also may not be called after
* this method.
*
* @see #withStatusLabel(Label)
* @see AbstractComponent#setComponentError(ErrorMessage)
* @param handler
* status change handler
* @return this binding, for chaining
*/
public BindingBuilder<BEAN, TARGET> withValidationStatusHandler(
BindingValidationStatusHandler handler);
/**
* Sets the field to be required. This means two things:
* <ol>
* <li>the required indicator will be displayed for this field</li>
* <li>the field value is validated for not being empty, i.e. that the
* field's value is not equal to what {@link HasValue#getEmptyValue()}
* returns</li>
* </ol>
* <p>
* For localizing the error message, use
* {@link #asRequired(ErrorMessageProvider)}.
*
* @see #asRequired(ErrorMessageProvider)
* @see HasValue#setRequiredIndicatorVisible(boolean)
* @see HasValue#isEmpty()
* @param errorMessage
* the error message to show for the invalid value
* @return this binding, for chaining
*/
public default BindingBuilder<BEAN, TARGET> asRequired(
String errorMessage) {
return asRequired(context -> errorMessage);
}
/**
* Sets the field to be required. This means two things:
* <ol>
* <li>the required indicator will be displayed for this field</li>
* <li>the field value is validated for not being empty, i.e. that the
* field's value is not equal to what {@link HasValue#getEmptyValue()}
* returns</li>
* </ol>
* <p>
* For setting an error message, use {@link #asRequired(String)}.
* <p>
* For localizing the error message, use
* {@link #asRequired(ErrorMessageProvider)}.
*
* @see #asRequired(String)
* @see #asRequired(ErrorMessageProvider)
* @see HasValue#setRequiredIndicatorVisible(boolean)
* @see HasValue#isEmpty()
* @return this binding, for chaining
* @since 8.2
*/
public default BindingBuilder<BEAN, TARGET> asRequired() {
return asRequired(context -> "");
}
/**
* Sets the field to be required. This means two things:
* <ol>
* <li>the required indicator will be displayed for this field</li>
* <li>the field value is validated for not being empty, i.e. that the
* field's value is not equal to what {@link HasValue#getEmptyValue()}
* returns</li>
* </ol>
*
* @see HasValue#setRequiredIndicatorVisible(boolean)
* @see HasValue#isEmpty()
* @param errorMessageProvider
* the provider for localized validation error message
* @return this binding, for chaining
*/
public BindingBuilder<BEAN, TARGET> asRequired(
ErrorMessageProvider errorMessageProvider);
/**
* Sets the field to be required and delegates the required check to a
* custom validator. This means two things:
* <ol>
* <li>the required indicator will be displayed for this field</li>
* <li>the field value is validated by {@code requiredValidator}</li>
* </ol>
*
* @see HasValue#setRequiredIndicatorVisible(boolean)
* @param requiredValidator
* validator responsible for the required check
* @return this binding, for chaining
* @since 8.4
*/
public BindingBuilder<BEAN, TARGET> asRequired(
Validator<TARGET> requiredValidator);
}
/**
* An internal implementation of {@code BindingBuilder}.
*
* @param <BEAN>
* the bean type, must match the Binder bean type
* @param <FIELDVALUE>
* the value type of the field
* @param <TARGET>
* the target data type of the binding, matches the field type
* until a converter has been set
*/
protected static class BindingBuilderImpl<BEAN, FIELDVALUE, TARGET>
implements BindingBuilder<BEAN, TARGET> {
private Binder<BEAN> binder;
private final HasValue<FIELDVALUE> field;
private BindingValidationStatusHandler statusHandler;
private boolean isStatusHandlerChanged;
private Binding<BEAN, TARGET> binding;
private boolean bound;
/**
* Contains all converters and validators chained together in the
* correct order.
*/
private Converter<FIELDVALUE, ?> converterValidatorChain;
private boolean asRequiredSet;
/**
* Creates a new binding builder associated with the given field.
* Initializes the builder with the given converter chain and status
* change handler.
*
* @param binder
* the binder this instance is connected to, not null
* @param field
* the field to bind, not null
* @param converterValidatorChain
* the converter/validator chain to use, not null
* @param statusHandler
* the handler to track validation status, not null
*/
protected BindingBuilderImpl(Binder<BEAN> binder,
HasValue<FIELDVALUE> field,
Converter<FIELDVALUE, TARGET> converterValidatorChain,
BindingValidationStatusHandler statusHandler) {
this.field = field;
this.binder = binder;
this.converterValidatorChain = converterValidatorChain;
this.statusHandler = statusHandler;
}
@Override
public Binding<BEAN, TARGET> bind(ValueProvider<BEAN, TARGET> getter,
Setter<BEAN, TARGET> setter) {
checkUnbound();
Objects.requireNonNull(getter, "getter cannot be null");
BindingImpl<BEAN, FIELDVALUE, TARGET> binding = new BindingImpl<>(
this, getter, setter);
getBinder().bindings.add(binding);
if (getBinder().getBean() != null) {
binding.initFieldValue(getBinder().getBean(), true);
}
if (setter == null) {
binding.getField().setReadOnly(true);
}
getBinder().fireStatusChangeEvent(false);
bound = true;
getBinder().incompleteBindings.remove(getField());
this.binding = binding;
return binding;
}
@Override
@SuppressWarnings({ "unchecked", "rawtypes" })
public Binding<BEAN, TARGET> bind(String propertyName) {
Objects.requireNonNull(propertyName,
"Property name cannot be null");
checkUnbound();
PropertyDefinition<BEAN, ?> definition = getBinder().propertySet
.getProperty(propertyName)
.orElseThrow(() -> new IllegalArgumentException(
"Could not resolve property name " + propertyName
+ " from " + getBinder().propertySet));
ValueProvider<BEAN, ?> getter = definition.getGetter();
Setter<BEAN, ?> setter = definition.getSetter().orElse(null);
if (setter == null) {
getLogger().fine(() -> propertyName
+ " does not have an accessible setter");
}
BindingBuilder<BEAN, ?> finalBinding = withConverter(
createConverter(definition.getType()), false);
finalBinding = getBinder().configureBinding(finalBinding,
definition);
try {
Binding binding = ((BindingBuilder) finalBinding).bind(getter,
setter);
getBinder().boundProperties.put(propertyName, binding);
this.binding = binding;
return binding;
} finally {
getBinder().incompleteMemberFieldBindings.remove(getField());
}
}
@SuppressWarnings("unchecked")
private Converter<TARGET, Object> createConverter(Class<?> getterType) {
return Converter.from(fieldValue -> getterType.cast(fieldValue),
propertyValue -> (TARGET) propertyValue, exception -> {
throw new RuntimeException(exception);
});
}
@Override
public BindingBuilder<BEAN, TARGET> withValidator(
Validator<? super TARGET> validator) {
checkUnbound();
Objects.requireNonNull(validator, "validator cannot be null");
Validator<? super TARGET> wrappedValidator = ((value, context) -> {
if (getBinder().isValidatorsDisabled() ||
(binding != null && binding.isValidatorsDisabled())) {
return ValidationResult.ok();
} else {
return validator.apply(value, context);
}
});
converterValidatorChain = ((Converter<FIELDVALUE, TARGET>) converterValidatorChain)
.chain(new ValidatorAsConverter<>(wrappedValidator));
return this;
}
@Override
public <NEWTARGET> BindingBuilder<BEAN, NEWTARGET> withConverter(
Converter<TARGET, NEWTARGET> converter) {
return withConverter(converter, true);
}
@Override
public BindingBuilder<BEAN, TARGET> withValidationStatusHandler(
BindingValidationStatusHandler handler) {
checkUnbound();
Objects.requireNonNull(handler, "handler cannot be null");
if (isStatusHandlerChanged) {
throw new IllegalStateException("A "
+ BindingValidationStatusHandler.class.getSimpleName()
+ " has already been set");
}
isStatusHandlerChanged = true;
statusHandler = handler;
return this;
}
@Override
public BindingBuilder<BEAN, TARGET> asRequired(
ErrorMessageProvider errorMessageProvider) {
return asRequired(Validator.from(
value -> !Objects.equals(value, field.getEmptyValue()),
errorMessageProvider));
}
@Override
public BindingBuilder<BEAN, TARGET> asRequired(
Validator<TARGET> customRequiredValidator) {
checkUnbound();
this.asRequiredSet = true;
field.setRequiredIndicatorVisible(true);
return withValidator((value, context) -> {
if (!field.isRequiredIndicatorVisible()) {
return ValidationResult.ok();
} else {
return customRequiredValidator.apply(value, context);
}
});
}
/**
* Implements {@link #withConverter(Converter)} method with additional
* possibility to disable (reset) default null representation converter.
* <p>
* The method {@link #withConverter(Converter)} calls this method with
* {@code true} provided as the second argument value.
*
* @see #withConverter(Converter)
*
* @param converter
* the converter to use, not null
* @param resetNullRepresentation
* if {@code true} then default null representation will be
* deactivated (if not yet), otherwise it won't be removed
* @return a new binding with the appropriate type
* @param <NEWTARGET>
* the type to convert to
* @throws IllegalStateException
* if {@code bind} has already been called
*/
protected <NEWTARGET> BindingBuilder<BEAN, NEWTARGET> withConverter(
Converter<TARGET, NEWTARGET> converter,
boolean resetNullRepresentation) {
checkUnbound();
Objects.requireNonNull(converter, "converter cannot be null");
if (resetNullRepresentation) {
getBinder().initialConverters.get(field).setIdentity();
}
converterValidatorChain = ((Converter<FIELDVALUE, TARGET>) converterValidatorChain)
.chain(converter);
return (BindingBuilder<BEAN, NEWTARGET>) this;
}
/**
* Returns the {@code Binder} connected to this {@code Binding}
* instance.
*
* @return the binder
*/
protected Binder<BEAN> getBinder() {
return binder;
}
/**
* Throws if this binding is already completed and cannot be modified
* anymore.
*
* @throws IllegalStateException
* if this binding is already bound
*/
protected void checkUnbound() {
if (bound) {
throw new IllegalStateException(
"cannot modify binding: already bound to a property");
}
}
@Override
public HasValue<FIELDVALUE> getField() {
return field;
}
}
/**
* An internal implementation of {@code Binding}.
*
* @param <BEAN>
* the bean type, must match the Binder bean type
* @param <FIELDVALUE>
* the value type of the field
* @param <TARGET>
* the target data type of the binding, matches the field type
* unless a converter has been set
*/
protected static class BindingImpl<BEAN, FIELDVALUE, TARGET>
implements Binding<BEAN, TARGET> {
private Binder<BEAN> binder;
private HasValue<FIELDVALUE> field;
private final BindingValidationStatusHandler statusHandler;
private final ValueProvider<BEAN, TARGET> getter;
private final Setter<BEAN, TARGET> setter;
private boolean readOnly;
private Registration onValueChange;
private boolean valueInit = false;
/**
* Contains all converters and validators chained together in the
* correct order.
*/
private final Converter<FIELDVALUE, TARGET> converterValidatorChain;
private boolean asRequiredSet;
private boolean validatorsDisabled = false;
public BindingImpl(BindingBuilderImpl<BEAN, FIELDVALUE, TARGET> builder,
ValueProvider<BEAN, TARGET> getter,
Setter<BEAN, TARGET> setter) {
this.binder = builder.getBinder();
this.field = builder.field;
this.statusHandler = builder.statusHandler;
this.asRequiredSet = builder.asRequiredSet;
converterValidatorChain = ((Converter<FIELDVALUE, TARGET>) builder.converterValidatorChain);
onValueChange = getField()
.addValueChangeListener(this::handleFieldValueChange);
this.getter = getter;
this.setter = setter;
readOnly = setter == null;
}
@Override
public HasValue<FIELDVALUE> getField() {
return field;
}
/**
* Finds an appropriate locale to be used in conversion and validation.
*
* @return the found locale, not null
*/
protected Locale findLocale() {
Locale l = null;
if (getField() instanceof Component) {
l = ((Component) getField()).getLocale();
}
if (l == null && UI.getCurrent() != null) {
l = UI.getCurrent().getLocale();
}
if (l == null) {
l = Locale.getDefault();
}
return l;
}
@Override
public BindingValidationStatus<TARGET> validate(boolean fireEvent) {
Objects.requireNonNull(binder,
"This Binding is no longer attached to a Binder");
BindingValidationStatus<TARGET> status = doValidation();
if (fireEvent) {
getBinder().getValidationStatusHandler()
.statusChange(new BinderValidationStatus<>(getBinder(),
Arrays.asList(status),
Collections.emptyList()));
getBinder().fireStatusChangeEvent(status.isError());
}
return status;
}
/**
* Removes this binding from its binder and unregisters the
* {@code ValueChangeListener} from any bound {@code HasValue}. It does
* nothing if it is called for an already unbound binding.
*
* @since 8.2
*/
@Override
public void unbind() {
if (onValueChange != null) {
onValueChange.remove();
onValueChange = null;
}
if (binder != null) {
binder.removeBindingInternal(this);
binder = null;
}
field = null;
}
/**
* Returns the field value run through all converters and validators,
* but doesn't pass the {@link BindingValidationStatus} to any status
* handler.
*
* @return the result of the conversion
*/
private Result<TARGET> doConversion() {
FIELDVALUE fieldValue = field.getValue();
return converterValidatorChain.convertToModel(fieldValue,
createValueContext());
}
private BindingValidationStatus<TARGET> toValidationStatus(
Result<TARGET> result) {
return new BindingValidationStatus<>(result, this);
}
/**
* Returns the field value run through all converters and validators,
* but doesn't pass the {@link BindingValidationStatus} to any status
* handler.
*
* @return the validation status
*/
private BindingValidationStatus<TARGET> doValidation() {
return toValidationStatus(doConversion());
}
/**
* Creates a value context from the current state of the binding and its
* field.
*
* @return the value context
*/
protected ValueContext createValueContext() {
if (field instanceof Component) {
return new ValueContext((Component) field, field);
}
return new ValueContext(null, field, findLocale());
}
/**
* Sets the field value by invoking the getter function on the given
* bean. The default listener attached to the field will be removed for
* the duration of this update.
*
* @param bean
* the bean to fetch the property value from
* @param writeBackChangedValues
* <code>true</code> if the bean value should be updated if
* the value is different after converting to and from the
* presentation value; <code>false</code> to avoid updating
* the bean value
*/
private void initFieldValue(BEAN bean, boolean writeBackChangedValues) {
assert bean != null;
assert onValueChange != null;
valueInit = true;
try {
TARGET originalValue = getter.apply(bean);
convertAndSetFieldValue(originalValue);
if (writeBackChangedValues && setter != null) {
doConversion().ifOk(convertedValue -> {
if (!Objects.equals(originalValue, convertedValue)) {
setter.accept(bean, convertedValue);
}
});
}
} finally {
valueInit = false;
}
}
private FIELDVALUE convertToFieldType(TARGET target) {
ValueContext valueContext = createValueContext();
return converterValidatorChain.convertToPresentation(target,
valueContext);
}
/**
* Handles the value change triggered by the bound field.
*
* @param event
*/
private void handleFieldValueChange(
ValueChangeEvent<FIELDVALUE> event) {
// Don't handle change events when setting initial value
if (valueInit) {
return;
}
if (binder != null) {
// Inform binder of changes; if setBean: writeIfValid
getBinder().handleFieldValueChange(this, event);
getBinder().fireValueChangeEvent(event);
}
}
/**
* Write the field value by invoking the setter function on the given
* bean, if the value passes all registered validators.
*
* @param bean
* the bean to set the property value to
*/
private BindingValidationStatus<TARGET> writeFieldValue(BEAN bean) {
assert bean != null;
Result<TARGET> result = doConversion();
if (!isReadOnly()) {
result.ifOk(value -> {
setter.accept(bean, value);
if (value != null) {
FIELDVALUE converted = convertToFieldType(value);
if (!field.getValue().equals(converted)) {
getField().setValue(converted);
}
}
});
}
return toValidationStatus(result);
}
/**
* Returns the {@code Binder} connected to this {@code Binding}
* instance.
*
* @return the binder
*/
protected Binder<BEAN> getBinder() {
return binder;
}
@Override
public BindingValidationStatusHandler getValidationStatusHandler() {
return statusHandler;
}
@Override
public void read(BEAN bean) {
convertAndSetFieldValue(getter.apply(bean));
}
private void convertAndSetFieldValue(TARGET modelValue) {
FIELDVALUE convertedValue = convertToFieldType(modelValue);
try {
getField().setValue(convertedValue);
} catch (RuntimeException e) {
/*
* Add an additional hint to the exception for the typical case
* with a field that doesn't accept null values. The non-null
* empty value is used as a heuristic to determine that the
* field doesn't accept null rather than throwing for some other
* reason.
*/
if (convertedValue == null
&& getField().getEmptyValue() != null) {
throw new IllegalStateException(String.format(
"A field of type %s didn't accept a null value."
+ " If null values are expected, then configure a null representation for the binding.",
field.getClass().getName()), e);
} else {
// Otherwise, let the original exception speak for itself
throw e;
}
}
}
@Override
public void setReadOnly(boolean readOnly) {
if (setter == null && !readOnly) {
throw new IllegalStateException(
"Binding with a null setter has to be read-only");
}
this.readOnly = readOnly;
getField().setReadOnly(readOnly);
}
@Override
public boolean isReadOnly() {
return readOnly;
}
@Override
public ValueProvider<BEAN, TARGET> getGetter() {
return getter;
}
@Override
public Setter<BEAN, TARGET> getSetter() {
return setter;
}
@Override
public void setAsRequiredEnabled(boolean asRequiredEnabled) {
if (!asRequiredSet) {
throw new IllegalStateException(
"Unable to toggle asRequired validation since "
+ "asRequired has not been set.");
}
if (asRequiredEnabled != isAsRequiredEnabled()) {
field.setRequiredIndicatorVisible(asRequiredEnabled);
validate();
}
}
@Override
public boolean isAsRequiredEnabled() {
return field.isRequiredIndicatorVisible();
}
@Override
public void setValidatorsDisabled(boolean validatorsDisabled) {
this.validatorsDisabled = validatorsDisabled;
}
@Override
public boolean isValidatorsDisabled() {
return validatorsDisabled;
}
}
/**
* Wraps a validator as a converter.
* <p>
* The type of the validator must be of the same type as this converter or a
* super type of it.
*
* @param <T>
* the type of the converter
*/
private static class ValidatorAsConverter<T> implements Converter<T, T> {
private final Validator<? super T> validator;
/**
* Creates a new converter wrapping the given validator.
*
* @param validator
* the validator to wrap
*/
public ValidatorAsConverter(Validator<? super T> validator) {
this.validator = validator;
}
@Override
public Result<T> convertToModel(T value, ValueContext context) {
ValidationResult validationResult = validator.apply(value, context);
return new ValidationResultWrap<>(value, validationResult);
}
@Override
public T convertToPresentation(T value, ValueContext context) {
return value;
}
}
/**
* Converter decorator-strategy pattern to use initially provided "delegate"
* converter to execute its logic until the {@code setIdentity()} method is
* called. Once the method is called the class changes its behavior to the
* same as {@link Converter#identity()} behavior.
*/
private static class ConverterDelegate<FIELDVALUE>
implements Converter<FIELDVALUE, FIELDVALUE> {
private Converter<FIELDVALUE, FIELDVALUE> delegate;
private ConverterDelegate(Converter<FIELDVALUE, FIELDVALUE> converter) {
delegate = converter;
}
@Override
public Result<FIELDVALUE> convertToModel(FIELDVALUE value,
ValueContext context) {
if (delegate == null) {
return Result.ok(value);
} else {
return delegate.convertToModel(value, context);
}
}
@Override
public FIELDVALUE convertToPresentation(FIELDVALUE value,
ValueContext context) {
if (delegate == null) {
return value;
} else {
return delegate.convertToPresentation(value, context);
}
}
void setIdentity() {
delegate = null;
}
}
private final PropertySet<BEAN> propertySet;
/**
* Property names that have been used for creating a binding.
*/
private final Map<String, Binding<BEAN, ?>> boundProperties = new HashMap<>();
private final Map<HasValue<?>, BindingBuilder<BEAN, ?>> incompleteMemberFieldBindings = new IdentityHashMap<>();
private BEAN bean;
private final Collection<Binding<BEAN, ?>> bindings = new ArrayList<>();
private final Map<HasValue<?>, BindingBuilder<BEAN, ?>> incompleteBindings = new IdentityHashMap<>();
private final List<Validator<? super BEAN>> validators = new ArrayList<>();
private final Map<HasValue<?>, ConverterDelegate<?>> initialConverters = new IdentityHashMap<>();
private EventRouter eventRouter;
private Label statusLabel;
private BinderValidationStatusHandler<BEAN> statusHandler;
private Set<Binding<BEAN, ?>> changedBindings = new LinkedHashSet<>();
private boolean validatorsDisabled = false;
/**
* Creates a binder using a custom {@link PropertySet} implementation for
* finding and resolving property names for
* {@link #bindInstanceFields(Object)}, {@link #bind(HasValue, String)} and
* {@link BindingBuilder#bind(String)}.
*
* @param propertySet
* the property set implementation to use, not <code>null</code>.
*/
protected Binder(PropertySet<BEAN> propertySet) {
Objects.requireNonNull(propertySet, "propertySet cannot be null");
this.propertySet = propertySet;
}
/**
* Informs the Binder that a value in Binding was changed. This method will
* trigger validating and writing of the whole bean if using
* {@link #setBean(Object)}. If using {@link #readBean(Object)} only the
* field validation is run.
*
* @param binding
* the binding whose value has been changed
* @param event
* the value change event
* @since 8.2
*/
protected void handleFieldValueChange(Binding<BEAN, ?> binding,
ValueChangeEvent<?> event) {
changedBindings.add(binding);
if (getBean() != null) {
doWriteIfValid(getBean(), changedBindings);
} else {
binding.validate();
}
}
/**
* Creates a new binder that uses reflection based on the provided bean type
* to resolve bean properties.
*
* @param beanType
* the bean type to use, not <code>null</code>
*/
public Binder(Class<BEAN> beanType) {
this(BeanPropertySet.get(beanType));
}
/**
* Creates a new binder that uses reflection based on the provided bean type
* to resolve bean properties.
*
* @param beanType
* the bean type to use, not {@code null}
* @param scanNestedDefinitions
* if {@code true}, scan for nested property definitions as well
* @since 8.2
*/
public Binder(Class<BEAN> beanType, boolean scanNestedDefinitions) {
this(BeanPropertySet.get(beanType, scanNestedDefinitions,
PropertyFilterDefinition.getDefaultFilter()));
}
/**
* Creates a new binder without support for creating bindings based on
* property names. Use an alternative constructor, such as
* {@link Binder#Binder(Class)}, to create a binder that support creating
* bindings based on instance fields through
* {@link #bindInstanceFields(Object)}, or based on a property name through
* {@link #bind(HasValue, String)} or {@link BindingBuilder#bind(String)}.
*/
public Binder() {
this(new PropertySet<BEAN>() {
@Override
public Stream<PropertyDefinition<BEAN, ?>> getProperties() {
throw new IllegalStateException(
"This Binder instance was created using the default constructor. "
+ "To be able to use property names and bind to instance fields, create the binder using the Binder(Class<BEAN> beanType) constructor instead.");
}
@Override
public Optional<PropertyDefinition<BEAN, ?>> getProperty(
String name) {
throw new IllegalStateException(
"This Binder instance was created using the default constructor. "
+ "To be able to use property names and bind to instance fields, create the binder using the Binder(Class<BEAN> beanType) constructor instead.");
}
});
}
/**
* Creates a binder using a custom {@link PropertySet} implementation for
* finding and resolving property names for
* {@link #bindInstanceFields(Object)}, {@link #bind(HasValue, String)} and
* {@link BindingBuilder#bind(String)}.
* <p>
* This functionality is provided as static method instead of as a public
* constructor in order to make it possible to use a custom property set
* without creating a subclass while still leaving the public constructors
* focused on the common use cases.
*
* @see Binder#Binder()
* @see Binder#Binder(Class)
*
* @param propertySet
* the property set implementation to use, not <code>null</code>.
* @return a new binder using the provided property set, not
* <code>null</code>
*/
public static <BEAN> Binder<BEAN> withPropertySet(
PropertySet<BEAN> propertySet) {
return new Binder<>(propertySet);
}
/**
* Returns the bean that has been bound with {@link #bind}, or null if a
* bean is not currently bound.
*
* @return the currently bound bean if any
*/
public BEAN getBean() {
return bean;
}
/**
* Creates a new binding for the given field. The returned builder may be
* further configured before invoking
* {@link BindingBuilder#bind(ValueProvider, Setter)} which completes the
* binding. Until {@code Binding.bind} is called, the binding has no effect.
* <p>
* <strong>Note:</strong> Not all {@link HasValue} implementations support
* passing {@code null} as the value. For these the Binder will
* automatically change {@code null} to a null representation provided by
* {@link HasValue#getEmptyValue()}. This conversion is one-way only, if you
* want to have a two-way mapping back to {@code null}, use
* {@link BindingBuilder#withNullRepresentation(Object)}.
*
* @param <FIELDVALUE>
* the value type of the field
* @param field
* the field to be bound, not null
* @return the new binding
*
* @see #bind(HasValue, ValueProvider, Setter)
*/
public <FIELDVALUE> BindingBuilder<BEAN, FIELDVALUE> forField(
HasValue<FIELDVALUE> field) {
Objects.requireNonNull(field, "field cannot be null");
// clear previous errors for this field and any bean level validation
clearError(field);
getStatusLabel().ifPresent(label -> label.setValue(""));
return createBinding(field, createNullRepresentationAdapter(field),
this::handleValidationStatus)
.withValidator(field.getDefaultValidator());
}
/**
* Creates a new binding for the given field. The returned builder may be
* further configured before invoking {@link #bindInstanceFields(Object)}.
* Unlike with the {@link #forField(HasValue)} method, no explicit call to
* {@link BindingBuilder#bind(String)} is needed to complete this binding in
* the case that the name of the field matches a field name found in the
* bean.
*
* @param <FIELDVALUE>
* the value type of the field
* @param field
* the field to be bound, not null
* @return the new binding builder
*
* @see #forField(HasValue)
* @see #bindInstanceFields(Object)
*/
public <FIELDVALUE> BindingBuilder<BEAN, FIELDVALUE> forMemberField(
HasValue<FIELDVALUE> field) {
incompleteMemberFieldBindings.put(field, null);
return forField(field);
}
/**
* Binds a field to a bean property represented by the given getter and
* setter pair. The functions are used to update the field value from the
* property and to store the field value to the property, respectively.
* <p>
* Use the {@link #forField(HasValue)} overload instead if you want to
* further configure the new binding.
* <p>
* <strong>Note:</strong> Not all {@link HasValue} implementations support
* passing {@code null} as the value. For these the Binder will
* automatically change {@code null} to a null representation provided by
* {@link HasValue#getEmptyValue()}. This conversion is one-way only, if you
* want to have a two-way mapping back to {@code null}, use
* {@link #forField(HasValue)} and
* {@link BindingBuilder#withNullRepresentation(Object)}.
* <p>
* When a bean is bound with {@link Binder#setBean(BEAN)}, the field value
* is set to the return value of the given getter. The property value is
* then updated via the given setter whenever the field value changes. The
* setter may be null; in that case the property value is never updated and
* the binding is said to be <i>read-only</i>.
* <p>
* If the Binder is already bound to some bean, the newly bound field is
* associated with the corresponding bean property as described above.
* <p>
* The getter and setter can be arbitrary functions, for instance
* implementing user-defined conversion or validation. However, in the most
* basic use case you can simply pass a pair of method references to this
* method as follows:
*
* <pre>
* class Person {
* public String getName() { ... }
* public void setName(String name) { ... }
* }
*
* TextField nameField = new TextField();
* binder.bind(nameField, Person::getName, Person::setName);
* </pre>
*
* <p>
* <strong>Note:</strong> when a {@code null} setter is given the field will
* be marked as read-only by invoking {@link HasValue#setReadOnly(boolean)}.
*
* @param <FIELDVALUE>
* the value type of the field
* @param field
* the field to bind, not null
* @param getter
* the function to get the value of the property to the field,
* not null
* @param setter
* the function to write the field value to the property or null
* if read-only
* @return the newly created binding
*/
public <FIELDVALUE> Binding<BEAN, FIELDVALUE> bind(
HasValue<FIELDVALUE> field, ValueProvider<BEAN, FIELDVALUE> getter,
Setter<BEAN, FIELDVALUE> setter) {
return forField(field).bind(getter, setter);
}
/**
* Binds the given field to the property with the given name. The getter and
* setter of the property are looked up using a {@link PropertySet}.
* <p>
* For a <code>Binder</code> created using the {@link Binder#Binder(Class)}
* constructor, introspection will be used to find a Java Bean property. If
* a JSR-303 bean validation implementation is present on the classpath, a
* {@link BeanValidator} is also added to the binding.
* <p>
* The property must have an accessible getter method. It need not have an
* accessible setter; in that case the property value is never updated and
* the binding is said to be <i>read-only</i>.
*
* @param <FIELDVALUE>
* the value type of the field to bind
* @param field
* the field to bind, not null
* @param propertyName
* the name of the property to bind, not null
* @return the newly created binding
*
* @throws IllegalArgumentException
* if the property name is invalid
* @throws IllegalArgumentException
* if the property has no accessible getter
* @throws IllegalStateException
* if the binder is not configured with an appropriate
* {@link PropertySet}
*
* @see #bind(HasValue, ValueProvider, Setter)
*/
public <FIELDVALUE> Binding<BEAN, FIELDVALUE> bind(
HasValue<FIELDVALUE> field, String propertyName) {
return forField(field).bind(propertyName);
}
/**
* Binds the given bean to all the fields added to this Binder. A
* {@code null} value removes a currently bound bean.
* <p>
* When a bean is bound, the field values are updated by invoking their
* corresponding getter functions. Any changes to field values are reflected
* back to their corresponding property values of the bean as long as the
* bean is bound.
* <p>
* Any change made in the fields also runs validation for the field
* {@link Binding} and bean level validation for this binder (bean level
* validators are added using {@link Binder#withValidator(Validator)}.
* <p>
* After updating each field, the value is read back from the field and the
* bean's property value is updated if it has been changed from the original
* value by the field or a converter.
*
* @see #readBean(Object)
* @see #writeBean(Object)
* @see #writeBeanIfValid(Object)
*
* @param bean
* the bean to edit, or {@code null} to remove a currently bound
* bean and clear bound fields
*/
public void setBean(BEAN bean) {
checkBindingsCompleted("setBean");
if (bean == null) {
if (this.bean != null) {
doRemoveBean(true);
clearFields();
}
} else {
doRemoveBean(false);
this.bean = bean;
getBindings().forEach(b -> b.initFieldValue(bean, true));
// if there has been field value change listeners that trigger
// validation, need to make sure the validation errors are cleared
getValidationStatusHandler().statusChange(
BinderValidationStatus.createUnresolvedStatus(this));
fireStatusChangeEvent(false);
}
}
/**
* Removes the currently set bean and clears bound fields. If there is no
* bound bean, does nothing.
* <p>
* This is a shorthand for {@link #setBean(Object)} with {@code null} bean.
*/
public void removeBean() {
setBean(null);
}
/**
* Reads the bound property values from the given bean to the corresponding
* fields.
* <p>
* The bean is not otherwise associated with this binder; in particular its
* property values are not bound to the field value changes. To achieve
* that, use {@link #setBean(BEAN)}.
*
* @see #setBean(Object)
* @see #writeBeanIfValid(Object)
* @see #writeBean(Object)
*
* @param bean
* the bean whose property values to read or {@code null} to
* clear bound fields
*/
public void readBean(BEAN bean) {
checkBindingsCompleted("readBean");
if (bean == null) {
clearFields();
} else {
changedBindings.clear();
getBindings().forEach(binding -> {
// Some bindings may have been removed from binder
// during readBean. We should skip those bindings to
// avoid NPE inside initFieldValue. It happens e.g. when
// we unbind a binding in valueChangeListener of another
// field.
if (binding.getField() != null) {
binding.initFieldValue(bean, false);
}
});
getValidationStatusHandler().statusChange(
BinderValidationStatus.createUnresolvedStatus(this));
fireStatusChangeEvent(false);
}
}
/**
* Writes changes from the bound fields to the given bean if all validators
* (binding and bean level) pass.
* <p>
* If any field binding validator fails, no values are written and a
* {@code ValidationException} is thrown.
* <p>
* If all field level validators pass, the given bean is updated and bean
* level validators are run on the updated bean. If any bean level validator
* fails, the bean updates are reverted and a {@code ValidationException} is
* thrown.
*
* @see #writeBeanIfValid(Object)
* @see #readBean(Object)
* @see #setBean(Object)
*
* @param bean
* the object to which to write the field values, not
* {@code null}
* @throws ValidationException
* if some of the bound field values fail to validate
*/
public void writeBean(BEAN bean) throws ValidationException {
BinderValidationStatus<BEAN> status = doWriteIfValid(bean,
new ArrayList<>(bindings));
if (status.hasErrors()) {
throw new ValidationException(status.getFieldValidationErrors(),
status.getBeanValidationErrors());
}
}
/**
* Writes successfully converted and validated changes from the bound fields
* to the bean even if there are other fields with non-validated changes.
*
* @see #writeBean(Object)
* @see #writeBeanIfValid(Object)
* @see #readBean(Object)
* @see #setBean(Object)
*
* @param bean
* the object to which to write the field values, not
* {@code null}
*
* @since 8.10
*/
public void writeBeanAsDraft(BEAN bean) {
doWriteDraft(bean, new ArrayList<>(bindings),false);
}
/**
* Writes successfully converted changes from the bound fields bypassing
* all the Validation, or all fields passing conversion if forced = true.
* If the conversion fails, the value written to the bean will be null.
*
* @see #writeBean(Object)
* @see #writeBeanIfValid(Object)
* @see #readBean(Object)
* @see #setBean(Object)
*
* @param bean
* the object to which to write the field values, not
* {@code null}
* @param forced
* disable all Validators during write
* @since 8.11
*/
public void writeBeanAsDraft(BEAN bean, boolean forced) {
doWriteDraft(bean, new ArrayList<>(bindings),forced);
}
/**
* Writes changes from the bound fields to the given bean if all validators
* (binding and bean level) pass.
* <p>
* If any field binding validator fails, no values are written and
* <code>false</code> is returned.
* <p>
* If all field level validators pass, the given bean is updated and bean
* level validators are run on the updated bean. If any bean level validator
* fails, the bean updates are reverted and <code>false</code> is returned.
*
* @see #writeBean(Object)
* @see #readBean(Object)
* @see #setBean(Object)
*
* @param bean
* the object to which to write the field values, not
* {@code null}
* @return {@code true} if there was no validation errors and the bean was
* updated, {@code false} otherwise
*/
public boolean writeBeanIfValid(BEAN bean) {
return doWriteIfValid(bean, new ArrayList<>(bindings)).isOk();
}
/**
* Writes the field values into the given bean if all field level validators
* pass. Runs bean level validators on the bean after writing.
* <p>
* <strong>Note:</strong> The collection of bindings is cleared on
* successful save.
*
* @param bean
* the bean to write field values into
* @param bindings
* the set of bindings to write to the bean
* @return a list of field validation errors if such occur, otherwise a list
* of bean validation errors.
*/
@SuppressWarnings({ "unchecked" })
private BinderValidationStatus<BEAN> doWriteIfValid(BEAN bean,
Collection<Binding<BEAN, ?>> bindings) {
Objects.requireNonNull(bean, "bean cannot be null");
List<ValidationResult> binderResults = Collections.emptyList();
// First run fields level validation, if no validation errors then
// update bean
List<BindingValidationStatus<?>> bindingResults = bindings.stream()
.map(b -> b.validate(false)).collect(Collectors.toList());
if (bindingResults.stream()
.noneMatch(BindingValidationStatus::isError)) {
// Store old bean values so we can restore them if validators fail
Map<Binding<BEAN, ?>, Object> oldValues = getBeanState(bean,
bindings);
bindings.forEach(binding -> ((BindingImpl<BEAN, ?, ?>) binding)
.writeFieldValue(bean));
// Now run bean level validation against the updated bean
binderResults = validateBean(bean);
if (binderResults.stream().anyMatch(ValidationResult::isError)) {
// Bean validator failed, revert values
restoreBeanState(bean, oldValues);
} else if (bean.equals(getBean())) {
/*
* Changes have been successfully saved. The set is only cleared
* when the changes are stored in the currently set bean.
*/
bindings.clear();
} else if (getBean() == null) {
/*
* When using readBean and writeBean there is no knowledge of
* which bean the changes come from or are stored in. Binder is
* no longer "changed" when saved succesfully to any bean.
*/
changedBindings.clear();
}
}
// Generate status object and fire events.
BinderValidationStatus<BEAN> status = new BinderValidationStatus<>(this,
bindingResults, binderResults);
getValidationStatusHandler().statusChange(status);
fireStatusChangeEvent(!status.isOk());
return status;
}
/**
* Writes the successfully converted and validated field values into the
* given bean.
*
* @param bean
* the bean to write field values into
* @param bindings
* the set of bindings to write to the bean
* @param forced
* disable validators during write if true
*/
private void doWriteDraft(BEAN bean,
Collection<Binding<BEAN, ?>> bindings, boolean forced) {
Objects.requireNonNull(bean, "bean cannot be null");
if (!forced) {
bindings.forEach(binding -> ((BindingImpl<BEAN, ?, ?>) binding)
.writeFieldValue(bean));
} else {
boolean isDisabled = isValidatorsDisabled();
setValidatorsDisabled(true);
bindings.forEach(binding -> ((BindingImpl<BEAN, ?, ?>) binding)
.writeFieldValue(bean));
setValidatorsDisabled(isDisabled);
}
}
/**
* Restores the state of the bean from the given values. This method is used
* together with {@link #getBeanState(Object, Collection)} to provide a way
* to revert changes in case the bean validation fails after save.
*
* @param bean
* the bean
* @param oldValues
* the old values
*
* @since 8.2
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
protected void restoreBeanState(BEAN bean,
Map<Binding<BEAN, ?>, Object> oldValues) {
getBindings().stream().filter(oldValues::containsKey)
.forEach(binding -> {
Setter setter = binding.setter;
if (setter != null) {
setter.accept(bean, oldValues.get(binding));
}
});
}
/**
* Stores the state of the given bean. This method is used together with
* {@link #restoreBeanState(Object, Map)} to provide a way to revert changes
* in case the bean validation fails after save.
*
* @param bean
* the bean to store the state of
* @param bindings
* the bindings to store
*
* @return map from binding to value
*
* @since 8.2
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
protected Map<Binding<BEAN, ?>, Object> getBeanState(BEAN bean,
Collection<Binding<BEAN, ?>> bindings) {
Map<Binding<BEAN, ?>, Object> oldValues = new HashMap<>();
bindings.stream().map(binding -> (BindingImpl) binding)
.filter(binding -> binding.setter != null)
.forEach(binding -> oldValues.put(binding,
binding.getter.apply(bean)));
return oldValues;
}
/**
* Adds an bean level validator.
* <p>
* Bean level validators are applied on the bean instance after the bean is
* updated. If the validators fail, the bean instance is reverted to its
* previous state.
*
* @see #writeBean(Object)
* @see #writeBeanIfValid(Object)
* @see #withValidator(SerializablePredicate, String)
* @see #withValidator(SerializablePredicate, ErrorMessageProvider)
*
* @param validator
* the validator to add, not null
* @return this binder, for chaining
*/
public Binder<BEAN> withValidator(Validator<? super BEAN> validator) {
Objects.requireNonNull(validator, "validator cannot be null");
Validator<? super BEAN> wrappedValidator = ((value, context) -> {
if (isValidatorsDisabled()) {
return ValidationResult.ok();
} else {
return validator.apply(value, context);
}
});
validators.add(wrappedValidator);
return this;
}
/**
* A convenience method to add a validator to this binder using the
* {@link Validator#from(SerializablePredicate, String)} factory method.
* <p>
* Bean level validators are applied on the bean instance after the bean is
* updated. If the validators fail, the bean instance is reverted to its
* previous state.
*
* @see #writeBean(Object)
* @see #writeBeanIfValid(Object)
* @see #withValidator(Validator)
* @see #withValidator(SerializablePredicate, ErrorMessageProvider)
*
* @param predicate
* the predicate performing validation, not null
* @param message
* the error message to report in case validation failure
* @return this binder, for chaining
*/
public Binder<BEAN> withValidator(SerializablePredicate<BEAN> predicate,
String message) {
return withValidator(Validator.from(predicate, message));
}
/**
* A convenience method to add a validator to this binder using the
* {@link Validator#from(SerializablePredicate, ErrorMessageProvider)}
* factory method.
* <p>
* Bean level validators are applied on the bean instance after the bean is
* updated. If the validators fail, the bean instance is reverted to its
* previous state.
*
* @see #writeBean(Object)
* @see #writeBeanIfValid(Object)
* @see #withValidator(Validator)
* @see #withValidator(SerializablePredicate, String)
*
* @param predicate
* the predicate performing validation, not null
* @param errorMessageProvider
* the provider to generate error messages, not null
* @return this binder, for chaining
*/
public Binder<BEAN> withValidator(SerializablePredicate<BEAN> predicate,
ErrorMessageProvider errorMessageProvider) {
return withValidator(Validator.from(predicate, errorMessageProvider));
}
/**
* Clear all the bound fields for this binder.
*/
private void clearFields() {
bindings.forEach(binding -> {
binding.getField().clear();
clearError(binding.getField());
});
if (hasChanges()) {
fireStatusChangeEvent(false);
}
changedBindings.clear();
}
/**
* Validates the values of all bound fields and returns the validation
* status.
* <p>
* If all field level validators pass, and {@link #setBean(Object)} has been
* used to bind to a bean, bean level validators are run for that bean. Bean
* level validators are ignored if there is no bound bean or if any field
* level validator fails.
* <p>
* <strong>Note:</strong> This method will attempt to temporarily apply all
* current changes to the bean and run full bean validation for it. The
* changes are reverted after bean validation.
*
* @return validation status for the binder
*/
public BinderValidationStatus<BEAN> validate() {
return validate(true);
}
/**
* Validates the values of all bound fields and returns the validation
* status. This method can fire validation status events. Firing the events
* depends on the given {@code boolean}.
*
* @param fireEvent
* {@code true} to fire validation status events; {@code false}
* to not
* @return validation status for the binder
*
* @since 8.2
*/
protected BinderValidationStatus<BEAN> validate(boolean fireEvent) {
if (getBean() == null && !validators.isEmpty()) {
throw new IllegalStateException("Cannot validate binder: "
+ "bean level validators have been configured "
+ "but no bean is currently set");
}
List<BindingValidationStatus<?>> bindingStatuses = validateBindings();
BinderValidationStatus<BEAN> validationStatus;
if (validators.isEmpty() || bindingStatuses.stream()
.anyMatch(BindingValidationStatus::isError)) {
validationStatus = new BinderValidationStatus<>(this,
bindingStatuses, Collections.emptyList());
} else {
Map<Binding<BEAN, ?>, Object> beanState = getBeanState(getBean(),
changedBindings);
changedBindings
.forEach(binding -> ((BindingImpl<BEAN, ?, ?>) binding)
.writeFieldValue(getBean()));
validationStatus = new BinderValidationStatus<>(this,
bindingStatuses, validateBean(getBean()));
restoreBeanState(getBean(), beanState);
}
if (fireEvent) {
getValidationStatusHandler().statusChange(validationStatus);
fireStatusChangeEvent(validationStatus.hasErrors());
}
return validationStatus;
}
/**
* Runs all currently configured field level validators, as well as all bean
* level validators if a bean is currently set with
* {@link #setBean(Object)}, and returns whether any of the validators
* failed.
* <p>
* <b>Note:</b> Calling this method will not trigger status change events,
* unlike {@link #validate()} and will not modify the UI. To also update
* error indicators on fields, use {@code validate().isOk()}.
* <p>
* <strong>Note:</strong> This method will attempt to temporarily apply all
* current changes to the bean and run full bean validation for it. The
* changes are reverted after bean validation.
*
* @see #validate()
*
* @return whether this binder is in a valid state
* @throws IllegalStateException
* if bean level validators have been configured and no bean is
* currently set
*/
public boolean isValid() {
return validate(false).isOk();
}
/**
* Validates the bindings and returns the result of the validation as a list
* of validation statuses.
* <p>
* Does not run bean validators.
*
* @see #validateBean(Object)
*
* @return an immutable list of validation results for bindings
*/
private List<BindingValidationStatus<?>> validateBindings() {
return getBindings().stream().map(BindingImpl::doValidation)
.collect(Collectors.toList());
}
/**
* Validates the {@code bean} using validators added using
* {@link #withValidator(Validator)} and returns the result of the
* validation as a list of validation results.
* <p>
*
* @see #withValidator(Validator)
*
* @param bean
* the bean to validate
* @return a list of validation errors or an empty list if validation
* succeeded
*/
private List<ValidationResult> validateBean(BEAN bean) {
Objects.requireNonNull(bean, "bean cannot be null");
List<ValidationResult> results = Collections.unmodifiableList(validators
.stream()
.map(validator -> validator.apply(bean, new ValueContext()))
.collect(Collectors.toList()));
return results;
}
/**
* Sets the label to show the binder level validation errors not related to
* any specific field.
* <p>
* Only the one validation error message is shown in this label at a time.
* <p>
* This is a convenience method for
* {@link #setValidationStatusHandler(BinderValidationStatusHandler)}, which
* means that this method cannot be used after the handler has been set.
* Also the handler cannot be set after this label has been set.
*
* @param statusLabel
* the status label to set
* @see #setValidationStatusHandler(BinderValidationStatusHandler)
* @see BindingBuilder#withStatusLabel(Label)
*/
public void setStatusLabel(Label statusLabel) {
if (statusHandler != null) {
throw new IllegalStateException("Cannot set status label if a "
+ BinderValidationStatusHandler.class.getSimpleName()
+ " has already been set.");
}
this.statusLabel = statusLabel;
}
/**
* Gets the status label or an empty optional if none has been set.
*
* @return the optional status label
* @see #setStatusLabel(Label)
*/
public Optional<Label> getStatusLabel() {
return Optional.ofNullable(statusLabel);
}
/**
* Sets the status handler to track form status changes.
* <p>
* Setting this handler will override the default behavior, which is to let
* fields show their validation status messages and show binder level
* validation errors or OK status in the label set with
* {@link #setStatusLabel(Label)}.
* <p>
* This handler cannot be set after the status label has been set with
* {@link #setStatusLabel(Label)}, or {@link #setStatusLabel(Label)} cannot
* be used after this handler has been set.
*
* @param statusHandler
* the status handler to set, not <code>null</code>
* @throws NullPointerException
* for <code>null</code> status handler
* @see #setStatusLabel(Label)
* @see BindingBuilder#withValidationStatusHandler(BindingValidationStatusHandler)
*/
public void setValidationStatusHandler(
BinderValidationStatusHandler<BEAN> statusHandler) {
Objects.requireNonNull(statusHandler, "Cannot set a null "
+ BinderValidationStatusHandler.class.getSimpleName());
if (statusLabel != null) {
throw new IllegalStateException("Cannot set "
+ BinderValidationStatusHandler.class.getSimpleName()
+ " if a status label has already been set.");
}
this.statusHandler = statusHandler;
}
/**
* Gets the status handler of this form.
* <p>
* If none has been set with
* {@link #setValidationStatusHandler(BinderValidationStatusHandler)}, the
* default implementation is returned.
*
* @return the status handler used, never <code>null</code>
* @see #setValidationStatusHandler(BinderValidationStatusHandler)
*/
public BinderValidationStatusHandler<BEAN> getValidationStatusHandler() {
return Optional.ofNullable(statusHandler)
.orElse(this::handleBinderValidationStatus);
}
/**
* Adds status change listener to the binder.
* <p>
* The {@link Binder} status is changed whenever any of the following
* happens:
* <ul>
* <li>if it's bound and any of its bound field or select has been changed
* <li>{@link #writeBean(Object)} or {@link #writeBeanIfValid(Object)} is
* called
* <li>{@link #readBean(Object)} is called
* <li>{@link #setBean(Object)} is called
* <li>{@link #removeBean()} is called
* <li>{@link BindingBuilder#bind(ValueProvider, Setter)} is called
* <li>{@link Binder#validate()} or {@link Binding#validate()} is called
* </ul>
*
* @see #readBean(Object)
* @see #writeBean(Object)
* @see #writeBeanIfValid(Object)
* @see #setBean(Object)
* @see #removeBean()
* @see #forField(HasValue)
* @see #validate()
* @see Binding#validate()
*
* @param listener
* status change listener to add, not null
* @return a registration for the listener
*/
public Registration addStatusChangeListener(StatusChangeListener listener) {
return getEventRouter().addListener(StatusChangeEvent.class, listener,
ReflectTools.getMethod(StatusChangeListener.class));
}
/**
* Adds field value change listener to all the fields in the binder.
* <p>
* Added listener is notified every time whenever any bound field value is
* changed, i.e. the UI component value was changed, passed all the
* conversions and validations then propagated to the bound bean field. The
* same functionality can be achieved by adding a
* {@link ValueChangeListener} to all fields in the {@link Binder}.
* <p>
* The listener is added to all fields regardless of whether the method is
* invoked before or after field is bound.
*
* @see ValueChangeEvent
* @see ValueChangeListener
*
* @param listener
* a field value change listener
* @return a registration for the listener
*/
public Registration addValueChangeListener(
ValueChangeListener<?> listener) {
return getEventRouter().addListener(ValueChangeEvent.class, listener,
ReflectTools.getMethod(ValueChangeListener.class));
}
/**
* Creates a new binding with the given field.
*
* @param <FIELDVALUE>
* the value type of the field
* @param <TARGET>
* the target data type
* @param field
* the field to bind, not null
* @param converter
* the converter for converting between FIELDVALUE and TARGET
* types, not null
* @param handler
* the handler to notify of status changes, not null
* @return the new incomplete binding
*/
protected <FIELDVALUE, TARGET> BindingBuilder<BEAN, TARGET> createBinding(
HasValue<FIELDVALUE> field, Converter<FIELDVALUE, TARGET> converter,
BindingValidationStatusHandler handler) {
BindingBuilder<BEAN, TARGET> newBinding = doCreateBinding(field,
converter, handler);
if (incompleteMemberFieldBindings.containsKey(field)) {
incompleteMemberFieldBindings.put(field, newBinding);
}
incompleteBindings.put(field, newBinding);
return newBinding;
}
protected <FIELDVALUE, TARGET> BindingBuilder<BEAN, TARGET> doCreateBinding(
HasValue<FIELDVALUE> field, Converter<FIELDVALUE, TARGET> converter,
BindingValidationStatusHandler handler) {
return new BindingBuilderImpl<>(this, field, converter, handler);
}
/**
* Clears the error condition of the given field, if any. The default
* implementation clears the
* {@link AbstractComponent#setComponentError(ErrorMessage) component error}
* of the field if it is a Component, otherwise does nothing.
*
* @param field
* the field with an invalid value
*/
protected void clearError(HasValue<?> field) {
if (field instanceof AbstractComponent) {
((AbstractComponent) field).setComponentError(null);
}
}
/**
* Handles a validation error emitted when trying to write the value of the
* given field. The default implementation sets the
* {@link AbstractComponent#setComponentError(ErrorMessage) component error}
* of the field if it is a Component, otherwise does nothing.
*
* @param field
* the field with the invalid value
* @param result
* the validation error result
*
* @since 8.2
*/
protected void handleError(HasValue<?> field, ValidationResult result) {
result.getErrorLevel().ifPresent(level -> {
if (field instanceof AbstractComponent) {
((AbstractComponent) field).setComponentError(new UserError(
result.getErrorMessage(), ContentMode.TEXT, level));
}
});
}
/**
* Default {@link BindingValidationStatusHandler} functional method
* implementation.
*
* @param status
* the validation status
*/
protected void handleValidationStatus(BindingValidationStatus<?> status) {
HasValue<?> source = status.getField();
clearError(source);
if (status.isError()) {
Optional<ValidationResult> firstError = status
.getValidationResults().stream()
.filter(ValidationResult::isError).findFirst();
if (firstError.isPresent()) {
// Failed with a Validation error
handleError(source, firstError.get());
} else {
// Conversion error
status.getResult()
.ifPresent(result -> handleError(source, result));
}
} else {
// Show first non-error ValidationResult message.
status.getValidationResults().stream()
.filter(result -> result.getErrorLevel().isPresent())
.findFirst()
.ifPresent(result -> handleError(source, result));
}
}
/**
* Returns the bindings for this binder.
*
* @return a list of the bindings
*/
protected Collection<BindingImpl<BEAN, ?, ?>> getBindings() {
return bindings.stream().map(b -> ((BindingImpl<BEAN, ?, ?>) b))
.collect(Collectors.toList());
}
/**
* The default binder level status handler.
* <p>
* Passes all field related results to the Binding status handlers. All
* other status changes are displayed in the status label, if one has been
* set with {@link #setStatusLabel(Label)}.
*
* @param binderStatus
* status of validation results from binding and/or bean level
* validators
*/
protected void handleBinderValidationStatus(
BinderValidationStatus<BEAN> binderStatus) {
// let field events go to binding status handlers
binderStatus.notifyBindingValidationStatusHandlers();
// show first possible error or OK status in the label if set
if (getStatusLabel().isPresent()) {
String statusMessage = binderStatus.getBeanValidationErrors()
.stream().findFirst().map(ValidationResult::getErrorMessage)
.orElse("");
getStatusLabel().get().setValue(statusMessage);
}
}
/**
* Check whether any of the bound fields' have uncommitted changes since
* last explicit call to {@link #readBean(Object)}, {@link #removeBean()},
* {@link #writeBean(Object)} or {@link #writeBeanIfValid(Object)}.
* Unsuccessful write operations will not affect this value.
* <p>
* Note that if you use {@link #setBean(Object)} method, Binder tries to
* commit changes as soon as all validators have passed. Thus, when using
* this method with it seldom makes sense and almost always returns false.
*
* Return values for each case are compiled into the following table:
*
* <p>
*
* <table>
* <tr>
* <td></td>
* <td>After readBean, setBean or removeBean</td>
* <td>After valid user changes</td>
* <td>After invalid user changes</td>
* <td>After successful writeBean or writeBeanIfValid</td>
* <td>After unsuccessful writeBean or writeBeanIfValid</td>
* </tr>
* <tr>
* <td>A bean is currently bound</td>
* <td>{@code false}</td>
* <td>{@code false}</td>
* <td>{@code true}</td>
* <td>{@code false}</td>
* <td>no change</td>
* </tr>
* <tr>
* <td>No bean is currently bound</td>
* <td>{@code false}</td>
* <td>{@code true}</td>
* <td>{@code true}</td>
* <td>{@code false}</td>
* <td>no change</td>
* </tr>
* </table>
*
* @return whether any bound field's value has changed since last call to
* setBean, readBean, writeBean or writeBeanIfValid
*/
public boolean hasChanges() {
return !changedBindings.isEmpty();
}
/**
* Sets the read only state to the given value for all current bindings.
* <p>
* This is just a shorthand for calling {@link Binding#setReadOnly(boolean)}
* for all current bindings. It means that bindings added after this method
* call won't be set read-only.
*
* @param readOnly
* {@code true} to set the bindings to read-only, {@code false}
* to set them to read-write
*/
public void setReadOnly(boolean readOnly) {
getBindings().stream().filter(binding -> binding.getSetter() != null)
.forEach(binding -> binding.setReadOnly(readOnly));
}
/**
* Returns the event router for this binder.
*
* @return the event router, not null
*/
protected EventRouter getEventRouter() {
if (eventRouter == null) {
eventRouter = new EventRouter();
}
return eventRouter;
}
/**
* Configures the {@code binding} with the property definition
* {@code definition} before it's being bound.
*
* @param binding
* a binding to configure
* @param definition
* a property definition information
* @return the new configured binding
*/
protected BindingBuilder<BEAN, ?> configureBinding(
BindingBuilder<BEAN, ?> binding,
PropertyDefinition<BEAN, ?> definition) {
return binding;
}
private void doRemoveBean(boolean fireStatusEvent) {
changedBindings.clear();
if (bean != null) {
bean = null;
}
getValidationStatusHandler().statusChange(
BinderValidationStatus.createUnresolvedStatus(this));
if (fireStatusEvent) {
fireStatusChangeEvent(false);
}
}
private void fireStatusChangeEvent(boolean hasValidationErrors) {
getEventRouter()
.fireEvent(new StatusChangeEvent(this, hasValidationErrors));
}
private <FIELDVALUE> Converter<FIELDVALUE, FIELDVALUE> createNullRepresentationAdapter(
HasValue<FIELDVALUE> field) {
Converter<FIELDVALUE, FIELDVALUE> nullRepresentationConverter = Converter
.from(fieldValue -> fieldValue,
modelValue -> Objects.isNull(modelValue)
? field.getEmptyValue()
: modelValue,
exception -> exception.getMessage());
ConverterDelegate<FIELDVALUE> converter = new ConverterDelegate<>(
nullRepresentationConverter);
initialConverters.put(field, converter);
return converter;
}
/**
* Throws if this binder has incomplete bindings.
*
* @param methodName
* name of the method where this call is originated from
* @throws IllegalStateException
* if this binder has incomplete bindings
*/
private void checkBindingsCompleted(String methodName) {
if (!incompleteMemberFieldBindings.isEmpty()) {
throw new IllegalStateException(
"All bindings created with forMemberField must "
+ "be completed with bindInstanceFields before calling "
+ methodName);
}
if (!incompleteBindings.isEmpty()) {
throw new IllegalStateException(
"All bindings created with forField must be completed before calling "
+ methodName);
}
}
/**
* Binds member fields found in the given object.
* <p>
* This method processes all (Java) member fields whose type extends
* {@link HasValue} and that can be mapped to a property id. Property name
* mapping is done based on the field name or on a @{@link PropertyId}
* annotation on the field. All non-null unbound fields for which a property
* name can be determined are bound to the property name using
* {@link BindingBuilder#bind(String)}.
* <p>
* For example:
*
* <pre>
* public class MyForm extends VerticalLayout {
* private TextField firstName = new TextField("First name");
* @PropertyId("last")
* private TextField lastName = new TextField("Last name");
*
* MyForm myForm = new MyForm();
* ...
* binder.bindInstanceFields(myForm);
* </pre>
*
* This binds the firstName TextField to a "firstName" property in the item,
* lastName TextField to a "last" property.
* <p>
* It's not always possible to bind a field to a property because their
* types are incompatible. E.g. custom converter is required to bind
* {@code HasValue<String>} and {@code Integer} property (that would be a
* case of "age" property). In such case {@link IllegalStateException} will
* be thrown unless the field has been configured manually before calling
* the {@link #bindInstanceFields(Object)} method.
* <p>
* It's always possible to do custom binding for any field: the
* {@link #bindInstanceFields(Object)} method doesn't override existing
* bindings.
*
* @param objectWithMemberFields
* The object that contains (Java) member fields to bind
* @throws IllegalStateException
* if there are incompatible HasValue<T> and property
* types
*/
public void bindInstanceFields(Object objectWithMemberFields) {
Class<?> objectClass = objectWithMemberFields.getClass();
Integer numberOfBoundFields = getFieldsInDeclareOrder(objectClass)
.stream()
.filter(memberField -> HasValue.class
.isAssignableFrom(memberField.getType()))
.filter(memberField -> !isFieldBound(memberField,
objectWithMemberFields))
.map(memberField -> handleProperty(memberField,
objectWithMemberFields,
(property, type) -> bindProperty(objectWithMemberFields,
memberField, property, type)))
.reduce(0, this::accumulate, Integer::sum);
if (numberOfBoundFields == 0 && bindings.isEmpty()
&& incompleteBindings.isEmpty()) {
// Throwing here for incomplete bindings would be wrong as they
// may be completed after this call. If they are not, setBean and
// other methods will throw for those cases
throw new IllegalStateException("There are no instance fields "
+ "found for automatic binding");
}
}
private boolean isFieldBound(Field memberField,
Object objectWithMemberFields) {
try {
HasValue field = (HasValue) getMemberFieldValue(memberField,
objectWithMemberFields);
return bindings.stream()
.anyMatch(binding -> binding.getField() == field);
} catch (Exception e) {
return false;
}
}
private int accumulate(int count, boolean value) {
return value ? count + 1 : count;
}
private BindingBuilder<BEAN, ?> getIncompleteMemberFieldBinding(
Field memberField, Object objectWithMemberFields) {
return incompleteMemberFieldBindings
.get(getMemberFieldValue(memberField, objectWithMemberFields));
}
private Object getMemberFieldValue(Field memberField,
Object objectWithMemberFields) {
memberField.setAccessible(true);
try {
return memberField.get(objectWithMemberFields);
} catch (IllegalArgumentException | IllegalAccessException e) {
throw new RuntimeException(e);
} finally {
memberField.setAccessible(false);
}
}
/**
* Binds {@code property} with {@code propertyType} to the field in the
* {@code objectWithMemberFields} instance using {@code memberField} as a
* reference to a member.
*
* @param objectWithMemberFields
* the object that contains (Java) member fields to build and
* bind
* @param memberField
* reference to a member field to bind
* @param property
* property name to bind
* @param propertyType
* type of the property
* @return {@code true} if property is successfully bound
*/
private boolean bindProperty(Object objectWithMemberFields,
Field memberField, String property, Class<?> propertyType) {
Type valueType = GenericTypeReflector.getTypeParameter(
memberField.getGenericType(),
HasValue.class.getTypeParameters()[0]);
if (valueType == null) {
throw new IllegalStateException(String.format(
"Unable to detect value type for the member '%s' in the "
+ "class '%s'.",
memberField.getName(),
objectWithMemberFields.getClass().getName()));
}
if (propertyType.equals(GenericTypeReflector.erase(valueType))) {
HasValue<?> field;
// Get the field from the object
try {
field = (HasValue<?>) ReflectTools.getJavaFieldValue(
objectWithMemberFields, memberField, HasValue.class);
} catch (IllegalArgumentException | IllegalAccessException
| InvocationTargetException e) {
// If we cannot determine the value, just skip the field
return false;
}
if (field == null) {
field = makeFieldInstance(
(Class<? extends HasValue<?>>) memberField.getType());
initializeField(objectWithMemberFields, memberField, field);
}
forField(field).bind(property);
return true;
} else {
throw new IllegalStateException(String.format(
"Property type '%s' doesn't "
+ "match the field type '%s'. "
+ "Binding should be configured manually using converter.",
propertyType.getName(), valueType.getTypeName()));
}
}
/**
* Makes an instance of the field type {@code fieldClass}.
* <p>
* The resulting field instance is used to bind a property to it using the
* {@link #bindInstanceFields(Object)} method.
* <p>
* The default implementation relies on the default constructor of the
* class. If there is no suitable default constructor or you want to
* configure the instantiated class then override this method and provide
* your own implementation.
*
* @see #bindInstanceFields(Object)
* @param fieldClass
* type of the field
* @return a {@code fieldClass} instance object
*/
private HasValue<?> makeFieldInstance(
Class<? extends HasValue<?>> fieldClass) {
try {
return ReflectTools.createInstance(fieldClass);
} catch (IllegalArgumentException e) {
// Rethrow as the exception type declared for bindInstanceFields
throw new IllegalStateException(e);
}
}
/**
* Returns an array containing {@link Field} objects reflecting all the
* fields of the class or interface represented by this Class object. The
* elements in the array returned are sorted in declare order from sub class
* to super class.
*
* @param searchClass
* class to introspect
* @return list of all fields in the class considering hierarchy
*/
private List<Field> getFieldsInDeclareOrder(Class<?> searchClass) {
List<Field> memberFieldInOrder = new ArrayList<>();
while (searchClass != null) {
memberFieldInOrder
.addAll(Arrays.asList(searchClass.getDeclaredFields()));
searchClass = searchClass.getSuperclass();
}
return memberFieldInOrder;
}
private void initializeField(Object objectWithMemberFields,
Field memberField, HasValue<?> value) {
try {
ReflectTools.setJavaFieldValue(objectWithMemberFields, memberField,
value);
} catch (IllegalArgumentException | IllegalAccessException
| InvocationTargetException e) {
throw new IllegalStateException(
String.format("Could not assign value to field '%s'",
memberField.getName()),
e);
}
}
private boolean handleProperty(Field field, Object objectWithMemberFields,
BiFunction<String, Class<?>, Boolean> propertyHandler) {
Optional<PropertyDefinition<BEAN, ?>> descriptor = getPropertyDescriptor(
field);
if (!descriptor.isPresent()) {
return false;
}
String propertyName = descriptor.get().getName();
if (boundProperties.containsKey(propertyName)) {
return false;
}
BindingBuilder<BEAN, ?> tentativeBinding = getIncompleteMemberFieldBinding(
field, objectWithMemberFields);
if (tentativeBinding != null) {
tentativeBinding.bind(propertyName);
return false;
}
Boolean isPropertyBound = propertyHandler.apply(propertyName,
descriptor.get().getType());
assert boundProperties.containsKey(propertyName);
return isPropertyBound;
}
/**
* Gets the binding for a property name. Bindings are available by property
* name if bound using {@link #bind(HasValue, String)},
* {@link BindingBuilder#bind(String)} or indirectly using
* {@link #bindInstanceFields(Object)}.
*
* @param propertyName
* the property name of the binding to get
* @return the binding corresponding to the property name, or an empty
* optional if there is no binding with that property name
*/
public Optional<Binding<BEAN, ?>> getBinding(String propertyName) {
return Optional.ofNullable(boundProperties.get(propertyName));
}
private Optional<PropertyDefinition<BEAN, ?>> getPropertyDescriptor(
Field field) {
PropertyId propertyIdAnnotation = field.getAnnotation(PropertyId.class);
String propertyId;
if (propertyIdAnnotation != null) {
// @PropertyId(propertyId) always overrides property id
propertyId = propertyIdAnnotation.value();
} else {
propertyId = field.getName();
}
String minifiedFieldName = minifyFieldName(propertyId);
return propertySet.getProperties().map(PropertyDefinition::getName)
.filter(name -> minifyFieldName(name).equals(minifiedFieldName))
.findFirst().flatMap(propertySet::getProperty);
}
private String minifyFieldName(String fieldName) {
return fieldName.toLowerCase(Locale.ROOT).replace("_", "");
}
private <V> void fireValueChangeEvent(ValueChangeEvent<V> event) {
getEventRouter().fireEvent(event);
}
/**
* Returns the fields this binder has been bound to.
*
* @return the fields with bindings
* @since 8.1
*/
public Stream<HasValue<?>> getFields() {
return bindings.stream().map(Binding::getField);
}
/**
* Finds and removes all Bindings for the given field. Note that this method
* and other overloads of removeBinding method do not reset component errors
* that might have been added to the field and do not remove required
* indicator of the field no matter if it was set by Binder or not. To reset
* component errors, {@code field.setComponentError(null)} should be called
* and to remove required indicator,
* {@code field.setRequiredIndicatorVisible(false)} should be called.
*
* @see com.vaadin.ui.AbstractComponent#setComponentError
* @see com.vaadin.ui.AbstractComponent#setRequiredIndicatorVisible
*
* @param field
* the field to remove from bindings
*
* @since 8.2
*/
public void removeBinding(HasValue<?> field) {
Objects.requireNonNull(field, "Field can not be null");
Set<BindingImpl<BEAN, ?, ?>> toRemove = getBindings().stream()
.filter(binding -> field.equals(binding.getField()))
.collect(Collectors.toSet());
toRemove.forEach(Binding::unbind);
}
/**
* Removes the given Binding from this Binder.
*
* @see Binder#removeBinding(HasValue)
* @see com.vaadin.ui.AbstractComponent#setComponentError
* @see com.vaadin.ui.AbstractComponent#setRequiredIndicatorVisible
*
* @param binding
* the binding to remove
*
* @since 8.2
*
* @throws IllegalArgumentException
* if the given Binding is not in this Binder
*/
public void removeBinding(Binding<BEAN, ?> binding)
throws IllegalArgumentException {
Objects.requireNonNull(binding, "Binding can not be null");
if (!bindings.contains(binding)) {
throw new IllegalArgumentException(
"Provided Binding is not in this Binder");
}
binding.unbind();
}
/**
* Removes (internally) the {@code Binding} from the bound properties map
* (if present) and from the list of {@code Binding}s. Note that this DOES
* NOT remove the {@code ValueChangeListener} that the {@code Binding} might
* have registered with any {@code HasValue}s or decouple the {@code Binder}
* from within the {@code Binding}. To do that, use
*
* {@link Binding#unbind()}
*
* This method should just be used for internal cleanup.
*
* @param binding
* The {@code Binding} to remove from the binding map
*
* @since 8.2
*/
protected void removeBindingInternal(Binding<BEAN, ?> binding) {
if (bindings.remove(binding)) {
boundProperties.entrySet()
.removeIf(entry -> entry.getValue().equals(binding));
}
}
/**
* Finds and removes the Binding for the given property name.
*
* @see Binder#removeBinding(HasValue)
* @see com.vaadin.ui.AbstractComponent#setComponentError
* @see com.vaadin.ui.AbstractComponent#setRequiredIndicatorVisible
*
* @param propertyName
* the propertyName to remove from bindings
*
* @since 8.2
*/
public void removeBinding(String propertyName) {
Objects.requireNonNull(propertyName, "Property name can not be null");
Optional.ofNullable(boundProperties.get(propertyName))
.ifPresent(Binding::unbind);
}
/**
* Control whether validators including bean level validators are
* disabled or enabled globally for this Binder.
*
* @param validatorsDisabled Boolean value
*
* @since 8.11
*/
public void setValidatorsDisabled(boolean validatorsDisabled) {
this.validatorsDisabled = validatorsDisabled;
}
/**
* Returns if the validators including bean level validators
* are disabled or enabled for this Binder.
*
* @return Boolean value
*
* @since 8.11
*/
public boolean isValidatorsDisabled() {
return validatorsDisabled;
}
private static final Logger getLogger() {
return Logger.getLogger(Binder.class.getName());
}
}
|