summaryrefslogtreecommitdiffstats
path: root/ast/intramap.c
blob: 67eebb2943cce0bf40d79d913753ff6e5db2b6ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
/*
*class++
*  Name:
*     IntraMap

*  Purpose:
c     Map points using a private transformation function.
f     Map points using a private transformation routine.

*  Constructor Function:
c     astIntraMap (also see astIntraReg)
f     AST_INTRAMAP (also see AST_INTRAREG)

*  Description:
c     The IntraMap class provides a specialised form of Mapping which
c     encapsulates a privately-defined coordinate transformation
c     other AST Mapping. This allows you to create Mappings that
c     perform any conceivable coordinate transformation.
f     The IntraMap class provides a specialised form of Mapping which
f     encapsulates a privately-defined coordinate transformation
f     routine (e.g. written in Fortran) so that it may be used like
f     any other AST Mapping. This allows you to create Mappings that
f     perform any conceivable coordinate transformation.
*
*     However, an IntraMap is intended for use within a single program
*     or a private suite of software, where all programs have access
*     to the same coordinate transformation functions (i.e. can be
*     linked against them). IntraMaps should not normally be stored in
*     datasets which may be exported for processing by other software,
*     since that software will not have the necessary transformation
*     functions available, resulting in an error.
*
c     You must register any coordinate transformation functions to be
c     used using astIntraReg before creating an IntraMap.
f     You must register any coordinate transformation functions to be
f     used using AST_INTRAREG before creating an IntraMap.

*  Inheritance:
*     The IntraMap class inherits from the Mapping class.

*  Attributes:
*     In addition to those attributes common to all Mappings, every
*     IntraMap also has the following attributes:
*
*     - IntraFlag: IntraMap identification string

*  Functions:
c     The IntraMap class does not define any new functions beyond those
f     The IntraMap class does not define any new routines beyond those
*     which are applicable to all Mappings.

*  Copyright:
*     Copyright (C) 1997-2006 Council for the Central Laboratory of the
*     Research Councils

*  Licence:
*     This program is free software: you can redistribute it and/or
*     modify it under the terms of the GNU Lesser General Public
*     License as published by the Free Software Foundation, either
*     version 3 of the License, or (at your option) any later
*     version.
*     
*     This program is distributed in the hope that it will be useful,
*     but WITHOUT ANY WARRANTY; without even the implied warranty of
*     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*     GNU Lesser General Public License for more details.
*     
*     You should have received a copy of the GNU Lesser General
*     License along with this program.  If not, see
*     <http://www.gnu.org/licenses/>.

*  Authors:
*     RFWS: R.F. Warren-Smith (Starlink)

*  History:
*     16-MAR-1998 (RFWS):
*        Original version.
*     15-SEP-1999 (RFWS):
*        Added a "this" pointer to the external transformation function
*        used by an IntraMap.
*     20-JUN-2001 (DSB):
*        Add an "astClone" call to prevent the pointer for "this" being
*        annulled at the end of the Transform method.
*     8-JAN-2003 (DSB):
*        Changed private InitVtab method to protected astInitIntraMapVtab
*        method.
*     7-DEC-2005 (DSB):
*        Free memory allocated by calls to astReadString.
*     14-FEB-2006 (DSB):
*        Override astGetObjSize.
*     1-MAR-2006 (DSB):
*        Replace astSetPermMap within DEBUG blocks by astBeginPM/astEndPM.
*     10-MAY-2006 (DSB):
*        Override astEqual.
*class--
*/

/* Module Macros. */
/* ============== */
/* Set the name of the class we are implementing. This indicates to
   the header files that define class interfaces that they should make
   "protected" symbols available. */
#define astCLASS IntraMap

/* Include files. */
/* ============== */
/* Interface definitions. */
/* ---------------------- */

#include "globals.h"             /* Thread-safe global data access */
#include "error.h"               /* Error reporting facilities */
#include "memory.h"              /* Memory allocation facilities */
#include "globals.h"             /* Thread-safe global data access */
#include "object.h"              /* Base Object class */
#include "pointset.h"            /* Sets of points/coordinates */
#include "mapping.h"             /* Coordinate mappings (parent class) */
#include "channel.h"             /* I/O channels */
#include "unitmap.h"             /* Unit (identity) Mappings */
#include "intramap.h"            /* Interface definition for this class */

/* Error code definitions. */
/* ----------------------- */
#include "ast_err.h"             /* AST error codes */

/* C header files. */
/* --------------- */
#include <ctype.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>

/* Module Variables. */
/* ================= */

/* Pointer to array of transformation function data. */
static AstIntraMapTranData *tran_data = NULL;

/* Number of transformation functions registered. */
static int tran_nfun = 0;

/* Address of this static variable is used as a unique identifier for
   member of this class. */
static int class_check;

/* Pointers to parent class methods which are used or extended by this
   class. */
static int (* parent_getobjsize)( AstObject *, int * );
static AstPointSet *(* parent_transform)( AstMapping *, AstPointSet *, int, AstPointSet *, int * );
static const char *(* parent_getattrib)( AstObject *, const char *, int * );
static int (* parent_getnin)( AstMapping *, int * );
static int (* parent_getnout)( AstMapping *, int * );
static int (* parent_testattrib)( AstObject *, const char *, int * );
static void (* parent_clearattrib)( AstObject *, const char *, int * );
static void (* parent_setattrib)( AstObject *, const char *, int * );

/* Define macros for accessing each item of thread specific global data. */
#ifdef THREAD_SAFE

/* Define how to initialise thread-specific globals. */
#define GLOBAL_inits \
   globals->Class_Init = 0;

/* Create the function that initialises global data for this module. */
astMAKE_INITGLOBALS(IntraMap)

/* Define macros for accessing each item of thread specific global data. */
#define class_init astGLOBAL(IntraMap,Class_Init)
#define class_vtab astGLOBAL(IntraMap,Class_Vtab)


/* A mutex used to serialise invocations of the IntraReg function (the
   only function allowed to modify the contents of the static tran_data
   array). */
static pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
#define LOCK_MUTEX1 pthread_mutex_lock( &mutex1 );
#define UNLOCK_MUTEX1 pthread_mutex_unlock( &mutex1 );

/* A mutex used to serialise invocations of extrnal transformation
   functions (which may not be thread-safe). */
static pthread_mutex_t mutex2 = PTHREAD_MUTEX_INITIALIZER;
#define LOCK_MUTEX2 pthread_mutex_lock( &mutex2 );
#define UNLOCK_MUTEX2 pthread_mutex_unlock( &mutex2 );

/* If thread safety is not needed, declare and initialise globals at static
   variables. */
#else


/* Define the class virtual function table and its initialisation flag
   as static variables. */
static AstIntraMapVtab class_vtab;   /* Virtual function table */
static int class_init = 0;       /* Virtual function table initialised? */

#define LOCK_MUTEX1
#define UNLOCK_MUTEX1

#define LOCK_MUTEX2
#define UNLOCK_MUTEX2

#endif

/* External Interface Function Prototypes. */
/* ======================================= */
/* The following functions have public prototypes only (i.e. no
   protected prototypes), so we must provide local prototypes for use
   within this module. */
AstIntraMap *astIntraMapId_( const char *, int, int, const char *, ... );
void astIntraRegFor_( const char *, int, int, void (* tran)( AstMapping *, int, int, const double *[], int, int, double *[] ), void (* tran_wrap)( void (*)( AstMapping *, int, int, const double *[], int, int, double *[] ), AstMapping *, int, int, const double *[], int, int, double *[], int * ), unsigned int, const char *, const char *, const char *, int * );

/* Prototypes for Private Member Functions. */
/* ======================================== */
static AstPointSet *Transform( AstMapping *, AstPointSet *, int, AstPointSet *, int * );
static char *CleanName( const char *, const char *, int * );
static int GetObjSize( AstObject *, int * );
static const char *GetAttrib( AstObject *, const char *, int * );
static const char *GetIntraFlag( AstIntraMap *, int * );
static int MapMerge( AstMapping *, int, int, int *, AstMapping ***, int **, int * );
static int TestAttrib( AstObject *, const char *, int * );
static int TestIntraFlag( AstIntraMap *, int * );
static void ClearAttrib( AstObject *, const char *, int * );
static void ClearIntraFlag( AstIntraMap *, int * );
static void Copy( const AstObject *, AstObject *, int * );
static void Delete( AstObject *, int * );
static void Dump( AstObject *, AstChannel *, int * );
static int Equal( AstObject *, AstObject *, int * );
static void IntraReg( const char *, int, int, void (*)( AstMapping *, int, int, const double *[], int, int, double *[] ), void (*)( void (*)( AstMapping *, int, int, const double *[], int, int, double *[] ), AstMapping *, int, int, const double *[], int, int, double *[], int * ), unsigned int, const char *, const char *, const char *, int * );
static void SetAttrib( AstObject *, const char *, int * );
static void SetIntraFlag( AstIntraMap *, const char *, int * );
static void TranWrap( void (*)( AstMapping *, int, int, const double *[], int, int, double *[] ), AstMapping *, int, int, const double *[], int, int, double *[], int * );

/* Member functions. */
/* ================= */
static char *CleanName( const char *name, const char *caller, int *status ) {
/*
*  Name:
*     CleanName

*  Purpose:
*     Clean (and validate) a transformation function name.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     char *CleanName( const char *name, const char *caller, int *status )

*  Class Membership:
*     IntraMap member function.

*  Description:
*     This function cleans a transformation function name by removing
*     all white space. It returns a copy of the cleaned name held in
*     dynamically allocated memory. If the name is entirely blank, an
*     error is reported.

*  Parameters:
*     name
*        Pointer to a null-terminated string containing the name to be
*        cleaned.
*     caller
*        Pointer to a null-terminated string containing the name of
*        the calling function. This is only used to construct error
*        messages.
*     status
*        Pointer to the inherited status variable.

*  Returned Value:
*     Pointer to a dynamically-allocated null-terminated string
*     containing the cleaned name. A NULL pointer is returned if the
*     name was entirely blank.

*  Notes:
*     - The memory holding the returned string should be deallocated
*     (using astFree) when no longer required.
*     - A NULL pointer will be returned if this function is invoked
*     with the global error status set, or if it should fail for any
*     reason.
*/

/* Local Variables: */
   char *result;                 /* Pointer to result string */
   int i;                        /* Loop counter for input characters */
   int len;                      /* Length of name */

/* Initialise. */
   result = NULL;

/* Check the global error status. */
   if ( !astOK ) return result;

/* Determine the number of non-blank characters in the name supplied. */
   len = 0;
   for ( i = 0; name[ i ]; i++ ) if ( !isspace( (int) name[ i ] ) ) len++;

/* If the name is entirely blank, then report an error. */
   if ( !len ) {
      astError( AST__ITFNI, "%s: Invalid blank transformation function name "
                            "given.", status, caller );

/* Otherwise, allocate memory to hold the cleaned name. */
   } else {
      result = astMalloc( (size_t) ( len + 1 ) );

/* If OK, make a copy of the name with white space removed. */
      if ( astOK ) {
         len = 0;
         for ( i = 0; name[ i ]; i++ ) {
            if ( !isspace( (int) name[ i ] ) ) result[ len++ ] = name[ i ];
         }

/* Terminate the result string. */
         result[ len ] = '\0';
      }
   }

/* Return the result pointer. */
   return result;
}

static void ClearAttrib( AstObject *this_object, const char *attrib, int *status ) {
/*
*  Name:
*     ClearAttrib

*  Purpose:
*     Clear an attribute value for an IntraMap.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     void ClearAttrib( AstObject *this, const char *attrib, int *status )

*  Class Membership:
*     IntraMap member function (over-rides the astClearAttrib protected
*     method inherited from the Mapping class).

*  Description:
*     This function clears the value of a specified attribute for an
*     IntraMap, so that the default value will subsequently be used.

*  Parameters:
*     this
*        Pointer to the IntraMap.
*     attrib
*        Pointer to a null terminated string specifying the attribute
*        name.  This should be in lower case with no surrounding white
*        space.
*     status
*        Pointer to the inherited status variable.
*/

/* Local Variables: */
   AstIntraMap *this;            /* Pointer to the IntraMap structure */

/* Check the global error status. */
   if ( !astOK ) return;

/* Obtain a pointer to the IntraMap structure. */
   this = (AstIntraMap *) this_object;

/* Check the attribute name and clear the appropriate attribute. */

/* IntraFlag. */
/* ---------- */
   if ( !strcmp( attrib, "intraflag" ) ) {
      astClearIntraFlag( this );

/* Not recognised. */
/* --------------- */
/* If the attribute is not recognised, pass it on to the parent method
   for further interpretation. */
   } else {
      (*parent_clearattrib)( this_object, attrib, status );
   }
}

static int Equal( AstObject *this_object, AstObject *that_object, int *status ) {
/*
*  Name:
*     Equal

*  Purpose:
*     Test if two IntraMaps are equivalent.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     int Equal( AstObject *this, AstObject *that, int *status )

*  Class Membership:
*     IntraMap member function (over-rides the astEqual protected
*     method inherited from the astMapping class).

*  Description:
*     This function returns a boolean result (0 or 1) to indicate whether
*     two IntraMaps are equivalent.

*  Parameters:
*     this
*        Pointer to the first Object (a IntraMap).
*     that
*        Pointer to the second Object.
*     status
*        Pointer to the inherited status variable.

*  Returned Value:
*     One if the IntraMaps are equivalent, zero otherwise.

*  Notes:
*     - A value of zero will be returned if this function is invoked
*     with the global status set, or if it should fail for any reason.
*/

/* Local Variables: */
   AstIntraMap *that;
   AstIntraMap *this;
   int nin;
   int nout;
   int result;

/* Initialise. */
   result = 0;

/* Check the global error status. */
   if ( !astOK ) return result;

/* Obtain pointers to the two IntraMap structures. */
   this = (AstIntraMap *) this_object;
   that = (AstIntraMap *) that_object;

/* Check the second object is a IntraMap. We know the first is a
   IntraMap since we have arrived at this implementation of the virtual
   function. */
   if( astIsAIntraMap( that ) ) {

/* Get the number of inputs and outputs and check they are the same for both. */
      nin = astGetNin( this );
      nout = astGetNout( this );
      if( astGetNin( that ) == nin && astGetNout( that ) == nout ) {

/* If the Invert flags for the two IntraMaps differ, it may still be possible
   for them to be equivalent. First compare the IntraMaps if their Invert
   flags are the same. In this case all the attributes of the two IntraMaps
   must be identical. */
         if( astGetInvert( this ) == astGetInvert( that ) ) {

            if( this->ifun == that->ifun &&
                this->intraflag && that->intraflag &&
                !strcmp( this->intraflag, that->intraflag ) ) {
               result = 1;
            }

/* If the Invert flags for the two IntraMaps differ, the attributes of the two
   IntraMaps must be inversely related to each other. */
         } else {

/* In the specific case of a IntraMap, Invert flags must be equal. */
            result = 0;

         }
      }
   }

/* If an error occurred, clear the result value. */
   if ( !astOK ) result = 0;

/* Return the result, */
   return result;
}

static int GetObjSize( AstObject *this_object, int *status ) {
/*
*  Name:
*     GetObjSize

*  Purpose:
*     Return the in-memory size of an Object.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     int GetObjSize( AstObject *this, int *status )

*  Class Membership:
*     IntraMap member function (over-rides the astGetObjSize protected
*     method inherited from the parent class).

*  Description:
*     This function returns the in-memory size of the supplied IntraMap,
*     in bytes.

*  Parameters:
*     this
*        Pointer to the IntraMap.
*     status
*        Pointer to the inherited status variable.

*  Returned Value:
*     The Object size, in bytes.

*  Notes:
*     - A value of zero will be returned if this function is invoked
*     with the global status set, or if it should fail for any reason.
*/

/* Local Variables: */
   AstIntraMap *this;         /* Pointer to IntraMap structure */
   int result;                /* Result value to return */

/* Initialise. */
   result = 0;

/* Check the global error status. */
   if ( !astOK ) return result;

/* Obtain a pointers to the IntraMap structure. */
   this = (AstIntraMap *) this_object;

/* Invoke the GetObjSize method inherited from the parent class, and then
   add on any components of the class structure defined by thsi class
   which are stored in dynamically allocated memory. */
   result = (*parent_getobjsize)( this_object, status );
   result += astTSizeOf( this->intraflag );

/* If an error occurred, clear the result value. */
   if ( !astOK ) result = 0;

/* Return the result, */
   return result;
}

static const char *GetAttrib( AstObject *this_object, const char *attrib, int *status ) {
/*
*  Name:
*     GetAttrib

*  Purpose:
*     Get the value of a specified attribute for an IntraMap.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     const char *GetAttrib( AstObject *this, const char *attrib, int *status )

*  Class Membership:
*     IntraMap member function (over-rides the protected astGetAttrib
*     method inherited from the Mapping class).

*  Description:
*     This function returns a pointer to the value of a specified
*     attribute for a IntraMap, formatted as a character string.

*  Parameters:
*     this
*        Pointer to the IntraMap.
*     attrib
*        Pointer to a null-terminated string containing the name of
*        the attribute whose value is required. This name should be in
*        lower case, with all white space removed.
*     status
*        Pointer to the inherited status variable.

*  Returned Value:
*     - Pointer to a null-terminated string containing the attribute
*     value.

*  Notes:
*     - The returned string pointer may point at memory allocated
*     within the IntraMap, or at static memory. The contents of the
*     string may be over-written or the pointer may become invalid
*     following a further invocation of the same function or any
*     modification of the IntraMap. A copy of the string should
*     therefore be made if necessary.
*     - A NULL pointer will be returned if this function is invoked
*     with the global error status set, or if it should fail for any
*     reason.
*/

/* Local Variables: */
   AstIntraMap *this;            /* Pointer to the IntraMap structure */
   const char *result;           /* Pointer value to return */

/* Initialise. */
   result = NULL;

/* Check the global error status. */
   if ( !astOK ) return result;

/* Obtain a pointer to the IntraMap structure. */
   this = (AstIntraMap *) this_object;

/* Compare "attrib" with each recognised attribute name in turn,
   obtaining the value of the required attribute. If necessary, write
   the value into "buff" as a null-terminated string in an appropriate
   format.  Set "result" to point at the result string. */

/* IntraFlag. */
/* ---------- */
   if ( !strcmp( attrib, "intraflag" ) ) {
      result = astGetIntraFlag( this );

/* Not recognised. */
/* --------------- */
/* If the attribute name was not recognised, pass it on to the parent
   method for further interpretation. */
   } else {
      result = (*parent_getattrib)( this_object, attrib, status );
   }

/* Return the result. */
   return result;
}

void astInitIntraMapVtab_(  AstIntraMapVtab *vtab, const char *name, int *status ) {
/*
*+
*  Name:
*     astInitIntraMapVtab

*  Purpose:
*     Initialise a virtual function table for an IntraMap.

*  Type:
*     Protected function.

*  Synopsis:
*     #include "intramap.h"
*     void astInitIntraMapVtab( AstIntraMapVtab *vtab, const char *name )

*  Class Membership:
*     IntraMap vtab initialiser.

*  Description:
*     This function initialises the component of a virtual function
*     table which is used by the IntraMap class.

*  Parameters:
*     vtab
*        Pointer to the virtual function table. The components used by
*        all ancestral classes will be initialised if they have not already
*        been initialised.
*     name
*        Pointer to a constant null-terminated character string which contains
*        the name of the class to which the virtual function table belongs (it
*        is this pointer value that will subsequently be returned by the Object
*        astClass function).
*-
*/

/* Local Variables: */
   astDECLARE_GLOBALS            /* Pointer to thread-specific global data */
   AstObjectVtab *object;        /* Pointer to Object component of Vtab */
   AstMappingVtab *mapping;      /* Pointer to Mapping component of Vtab */

/* Check the global error status. */
   if ( !astOK ) return;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(NULL);

/* Initialize the component of the virtual function table used by the
   parent class. */
   astInitMappingVtab( (AstMappingVtab *) vtab, name );

/* Store a unique "magic" value in the virtual function table. This
   will be used (by astIsAIntraMap) to determine if an object belongs
   to this class.  We can conveniently use the address of the (static)
   class_check variable to generate this unique value. */
   vtab->id.check = &class_check;
   vtab->id.parent = &(((AstMappingVtab *) vtab)->id);

/* Initialise member function pointers. */
/* ------------------------------------ */
/* Store pointers to the member functions (implemented here) that provide
   virtual methods for this class. */
   vtab->ClearIntraFlag = ClearIntraFlag;
   vtab->GetIntraFlag = GetIntraFlag;
   vtab->SetIntraFlag = SetIntraFlag;
   vtab->TestIntraFlag = TestIntraFlag;

/* Save the inherited pointers to methods that will be extended, and
   replace them with pointers to the new member functions. */
   object = (AstObjectVtab *) vtab;
   mapping = (AstMappingVtab *) vtab;
   parent_getobjsize = object->GetObjSize;
   object->GetObjSize = GetObjSize;

   parent_clearattrib = object->ClearAttrib;
   object->ClearAttrib = ClearAttrib;
   parent_getattrib = object->GetAttrib;
   object->GetAttrib = GetAttrib;
   parent_setattrib = object->SetAttrib;
   object->SetAttrib = SetAttrib;
   parent_testattrib = object->TestAttrib;
   object->TestAttrib = TestAttrib;

   parent_transform = mapping->Transform;
   mapping->Transform = Transform;

/* Store replacement pointers for methods which will be over-ridden by
   new member functions implemented here. */
   object->Equal = Equal;
   mapping->MapMerge = MapMerge;

/* Store pointers to inherited methods that will be invoked explicitly
   by this class. */
   parent_getnin = mapping->GetNin;
   parent_getnout = mapping->GetNout;

/* Declare the copy constructor, destructor and class dump
   function. */
   astSetCopy( vtab, Copy );
   astSetDelete( vtab, Delete );
   astSetDump( vtab, Dump, "IntraMap",
               "Map points using a private transformation function" );

/* If we have just initialised the vtab for the current class, indicate
   that the vtab is now initialised, and store a pointer to the class
   identifier in the base "object" level of the vtab. */
   if( vtab == &class_vtab ) {
      class_init = 1;
      astSetVtabClassIdentifier( vtab, &(vtab->id) );
   }
}

static void IntraReg( const char *name, int nin, int nout,
                      void (* tran)( AstMapping *, int, int, const double *[],
                                     int, int, double *[] ),
                      void (* tran_wrap)( void (*)( AstMapping *, int, int,
                                                    const double *[], int, int,
                                                    double *[] ),
                                          AstMapping *, int, int,
                                          const double *[], int, int,
                                          double *[], int * ),
                      unsigned int flags,
                      const char *purpose, const char *author,
                      const char *contact, int *status ) {
/*
*  Name:
*     IntraReg

*  Purpose:
*     Register a transformation function for use by an IntraMap.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     void IntraReg( const char *name, int nin, int nout,
*                    void (* tran)( AstMapping *, int, int, const double *[],
*                                   int, int, double *[] ),
*                    void (* tran_wrap)( void (*)( AstMapping *, int, int,
*                                                  const double *[], int, int,
*                                                  double *[] ),
*                                        AstMapping *, int, int,
*                                        const double *[], int, int,
*                                        double *[], int * ),
*                    unsigned int flags,
*                    const char *purpose, const char *author,
*                    const char *contact, int *status )

*  Class Membership:
*     IntraMap member function.

*  Description:
*     This function registers a transformation function which will
*     later be used by an IntraMap and associates it with a name. It
*     also stores related information which will be required by the
*     IntraMap.

*  Parameters:
*     name
*        Pointer to a null-terminated string containing the name to be
*        used to identify the transformation function. This string is
*        case sensitive. All white space is removed before use.
*     nin
*        The number of input coordinates per point (or AST__ANY if any
*        number are allowed).
*     nout
*        The number of output coordinates per point (or AST__ANY if
*        any number are allowed).
*     tran
*        Pointer to the transformation function to be registered.
*        This may have any form of interface, which need not be known
*        to the implementation of the IntraMap class. Instead, the
*        method of invoking the transformation function should be
*        encapsulated in the "tran_wrap" function (below).
*     tran_wrap
*        Pointer to a wrapper function appropriate to the transformation
*        function (above). This wrapper function should have the same
*        interface as astTranP (from the Mapping class), except that it takes
*        a pointer to a function like "tran" as an additional first argument.
*        The purpose of this wrapper is to invoke the transformation function
*        via the pointer supplied, to pass it the necessary information
*        derived from the remainder of its arguments, and then to return the
*        results.
*     flags
*        This argument may be used to supply a set of flags which
*        control the behaviour of any IntraMap which uses the
*        registered transformation function. See the public interface
*        for astIntraReg for details.
*     purpose
*        Pointer to a null-terminated string containing a short (one
*        line) textual comment to describe the purpose of the
*        transformation function.
*     author
*        Pointer to a null-terminated string containing the name of
*        the author of the transformation function.
*     contact
*        Pointer to a null-terminated string containing contact
*        details for the author of the function (e.g. an e-mail or WWW
*        address).
*     status
*        Pointer to the inherited status variable.
*/

/* Local Variables: */
   astDECLARE_GLOBALS            /* Pointer to thread-specific global data */
   char *clname;                 /* Pointer to cleaned name string */
   int found;                    /* Transformation function found? */
   int ifun;                     /* Loop counter for function information */

/* Check the global error status. */
   if ( !astOK ) return;

/* This function modifies the global static tran_data array, so we use a
   mutex to ensure that only one thread can run this function at any one
   time. */
   LOCK_MUTEX1;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(NULL);

/* Indicate that subsequent memory allocations may never be freed (other
   than by any AST exit handler). */
   astBeginPM;

/* Clean (and validate) the name supplied. */
   clname = CleanName( name, "astIntraReg", status );

/* If OK, also validate the numbers of input and output
   coordinates. Report an error if necessary. */
   if ( astOK ) {
      if ( ( nin < 0 ) && ( nin != AST__ANY ) ) {
         astError( AST__BADNI, "astIntraReg(%s): Bad number of input "
                               "coordinates (%d).", status, clname, nin );
         astError( AST__BADNI, "This number should be zero or more (or "
                               "AST__ANY)." , status);

      } else if ( ( nout < 0 ) && ( nout != AST__ANY ) ) {
         astError( AST__BADNO, "astIntraReg(%s): Bad number of output "
                               "coordinates (%d).", status, clname, nout );
         astError( AST__BADNO, "This number should be zero or more (or "
                               "AST__ANY)." , status);
      }
   }

/* Search the array of transformation function data to see if a
   function with the same name has already been registered. */
   if ( astOK ) {
      found = 0;
      for ( ifun = 0; ifun < tran_nfun; ifun++ ) {
         if ( ( found = !strcmp( clname, tran_data[ ifun ].name ) ) ) break;
      }

/* If so, then check that the information supplied this time is
   identical to that supplied before. If any discrepancy is found,
   report an error. */
      if ( found ) {
         if ( ( nin != tran_data[ ifun ].nin ) ||
              ( nout != tran_data[ ifun ].nout ) ||
              ( tran != tran_data[ ifun ].tran ) ||
              ( tran_wrap != tran_data[ ifun ].tran_wrap ) ||
              ( flags != tran_data[ ifun ].flags ) ||
              strcmp( purpose, tran_data[ ifun ].purpose ) ||
              strcmp( author, tran_data[ ifun ].author ) ||
              strcmp( contact, tran_data[ ifun ].contact ) ) {
            astError( AST__MRITF, "astIntraReg: Invalid attempt to register "
                                  "the transformation function name \"%s\" "
                                  "multiple times.", status, clname );
         }

/* If this is a new function, extend the array of transformation
   function data to accommodate it. */
      } else {

         tran_data = astGrow( tran_data, tran_nfun + 1, sizeof( AstIntraMapTranData ) );

/* Store the information supplied. */
         if ( astOK ) {
            tran_data[ tran_nfun ].name = clname;
            tran_data[ tran_nfun ].nin = nin;
            tran_data[ tran_nfun ].nout = nout;
            tran_data[ tran_nfun ].tran = tran;
            tran_data[ tran_nfun ].tran_wrap = tran_wrap;
            tran_data[ tran_nfun ].flags = flags;
            tran_data[ tran_nfun ].purpose =
               astStore( NULL, purpose, strlen( purpose ) + (size_t) 1 );
            tran_data[ tran_nfun ].author =
               astStore( NULL, author, strlen( author ) + (size_t) 1 );
            tran_data[ tran_nfun ].contact =
               astStore( NULL, contact, strlen( contact ) + (size_t) 1 );

/* If successful, increment the count of transformation functions
   registered. */
            if ( astOK ) {
               tran_nfun++;

/* If an error occurred, free any memory that was allocated. */
            } else {
               tran_data[ tran_nfun ].name = NULL;
               tran_data[ tran_nfun ].purpose =
                  astFree( tran_data[ tran_nfun ].purpose );
               tran_data[ tran_nfun ].author =
                  astFree( tran_data[ tran_nfun ].author );
               tran_data[ tran_nfun ].contact =
                  astFree( tran_data[ tran_nfun ].contact );
            }
         }
      }
   }

/* If an error occurred, free the memory holding the cleaned function
   name. */
   if ( !astOK ) clname = astFree( clname );

/* Mark the end of the section in which memory allocations may never be
   freed (other than by any AST exit handler). */
   astEndPM;

/* Unlock the mutex that ensures that only one thread can run this function
   at any one time. */
   UNLOCK_MUTEX1;

}

void astIntraReg_( const char *name, int nin, int nout,
                   void (* tran)( AstMapping *, int, int, const double *[],
                                  int, int, double *[] ),
                   unsigned int flags, const char *purpose, const char *author,
                   const char *contact, int *status ) {
/*
*++
*  Name:
c     astIntraReg
f     AST_INTRAREG

*  Purpose:
c     Register a transformation function for use by an IntraMap.
f     Register a transformation routine for use by an IntraMap.

*  Type:
*     Public function.

*  Synopsis:
c     #include "intramap.h"
c     astIntraReg( const char *name, int nin, int nout,
c                  void (* tran)( AstMapping *, int, int, const double *[],
c                                 int, int, double *[] ),
c                  unsigned int flags, const char *purpose, const char *author,
c                  const char *contact )
f     CALL AST_INTRAREG( NAME, NIN, NOUT, TRAN, FLAGS, PURPOSE, AUTHOR,
f                        CONTACT, STATUS )

*  Class Membership:
*     IntraMap member function.

*  Description:
c     This function registers a privately-defined coordinate
c     transformation function written in C so that it may be used to
c     create an IntraMap. An IntraMap is a specialised form of Mapping
c     which encapsulates the C function so that it may be used like
c     any other AST Mapping. This allows you to create Mappings that
c     perform any conceivable coordinate transformation.
f     This function registers a privately-defined coordinate
f     transformation routine written in Fortran so that it may be used
f     to create an IntraMap. An IntraMap is a specialised form of
f     Mapping which encapsulates the Fortran routine so that it may be
f     used like any other AST Mapping. This allows you to create
f     Mappings that perform any conceivable coordinate transformation.
*
c     Registration of relevant transformation functions is required
c     before using the astIntraMap constructor function to create an
c     IntraMap or reading an external representation of an IntraMap
c     from a Channel.
f     Registration of relevant transformation routines is required
f     before using the AST_INTRAMAP constructor function to create an
f     IntraMap or reading an external representation of an IntraMap
f     from a Channel.

*  Parameters:
c     name
f     NAME = CHARACTER * ( * ) (Given)
c        Pointer to a null-terminated string containing a unique name
c        to be associated with the transformation function in order to
c        identify it. This name is case sensitive. All white space
c        will be removed before use.
f        A character string containing a unique name to be associated
f        with the transformation routine in order to identify it. This
f        name is case sensitive. All white space will be removed
f        before use.
c     nin
f     NIN = INTEGER (Given)
c        The number of input coordinates accepted by the
c        transformation function (i.e. the number of dimensions of the
c        space in which the input points reside). A value of AST__ANY
c        may be given if the function is able to accommodate a
c        variable number of input coordinates.
f        The number of input coordinates accepted by the
f        transformation routine (i.e. the number of dimensions of the
f        space in which the input points reside). A value of AST__ANY
f        may be given if the routine is able to accommodate a variable
f        number of input coordinates.
c     nout
f     NOUT = INTEGER (Given)
c        The number of output coordinates produced by the
c        transformation function (i.e. the number of dimensions of the
c        space in which the output points reside). A value of AST__ANY
c        may be given if the function is able to produce a variable
c        number of output coordinates.
f        The number of output coordinates produced by the
f        transformation routine (i.e. the number of dimensions of the
f        space in which the output points reside). A value of AST__ANY
f        may be given if the routine is able to produce a variable
f        number of output coordinates.
c     tran
f     TRAN = SUBROUTINE (Given)
c        Pointer to the transformation function to be registered.
c        This function should perform whatever coordinate
c        transformations are required and should have an interface
c        like astTranP (q.v.).
f        The transformation routine to be registered.  This routine
f        should perform whatever coordinate transformations are
f        required and should have an interface like AST_TRANN (q.v.).
f
f        This transformation routine must also appear in an EXTERNAL
f        statement in the routine which calls AST_INTRAREG.
c     flags
f     FLAGS = INTEGER (Given)
c        This value may be used to supply a set of flags which
c        describe the transformation function and which may affect the
c        behaviour of any IntraMap which uses it.  Often, a value of
c        zero will be given here, but you may also supply the bitwise
c        OR of a set of flags as described in the "Transformation
c        Flags" section (below).
f        This value may be used to supply a set of flags which
f        describe the transformation routine and which may affect the
f        behaviour of any IntraMap which uses it.  Often, a value of
f        zero will be given here, but you may also supply the sum of a
f        set of flags as described in the "Transformation Flags"
f        section (below).
c     purpose
f     PURPOSE = CHARACTER * ( * ) (Given)
c        Pointer to a null-terminated string containing a short (one
c        line) textual comment to describe the purpose of the
c        transformation function.
f        A character string containing a short (one line) textual
f        comment to describe the purpose of the transformation
f        routine.
c     author
f     AUTHOR = CHARACTER * ( * ) (Given)
c        Pointer to a null-terminated string containing the name of
c        the author of the transformation function.
f        A character string containing the name of the author of the
f        transformation routine.
c     contact
f     CONTACT = CHARACTER * ( * ) (Given)
c        Pointer to a null-terminated string containing contact
c        details for the author of the transformation function
c        (e.g. an e-mail or WWW address). If any IntraMap which uses
c        this transformation function is exported as part of a dataset
c        to an external user who does not have access to the function,
c        then these contact details should allow them to obtain the
c        necessary code.
f        A character string containing contact details for the author
f        of the transformation routine (e.g. an e-mail or WWW
f        address). If any IntraMap which uses this transformation
f        routine is exported as part of a dataset to an external user
f        who does not have access to the routine, then these contact
f        details should allow them to obtain the necessary code.
f     STATUS = INTEGER (Given and Returned)
f        The global status.

*  Notes:
c     - Beware that an external representation of an IntraMap (created
c     by writing it to a Channel) will not include the coordinate
c     transformation function which it uses, so will only refer to the
c     function by its name (as assigned using astIntraReg).
c     Consequently, the external representation cannot be utilised by
c     another program unless that program has also registered the same
c     transformation function with the same name using an identical
c     invocation of astIntraReg. If no such registration has been
c     performed, then attempting to read the external representation
c     will result in an error.
f     - Beware that an external representation of an IntraMap (created
f     by writing it to a Channel) will not include the coordinate
f     transformation routine which it uses, so will only refer to the
f     routine by its name (as assigned using AST_INTRAREG).
f     Consequently, the external representation cannot be utilised by
f     another program unless that program has also registered the same
f     transformation routine with the same name using an identical
f     invocation of AST_INTRAREG. If no such registration has been
f     performed, then attempting to read the external representation
f     will result in an error.
c     - You may use astIntraReg to register a transformation function
c     with the same name more than once, but only if the arguments
c     supplied are identical on each occasion (i.e there is no way of
c     changing things once a function has been successfully registered
c     under a given name, and attempting to do so will result in an
c     error). This feature simply allows registration to be performed
c     independently, but consistently, at several places within your
c     program, without having to check whether it has already been
c     done.
f     - You may use AST_INTRAREG to register a transformation routine
f     with the same name more than once, but only if the arguments
f     supplied are identical on each occasion (i.e there is no way of
f     changing things once a routine has been successfully registered
f     under a given name, and attempting to do so will result in an
f     error). This feature simply allows registration to be performed
f     independently, but consistently, at several places within your
f     program, without having to check whether it has already been
f     done.
c     - If an error occurs in the transformation function, this may be
c     indicated by setting the AST error status to an error value
c     (using astSetStatus) before it returns.  This will immediately
c     terminate the current AST operation.  The error value AST__ITFER
c     is available for this purpose, but other values may also be used
c     (e.g. if you wish to distinguish different types of error).
f     - If an error occurs in the transformation routine, this may be
f     indicated by setting its STATUS argument to an error value
f     before it returns.  This will immediately terminate the current
f     AST operation.  The error value AST__ITFER is available for this
f     purpose, but other values may also be used (e.g. if you wish to
f     distinguish different types of error). The AST__ITFER error
f     value is defined in the AST_ERR include file.

*  Transformation Flags:
c     The following flags are defined in the ``ast.h'' header file and
c     allow you to provide further information about the nature of the
c     transformation function. Having selected the set of flags which
c     apply, you should supply the bitwise OR of their values as the
c     ``flags'' argument to astIntraReg.
f     The following flags are defined in the AST_PAR include file and
f     allow you to provide further information about the nature of the
f     transformation routine. Having selected the set of flags which
f     apply, you should supply the sum of their values as the FLAGS
f     argument to AST_INTRAREG.

c     - AST__NOFWD: If this flag is set, it indicates that the
c     transformation function does not implement a forward coordinate
c     transformation. In this case, any IntraMap which uses it will
c     have a TranForward attribute value of zero and the
c     transformation function itself will not be invoked with its
c     ``forward'' argument set to a non-zero value.  By default, it is
c     assumed that a forward transformation is provided.
f     - AST__NOFWD: If this flag is set, it indicates that the
f     transformation routine does not implement a forward coordinate
f     transformation. In this case, any IntraMap which uses it will
f     have a TranForward attribute value of zero and the
f     transformation routine itself will not be called with its
f     FORWARD argument set to .TRUE.. By default, it is assumed that a
f     forward transformation is provided.
c     - AST__NOINV: If this flag is set, it indicates that the
c     transformation function does not implement an inverse coordinate
c     transformation. In this case, any IntraMap which uses it will
c     have a TranInverse attribute value of zero and the
c     transformation function itself will not be invoked with its
c     ``forward'' argument set to zero.  By default, it is assumed
c     that an inverse transformation is provided.
f     - AST__NOINV: If this flag is set, it indicates that the
f     transformation routine does not implement an inverse coordinate
f     transformation. In this case, any IntraMap which uses it will
f     have a TranInverse attribute value of zero and the
f     transformation routine itself will not be called with its
f     FORWARD argument set to .FALSE.. By default, it is assumed that
f     an inverse transformation is provided.
c     - AST__SIMPFI: You may set this flag if applying the
c     transformation function's forward coordinate transformation,
c     followed immediately by the matching inverse transformation,
c     should always restore the original set of coordinates. It
c     indicates that AST may replace such a sequence of operations by
c     an identity Mapping (a UnitMap) if it is encountered while
c     simplifying a compound Mapping (e.g. using astSimplify).  It is
c     not necessary that both transformations have actually been
c     implemented.
f     - AST__SIMPFI: You may set this flag if applying the
f     transformation routine's forward coordinate transformation,
f     followed immediately by the matching inverse transformation,
f     should always restore the original set of coordinates. It
f     indicates that AST may replace such a sequence of operations by
f     an identity Mapping (a UnitMap) if it is encountered while
f     simplifying a compound Mapping (e.g. using AST_SIMPLIFY).  It is
f     not necessary that both transformations have actually been
f     implemented.
c     - AST__SIMPIF: You may set this flag if applying the
c     transformation function's inverse coordinate transformation,
c     followed immediately by the matching forward transformation,
c     should always restore the original set of coordinates. It
c     indicates that AST may replace such a sequence of operations by
c     an identity Mapping (a UnitMap) if it is encountered while
c     simplifying a compound Mapping (e.g. using astSimplify).  It is
c     not necessary that both transformations have actually been
c     implemented.
f     - AST__SIMPIF: You may set this flag if applying the
f     transformation routine's inverse coordinate transformation,
f     followed immediately by the matching forward transformation,
f     should always restore the original set of coordinates. It
f     indicates that AST may replace such a sequence of operations by
f     an identity Mapping (a UnitMap) if it is encountered while
f     simplifying a compound Mapping (e.g. using AST_SIMPLIFY).  It is
f     not necessary that both transformations have actually been
f     implemented.
*--
*/

/* Check the global error status. */
   if ( !astOK ) return;

/* Register the transformation function together with the appropriate
   wrapper function for the C language. */
   IntraReg( name, nin, nout, tran, TranWrap, flags, purpose, author,
             contact, status );
}

void astIntraRegFor_( const char *name, int nin, int nout,
                      void (* tran)( AstMapping *, int, int, const double *[],
                                     int, int, double *[] ),
                      void (* tran_wrap)( void (*)( AstMapping *, int, int,
                                                    const double *[], int, int,
                                                    double *[] ),
                                          AstMapping *, int, int,
                                          const double *[], int, int,
                                          double *[], int * ),
                      unsigned int flags, const char *purpose,
                      const char *author, const char *contact, int *status ) {
/*
*+
*  Name:
*     astIntraRegFor

*  Purpose:
*     Register a foreign language transformation function for an IntraMap.

*  Type:
*     Public function.

*  Synopsis:
*     #include "intramap.h"
*     void astIntraRegFor( const char *name, int nin, int nout,
*                          void (* tran)( AstMapping *, int, int,
*                                         const double *[], int, int,
*                                         double *[] ),
*                          void (* tran_wrap)( void (*)( AstMapping *, int,
*                                                        int, const double *[],
*                                                        int, int,
*                                                        double *[] ),
*                                              AstMapping *, int, int,
*                                              const double *[], int, int,
*                                              double *[], int * ),
*                          unsigned int flags, const char *purpose,
*                          const char *author, const char *contact )

*  Class Membership:
*     IntraMap member function.

*  Description:
*     This function registers a transformation function provided by a
*     foreign language interface which will later be used by an
*     IntraMap, and associates it with a name. It also stores related
*     information which will be required by the IntraMap.

*  Parameters:
*     name
*        Pointer to a null-terminated string containing the name to be
*        used to identify the transformation function. This string is
*        case sensitive. All white space is removed before use.
*     nin
*        The number of input coordinates per point (or AST__ANY if any
*        number are allowed).
*     nout
*        The number of output coordinates per point (or AST__ANY if
*        any number are allowed).
*     tran
*        Pointer to the foreign language transformation function to be
*        registered. This may have any form of interface, which need
*        not be known to the implementation of the IntraMap
*        class. Instead, the method of invoking the transformation
*        function should be encapsulated in the "tran_wrap" function
*        (below).
*     tran_wrap
*        Pointer to a wrapper function appropriate to the foreign
*        language interface. This wrapper function should have the
*        same interface as astTranP (from the Mapping class), except
*        that it takes a pointer to a function like "tran" as an additional
*        first argument. The purpose of this wrapper is to invoke the
*        transformation function via the pointer supplied, to pass it the
*        necessary information derived from the remainder of its arguments,
*        and then to return the results.
*     flags
*        This argument may be used to supply a set of flags which
*        control the behaviour of any IntraMap which uses the
*        registered transformation function. See the description of
*        astIntraReg for details.
*     purpose
*        Pointer to a null-terminated string containing a short (one
*        line) textual comment to describe the purpose of the
*        transformation function.
*     author
*        Pointer to a null-terminated string containing the name of
*        the author of the transformation function.
*     contact
*        Pointer to a null-terminated string containing contact
*        details for the author of the transformation function
*        (e.g. an e-mail address or URL). If any IntraMap using this
*        transformation function is exported as part of a dataset to
*        an external user who does not have access to the function,
*        then these contact details should allow them to obtain the
*        necessary code.

*  Notes:
*     - This function is only available through the public interface
*     to the IntraMap class (not the protected interface) and is
*     intended solely for use in implementing foreign language
*     interfaces to this class.
*-
*/

/* Check the global error status. */
   if ( !astOK ) return;

/* Register the transformation function together with the appropriate
   wrapper function for the foreign language interface. */
   IntraReg( name, nin, nout, tran, tran_wrap, flags, purpose, author,
             contact, status );
}

static int MapMerge( AstMapping *this, int where, int series, int *nmap,
                     AstMapping ***map_list, int **invert_list, int *status ) {
/*
*  Name:
*     MapMerge

*  Purpose:
*     Simplify a sequence of Mappings containing an IntraMap.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     int MapMerge( AstMapping *this, int where, int series, int *nmap,
*                   AstMapping ***map_list, int **invert_list, int *status )

*  Class Membership:
*     IntraMap method (over-rides the protected astMapMerge method
*     inherited from the Mapping class).

*  Description:
*     This function attempts to simplify a sequence of Mappings by
*     merging a nominated IntraMap in the sequence with its
*     neighbours, so as to shorten the sequence if possible.
*
*     In many cases, simplification will not be possible and the
*     function will return -1 to indicate this, without further
*     action.
*
*     In most cases of interest, however, this function will either
*     attempt to replace the nominated IntraMap with one which it
*     considers simpler, or to merge it with the Mappings which
*     immediately precede it or follow it in the sequence (both will
*     normally be considered). This is sufficient to ensure the
*     eventual simplification of most Mapping sequences by repeated
*     application of this function.
*
*     In some cases, the function may attempt more elaborate
*     simplification, involving any number of other Mappings in the
*     sequence. It is not restricted in the type or scope of
*     simplification it may perform, but will normally only attempt
*     elaborate simplification in cases where a more straightforward
*     approach is not adequate.

*  Parameters:
*     this
*        Pointer to the nominated IntraMap which is to be merged with
*        its neighbours. This should be a cloned copy of the IntraMap
*        pointer contained in the array element "(*map_list)[where]"
*        (see below). This pointer will not be annulled, and the
*        IntraMap it identifies will not be modified by this function.
*     where
*        Index in the "*map_list" array (below) at which the pointer
*        to the nominated IntraMap resides.
*     series
*        A non-zero value indicates that the sequence of Mappings to
*        be simplified will be applied in series (i.e. one after the
*        other), whereas a zero value indicates that they will be
*        applied in parallel (i.e. on successive sub-sets of the
*        input/output coordinates).
*     nmap
*        Address of an int which counts the number of Mappings in the
*        sequence. On entry this should be set to the initial number
*        of Mappings. On exit it will be updated to record the number
*        of Mappings remaining after simplification.
*     map_list
*        Address of a pointer to a dynamically allocated array of
*        Mapping pointers (produced, for example, by the astMapList
*        method) which identifies the sequence of Mappings. On entry,
*        the initial sequence of Mappings to be simplified should be
*        supplied.
*
*        On exit, the contents of this array will be modified to
*        reflect any simplification carried out. Any form of
*        simplification may be performed. This may involve any of: (a)
*        removing Mappings by annulling any of the pointers supplied,
*        (b) replacing them with pointers to new Mappings, (c)
*        inserting additional Mappings and (d) changing their order.
*
*        The intention is to reduce the number of Mappings in the
*        sequence, if possible, and any reduction will be reflected in
*        the value of "*nmap" returned. However, simplifications which
*        do not reduce the length of the sequence (but improve its
*        execution time, for example) may also be performed, and the
*        sequence might conceivably increase in length (but normally
*        only in order to split up a Mapping into pieces that can be
*        more easily merged with their neighbours on subsequent
*        invocations of this function).
*
*        If Mappings are removed from the sequence, any gaps that
*        remain will be closed up, by moving subsequent Mapping
*        pointers along in the array, so that vacated elements occur
*        at the end. If the sequence increases in length, the array
*        will be extended (and its pointer updated) if necessary to
*        accommodate any new elements.
*
*        Note that any (or all) of the Mapping pointers supplied in
*        this array may be annulled by this function, but the Mappings
*        to which they refer are not modified in any way (although
*        they may, of course, be deleted if the annulled pointer is
*        the final one).
*     invert_list
*        Address of a pointer to a dynamically allocated array which,
*        on entry, should contain values to be assigned to the Invert
*        attributes of the Mappings identified in the "*map_list"
*        array before they are applied (this array might have been
*        produced, for example, by the astMapList method). These
*        values will be used by this function instead of the actual
*        Invert attributes of the Mappings supplied, which are
*        ignored.
*
*        On exit, the contents of this array will be updated to
*        correspond with the possibly modified contents of the
*        "*map_list" array.  If the Mapping sequence increases in
*        length, the "*invert_list" array will be extended (and its
*        pointer updated) if necessary to accommodate any new
*        elements.
*     status
*        Pointer to the inherited status variable.

*  Returned Value:
*     If simplification was possible, the function returns the index
*     in the "map_list" array of the first element which was
*     modified. Otherwise, it returns -1 (and makes no changes to the
*     arrays supplied).

*  Notes:
*     - A value of -1 will be returned if this function is invoked
*     with the global error status set, or if it should fail for any
*     reason.
*/

/* Local Variables: */
   astDECLARE_GLOBALS            /* Pointer to thread-specific global data */
   AstIntraMap *intramap1;       /* Pointer to first IntraMap */
   AstIntraMap *intramap2;       /* Pointer to second IntraMap */
   AstMapping *new;              /* Pointer to replacement Mapping */
   const char *class;            /* Pointer to Mapping class string */
   int imap1;                    /* Index of first IntraMap */
   int imap2;                    /* Index of second IntraMap */
   int imap;                     /* Loop counter for Mappings */
   int invert1;                  /* Invert flag value (1st IntraMap) */
   int invert2;                  /* Invert flag value (2nd IntraMap) */
   int nin1;                     /* No. input coordinates (1st IntraMap) */
   int nout2;                    /* No. output coordinates (2nd IntraMap) */
   int result;                   /* Result value to return */
   int simpler;                  /* Mappings simplified? */

/* Initialise the returned result. */
   result = -1;

/* Check the global error status. */
   if ( !astOK ) return result;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(this);

/* Further initialisation. */
   new = NULL;
   simpler = 0;
   nin1 = -1;

/* We will only handle the case of IntraMaps in series and will
   consider merging the nominated IntraMap with the Mapping which
   follows it. Check that there is such a Mapping. */
   if ( series && ( ( where + 1 ) < *nmap ) ) {

/* Obtain the indices of the two potential IntraMaps to be merged and
   a pointer to the first one. */
      imap1 = where;
      imap2 = where + 1;
      intramap1 = (AstIntraMap *) ( *map_list )[ imap1 ];

/* Obtain the Class string of the second Mapping and determine if it
   is an IntraMap. */
      class = astGetClass( ( *map_list )[ imap2 ] );
      if ( astOK && !strcmp( class, "IntraMap" ) ) {

/* Obtain a pointer to the second IntraMap. */
         intramap2 = (AstIntraMap *) ( *map_list )[ imap2 ];

/* Check that the two IntraMaps use the same transformation function
   and have the same IntraFlag string (if set). */
         if ( ( intramap1->ifun == intramap2->ifun ) &&
              !strcmp( intramap1->intraflag ? intramap1->intraflag : "",
                       intramap2->intraflag ? intramap2->intraflag : "" ) ) {

/* Determine the number of input coordinates that the first IntraMap
   would have if its Invert attribute were set to the value of the
   associated invert flag. Take account of the current Invert
   attribute in obtaining this value. */
            invert1 = ( *invert_list )[ imap1 ];
            if ( astGetInvert( intramap1 ) ) {
               nin1 = invert1 ? astGetNin( intramap1 ) :
                                astGetNout( intramap1 );
            } else {
               nin1 = invert1 ? astGetNout( intramap1 ) :
                                astGetNin( intramap1 );
            }

/* Similarly, determine the number of output coordinates that the
   second IntraMap would have. */
            invert2 = ( *invert_list )[ imap2 ];
            if ( astGetInvert( intramap2 ) ) {
               nout2 = invert2 ? astGetNout( intramap2 ) :
                                 astGetNin( intramap2 );
            } else {
               nout2 = invert2 ? astGetNin( intramap2 ) :
                                 astGetNout( intramap2 );
            }

/* Check that the effect of applying the two IntraMaps will be to
   preserve the number of coordinates. */
            if ( astOK && ( nin1 == nout2 ) ) {

/* If so, check if the first transformation function is applied in the
   forward direction and the second in the inverse direction. If so,
   note if this configuration can be simplified. */
               if ( !invert1 && invert2 ) {
                  simpler = tran_data[ intramap1->ifun ].flags & AST__SIMPFI;

/* Similarly, if the first transformation function is applied in the
   inverse direction and the second in the forward direction, then
   note if this configuration can be simplified. */
               } else if ( invert1 && !invert2 ) {
                  simpler = tran_data[ intramap1->ifun ].flags & AST__SIMPIF;
               }
            }
         }
      }

/* If the two IntraMaps can be simplified, create a UnitMap to replace
   them. */
      if ( simpler ) {
         new = (AstMapping *) astUnitMap( nin1, "", status );

/* Annul the pointers to the IntraMaps. */
         if ( astOK ) {
            ( *map_list )[ imap1 ] = astAnnul( ( *map_list )[ imap1 ] );
            ( *map_list )[ imap2 ] = astAnnul( ( *map_list )[ imap2 ] );

/* Insert the pointer to the replacement Mapping and initialise its
   invert flag. */
            ( *map_list )[ imap1 ] = new;
            ( *invert_list )[ imap1 ] = 0;

/* Loop to close the resulting gap by moving subsequent elements down
   in the arrays. */
            for ( imap = imap2 + 1; imap < *nmap; imap++ ) {
               ( *map_list )[ imap - 1 ] = ( *map_list )[ imap ];
               ( *invert_list )[ imap - 1 ] = ( *invert_list )[ imap ];
            }

/* Clear the vacated elements at the end. */
            ( *map_list )[ *nmap - 1 ] = NULL;
            ( *invert_list )[ *nmap - 1 ] = 0;

/* Decrement the Mapping count and return the index of the first
   modified element. */
            ( *nmap )--;
            result = imap1;
         }
      }
   }

/* If an error occurred, clear the returned result. */
   if ( !astOK ) result = -1;

/* Return the result. */
   return result;
}

static void SetAttrib( AstObject *this_object, const char *setting, int *status ) {
/*
*  Name:
*     SetAttrib

*  Purpose:
*     Set an attribute value for an IntraMap.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     void SetAttrib( AstObject *this, const char *setting, int *status )

*  Class Membership:
*     IntraMap member function (over-rides the astSetAttrib method inherited
*     from the Mapping class).

*  Description:
*     This function assigns an attribute value for a IntraMap, the
*     attribute and its value being specified by means of a string of
*     the form:
*
*        "attribute= value "
*
*     Here, "attribute" specifies the attribute name and should be in
*     lower case with no white space present. The value to the right
*     of the "=" should be a suitable textual representation of the
*     value to be assigned and this will be interpreted according to
*     the attribute's data type.  White space surrounding the value is
*     only significant for string attributes.

*  Parameters:
*     this
*        Pointer to the IntraMap.
*     setting
*        Pointer to a null terminated string specifying the new attribute
*        value.
*     status
*        Pointer to the inherited status variable.
*/

/* Local Vaiables: */
   AstIntraMap *this;            /* Pointer to the IntraMap structure */
   int intraflag;                /* Offset of IntraFlag value in string */
   int len;                      /* Length of setting string */
   int nc;                       /* Number of characters read by astSscanf */

/* Check the global error status. */
   if ( !astOK ) return;

/* Obtain a pointer to the IntraMap structure. */
   this = (AstIntraMap *) this_object;

/* Obtain the length of the setting string. */
   len = strlen( setting );

/* Test for each recognised attribute in turn, using "astSscanf" to parse the
   setting string and extract the attribute value (or an offset to it in the
   case of string values). In each case, use the value set in "nc" to check
   that the entire string was matched. Once a value has been obtained, use the
   appropriate method to set it. */

/* IntraFlag. */
/* ---------- */
   if ( nc = 0,
        ( 0 == astSscanf( setting, "intraflag=%n%*[^\n]%n", &intraflag, &nc ) )
        && ( nc >= len ) ) {
      astSetIntraFlag( this, setting + intraflag );

/* Not recognised. */
/* --------------- */
/* If the attribute is not recognised, pass it on to the parent method
   for further interpretation. */
   } else {
      (*parent_setattrib)( this_object, setting, status );
   }
}

static int TestAttrib( AstObject *this_object, const char *attrib, int *status ) {
/*
*  Name:
*     TestAttrib

*  Purpose:
*     Test if a specified attribute value is set for an IntraMap.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     int TestAttrib( AstObject *this, const char *attrib, int *status )

*  Class Membership:
*     IntraMap member function (over-rides the astTestAttrib protected
*     method inherited from the Mapping class).

*  Description:
*     This function returns a boolean result (0 or 1) to indicate whether
*     a value has been set for one of a IntraMap's attributes.

*  Parameters:
*     this
*        Pointer to the IntraMap.
*     attrib
*        Pointer to a null terminated string specifying the attribute
*        name.  This should be in lower case with no surrounding white
*        space.
*     status
*        Pointer to the inherited status variable.

*  Returned Value:
*     One if a value has been set, otherwise zero.

*  Notes:
*     - A value of zero will be returned if this function is invoked
*     with the global status set, or if it should fail for any reason.
*/

/* Local Variables: */
   AstIntraMap *this;            /* Pointer to the IntraMap structure */
   int result;                   /* Result value to return */

/* Initialise. */
   result = 0;

/* Check the global error status. */
   if ( !astOK ) return result;

/* Obtain a pointer to the IntraMap structure. */
   this = (AstIntraMap *) this_object;

/* Check the attribute name and test the appropriate attribute. */

/* IntraFlag. */
/* ---------- */
   if ( !strcmp( attrib, "intraflag" ) ) {
      result = astTestIntraFlag( this );

/* Not recognised. */
/* --------------- */
/* If the attribute is not recognised, pass it on to the parent method
   for further interpretation. */
   } else {
      result = (*parent_testattrib)( this_object, attrib, status );
   }

/* Return the result, */
   return result;
}

static AstPointSet *Transform( AstMapping *this_mapping, AstPointSet *in,
                               int forward, AstPointSet *out, int *status ) {
/*
*  Name:
*     Transform

*  Purpose:
*     Apply an IntraMap to transform a set of points.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     AstPointSet *Transform( AstMapping *this, AstPointSet *in,
*                             int forward, AstPointSet *out, int *status )

*  Class Membership:
*     IntraMap member function (over-rides the astTransform protected
*     method inherited from the Mapping class).

*  Description:
*     This function takes a IntraMap and a set of points encapsulated
*     in a PointSet and transforms the points using the transformation
*     function associated with the IntraMap.

*  Parameters:
*     this
*        Pointer to the IntraMap.
*     in
*        Pointer to the PointSet holding the input coordinate data.
*     forward
*        A non-zero value indicates that the forward coordinate
*        transformation should be applied, while a zero value requests
*        the inverse transformation.
*     out
*        Pointer to a PointSet which will hold the transformed
*        (output) coordinate values. A NULL value may also be given,
*        in which case a new PointSet will be created by this
*        function.
*     status
*        Pointer to the inherited status variable.

*  Returned Value:
*     Pointer to the output (possibly new) PointSet.

*  Notes:
*     - A null pointer will be returned if this function is invoked
*     with the global error status set, or if it should fail for any
*     reason.
*     - The number of coordinate values per point in the input
*     PointSet must match the number of coordinates for the IntraMap
*     being applied.
*     - If an output PointSet is supplied, it must have space for
*     sufficient number of points and coordinate values per point to
*     accommodate the result. Any excess space will be ignored.
*/

/* Local Variables: */
   astDECLARE_GLOBALS            /* Pointer to thread-specific global data */
   AstIntraMap *this;            /* Pointer to IntraMap structure */
   AstMapping *id;               /* Public ID for the IntraMap supplied */
   AstPointSet *result;          /* Pointer to output PointSet */
   const double **ptr_in;        /* Pointer to input coordinate data */
   double **ptr_out;             /* Pointer to output coordinate data */
   int ncoord_in;                /* Number of coordinates per input point */
   int ncoord_out;               /* Number of coordinates per output point */
   int npoint;                   /* Number of points */
   int ok;                       /* AST status OK? */
   int status_value;             /* AST status value */

/* Check the global error status. */
   if ( !astOK ) return NULL;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(this_mapping);

/* Obtain a pointer to the IntraMap structure. */
   this = (AstIntraMap *) this_mapping;

/* Apply the parent mapping using the stored pointer to the Transform
   member function inherited from the parent Mapping class. This
   function validates all arguments and generates an output PointSet
   if necessary, but does not actually transform any coordinate
   values. */
   result = (*parent_transform)( this_mapping, in, forward, out, status );

/* We will now extend the parent astTransform method by performing the
   calculations needed to generate the output coordinate values. */

/* Determine the numbers of points and coordinates per point from the
   input and output PointSets and obtain pointers for accessing the
   input and output coordinate values. */
   npoint = astGetNpoint( in );
   ncoord_in = astGetNcoord( in );
   ncoord_out = astGetNcoord( result );
   ptr_in = (const double **) astGetPoints( in );
   ptr_out = astGetPoints( result );

/* Determine whether to apply the forward or inverse transformation,
   according to the direction specified and whether the Mapping has
   been inverted. */
   if ( astGetInvert( this ) ) forward = !forward;

/* Obtain a public (external) ID for the IntraMap. This will be
   required (instead of a true C pointer) by the transformation function,
   since it is user-written. Clone the IntraMap pointer so that the call
   to astAnnulID later on does not annul the IntraMap pointer. */
   id = (AstMapping *) astMakeId( astClone( this ) );

/* Locate the transformation function data associated with the
   IntraMap and use the wrapper function to invoke the transformation
   function itself. */
   if ( ( ok = astOK ) ) {
      LOCK_MUTEX2;
      ( *tran_data[ this->ifun ].tran_wrap )( tran_data[ this->ifun ].tran,
                                              id, npoint, ncoord_in, ptr_in,
                                              forward, ncoord_out, ptr_out,
                                              status );
      UNLOCK_MUTEX2;

/* If an error occurred, report a contextual error message. To ensure
   that the location of the error appears in the message, we first clear
   the global status (which makes the error system think this is the
   first report). */
      if ( !( ok = astOK ) ) {
         status_value = astStatus;
         astClearStatus;
         astError( status_value,
                   "astTransform(%s): Error signalled by \"%s\" "
                   "transformation function.", status,
                   astGetClass( this ), tran_data[ this->ifun ].name );
      }
   }

/* Annul the external identifier. */
   id = astMakeId( astAnnulId( id ) );

/* If an error occurred here, but earlier steps were successful, then
   something has happened to the external ID, so report a contextual
   error message. */
   if ( !astOK && ok ) {
      astError( astStatus,
                "astTransform(%s): %s pointer corrupted by \"%s\" "
                "transformation function.", status,
                astGetClass( this ), astGetClass( this ),
                tran_data[ this->ifun ].name );
   }

/* If an error occurred, clear the returned pointer. If a new output
   PointSet has been created, then delete it. */
   if ( !astOK ) {
      result = ( result == out ) ? NULL : astDelete( result );
   }

/* Return a pointer to the output PointSet. */
   return result;
}

static void TranWrap( void (* tran)( AstMapping *, int, int, const double *[],
                                     int, int, double *[] ),
                      AstMapping *this, int npoint, int ncoord_in,
                      const double *ptr_in[], int forward, int ncoord_out,
                      double *ptr_out[], int *status ) {
/*
*  Name:
*     TranWrap

*  Purpose:
*     Wrapper function to invoke a C transformation function.

*  Type:
*     Private function.

*  Synopsis:
*     void TranWrap( void (* tran)( AstMapping *, int, int, const double *[],
*                                   int, int, double *[] ),
*                    AstMapping *this, int npoint, int ncoord_in,
*                    const double *ptr_in[], int forward, int ncoord_out,
*                    double *ptr_out[], int *status )

*  Class Membership:
*     IntraMap member function.

*  Description:
*     This function invokes a C implementation of a transformation
*     function (which resembles the astTranP function from the Mapping
*     class).
*
*     This wrapper is essentially a dummy function for the C language.
*     It may be replaced by alternative versions for foreign language
*     interfaces, thus allowing transformation functions supplied by
*     those languages to be invoked without knowledge of their
*     interfaces.

*  Parameters:
*     tran
*        Pointer to the transformation function to be invoked. This
*        should resemble astTranP (but with the first argument
*        omitted).
*     this
*        An external Mapping ID associated with the internal (true C) pointer
*        for the IntraMap whose transformation is being evaluated.
*     npoint
*        The number of points to be transformed.
*     ncoord_in
*        The number of coordinates being supplied for each input point
*        (i.e. the number of dimensions of the space in which the
*        input points reside).
*     ptr_in
*        An array of pointers to double, with "ncoord_in"
*        elements. Element "ptr_in[coord]" should point at the first
*        element of an array of double (with "npoint" elements) which
*        contain the values of coordinate number "coord" for each
*        input (untransformed) point. The value of coordinate number
*        "coord" for input point number "point" is therefore given by
*        "ptr_in[coord][point]".
*     forward
*        A non-zero value indicates that the forward coordinate
*        transformation is to be applied, while a zero value indicates
*        that the inverse transformation should be used.
*     ncoord_out
*        The number of coordinates being generated for each output
*        point (i.e. the number of dimensions of the space in which
*        the output points reside). This need not be the same as
*        "ncoord_in".
*     ptr_out
*        An array of pointers to double, with "ncoord_out"
*        elements. Element "ptr_out[coord]" should point at the first
*        element of an array of double (with "npoint" elements) into
*        which the values of coordinate number "coord" for each output
*        (transformed) point will be written.  The value of coordinate
*        number "coord" for output point number "point" will therefore
*        be found in "ptr_out[coord][point]".
*     status
*        Pointer to the inherited status value.
*/

/* Check the global error status. */
   if ( !astOK ) return;

/* Invoke the transformation function. */
   ( *tran )( this, npoint, ncoord_in, ptr_in, forward, ncoord_out, ptr_out );
}

/* Functions which access class attributes. */
/* ---------------------------------------- */
/* Implement member functions to access the attributes associated with
   this class using the macros defined for this purpose in the
   "object.h" file. For a description of each attribute, see the class
   interface (in the associated .h file). */

/*
*att++
*  Name:
*     IntraFlag

*  Purpose:
*     IntraMap identification string.

*  Type:
*     Public attribute.

*  Synopsis:
*     String.

*  Description:
c     This attribute allows an IntraMap to be flagged so that it is
c     distinguishable from other IntraMaps. The transformation function
c     associated with the IntraMap may then enquire the value of this
c     attribute and adapt the transformation it provides according to the
c     particular IntraMap involved.
f     This attribute allows an IntraMap to be flagged so that it is
f     distinguishable from other IntraMaps. The transformation routine
f     associated with the IntraMap may then enquire the value of this
f     attribute and adapt the transformation it provides according to the
f     particular IntraMap involved.
*
c     Although this is a string attribute, it may often be useful to store
c     numerical values here, encoded as a character string, and to use these
c     as data within the transformation function. Note, however, that this
c     mechanism is not suitable for transferring large amounts of data (more
c     than about 1000 characters) to an IntraMap. For that purpose, global
c     variables are recommended, although the IntraFlag value can be used to
c     supplement this approach. The default IntraFlag value is an empty
c     string.
f     Although this is a string attribute, it may often be useful to store
f     numerical values here, encoded as a character string, and to use these
f     as data within the transformation routine. Note, however, that this
f     mechanism is not suitable for transferring large amounts of data (more
f     than about 1000 characters) to an IntraMap. For that purpose, global
f     variables are recommended, although the IntraFlag value can be used to
f     supplement this approach. The default IntraFlag value is an empty
f     string.

*  Applicability:
*     IntraMap
*        All IntraMaps have this attribute.

*  Notes:
c     - A pair of IntraMaps whose transformations may potentially cancel
c     cannot be simplified to produce a UnitMap (e.g. using astSimplify)
c     unless they have the same IntraFlag values. The test for equality is
c     case-sensitive.
f     - A pair of IntraMaps whose transformations may potentially cancel
f     cannot be simplified to produce a UnitMap (e.g. using AST_SIMPLIFY)
f     unless they have the same IntraFlag values. The test for equality is
f     case-sensitive.
*att--
*/

/* Clear the IntraFlag value by freeing the allocated memory and
   assigning a NULL pointer. */
astMAKE_CLEAR(IntraMap,IntraFlag,intraflag,astFree( this->intraflag ))

/* Return a pointer to the IntraFlag value. */
astMAKE_GET(IntraMap,IntraFlag,const char *,NULL,this->intraflag)

/* Set a IntraFlag value by freeing any previously allocated memory,
   allocating new memory, storing the string and saving the pointer to
   the copy. */
astMAKE_SET(IntraMap,IntraFlag,const char *,intraflag,astStore(
                                                      this->intraflag, value,
                                                      strlen( value ) +
                                                      (size_t) 1 ))

/* The IntraFlag value is set if the pointer to it is not NULL. */
astMAKE_TEST(IntraMap,IntraFlag,( this->intraflag != NULL ))

/* Copy constructor. */
/* ----------------- */
static void Copy( const AstObject *objin, AstObject *objout, int *status ) {
/*
*  Name:
*     Copy

*  Purpose:
*     Copy constructor for IntraMap objects.

*  Type:
*     Private function.

*  Synopsis:
*     void Copy( const AstObject *objin, AstObject *objout, int *status )

*  Description:
*     This function implements the copy constructor for IntraMap objects.

*  Parameters:
*     objin
*        Pointer to the object to be copied.
*     objout
*        Pointer to the object being constructed.
*     status
*        Pointer to the inherited status variable.

*  Notes:
*     -  This constructor makes a deep copy.
*/

/* Local Variables: */
   AstIntraMap *in;              /* Pointer to input IntraMap */
   AstIntraMap *out;             /* Pointer to output IntraMap */

/* Check the global error status. */
   if ( !astOK ) return;

/* Obtain pointers to the input and output IntraMaps. */
   in = (AstIntraMap *) objin;
   out = (AstIntraMap *) objout;

/* For safety, first clear any references to the input memory from
   the output IntraMap. */
   out->intraflag = NULL;

/* If necessary, allocate memory in the output IntraMap and store a
   copy of the input IntraFlag string. */
   if ( in->intraflag ) out->intraflag = astStore( NULL, in->intraflag,
                                                   strlen( in->intraflag ) +
                                                   (size_t) 1 );

/* If an error occurred, free any allocated memory. */
   if ( !astOK ) {
      out->intraflag = astFree( out->intraflag );
   }
}

/* Destructor. */
/* ----------- */
static void Delete( AstObject *obj, int *status ) {
/*
*  Name:
*     Delete

*  Purpose:
*     Destructor for IntraMap objects.

*  Type:
*     Private function.

*  Synopsis:
*     void Delete( AstObject *obj, int *status )

*  Description:
*     This function implements the destructor for IntraMap objects.

*  Parameters:
*     obj
*        Pointer to the object to be deleted.
*     status
*        Pointer to the inherited status variable.

*  Notes:
*     This function attempts to execute even if the global error status is
*     set.
*/

/* Local Variables: */
   AstIntraMap *this;            /* Pointer to IntraMap */

/* Obtain a pointer to the IntraMap structure. */
   this = (AstIntraMap *) obj;

/* Free the memory used for the IntraFlag string if necessary. */
   this->intraflag = astFree( this->intraflag );
}

/* Dump function. */
/* -------------- */
static void Dump( AstObject *this_object, AstChannel *channel, int *status ) {
/*
*  Name:
*     Dump

*  Purpose:
*     Dump function for IntraMap objects.

*  Type:
*     Private function.

*  Synopsis:
*     void Dump( AstObject *this, AstChannel *channel, int *status )

*  Description:
*     This function implements the Dump function which writes out data
*     for the IntraMap class to an output Channel.

*  Parameters:
*     this
*        Pointer to the IntraMap whose data are being written.
*     channel
*        Pointer to the Channel to which the data are being written.
*     status
*        Pointer to the inherited status variable.
*/

/* Local Variables: */
   astDECLARE_GLOBALS             /* Pointer to thread-specific global data */
   AstIntraMap *this;             /* Pointer to the IntraMap structure */
   const char *sval;              /* Pointer to string value */
   int set;                       /* Attribute value set? */

/* Check the global error status. */
   if ( !astOK ) return;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(this_object);

/* Obtain a pointer to the IntraMap structure. */
   this = (AstIntraMap *) this_object;

/* Write out values representing the instance variables for the
   IntraMap class.  Accompany these with appropriate comment strings,
   possibly depending on the values being written.*/

/* Transformation function name. */
/* ----------------------------- */
   astWriteString( channel, "Fname", 1, 1, tran_data[ this->ifun ].name,
                   "Name of transformation function" );

/* IntraFlag string. */
/* ----------------- */
   set = TestIntraFlag( this, status );
   sval = set ? GetIntraFlag( this, status ) : astGetIntraFlag( this );
   astWriteString( channel, "Iflag", set, 0, sval,
                   "IntraMap identification string" );

/* Purpose string. */
/* --------------- */
   astWriteString( channel, "Purp", 1, 1, tran_data[ this->ifun ].purpose,
                   "Purpose of function" );

/* Author's name. */
/* -------------- */
   astWriteString( channel, "Auth", 1, 1, tran_data[ this->ifun ].author,
                   "Author's name" );

/* Contact details. */
/* ---------------- */
   astWriteString( channel, "Cntact", 1, 1, tran_data[ this->ifun ].contact,
                   "Contact address" );
}

/* Standard class functions. */
/* ========================= */
/* Implement the astIsAIntraMap and astCheckIntraMap functions using the
   macros defined for this purpose in the "object.h" header file. */
astMAKE_ISA(IntraMap,Mapping)
astMAKE_CHECK(IntraMap)

AstIntraMap *astIntraMap_( const char *name, int nin, int nout,
                           const char *options, int *status, ...) {
/*
*++
*  Name:
c     astIntraMap
f     AST_INTRAMAP

*  Purpose:
*     Create an IntraMap.

*  Type:
*     Public function.

*  Synopsis:
c     #include "intramap.h"
c     AstIntraMap *astIntraMap( const char *name, int nin, int nout,
c                               const char *options, ... )
f     RESULT = AST_INTRAMAP( NAME, NIN, NOUT, OPTIONS, STATUS )

*  Class Membership:
*     IntraMap constructor.

*  Description:
*     This function creates a new IntraMap and optionally initialises
*     its attributes.
*
c     An IntraMap is a specialised form of Mapping which encapsulates
c     a privately-defined coordinate transformation function
c     (e.g. written in C) so that it may be used like any other AST
c     Mapping. This allows you to create Mappings that perform any
c     conceivable coordinate transformation.
f     An IntraMap is a specialised form of Mapping which encapsulates
f     a privately-defined coordinate transformation routine
f     (e.g. written in Fortran) so that it may be used like any other
f     AST Mapping. This allows you to create Mappings that perform any
f     conceivable coordinate transformation.
*
*     However, an IntraMap is intended for use within a single program
*     or a private suite of software, where all programs have access
*     to the same coordinate transformation functions (i.e. can be
*     linked against them). IntraMaps should not normally be stored in
*     datasets which may be exported for processing by other software,
*     since that software will not have the necessary transformation
*     functions available, resulting in an error.
*
c     You must register any coordinate transformation functions to be
c     used using astIntraReg before creating an IntraMap.
f     You must register any coordinate transformation functions to be
f     used using AST_INTRAREG before creating an IntraMap.

*  Parameters:
c     name
f     NAME = CHARACTER * ( * ) (Given)
c        Pointer to a null-terminated string containing the name of
c        the transformation function to use (which should previously
c        have been registered using astIntraReg). This name is case
c        sensitive. All white space will be removed before use.
f        A character string containing the name of the transformation
f        routine to use (which should previously have been registered
f        using AST_INTRAREG). This name is case sensitive. All white
f        space will be removed before use.
c     nin
f     NIN = INTEGER (Given)
c        The number of input coordinates. This must be compatible with
c        the number of input coordinates accepted by the
c        transformation function (as specified when this function was
c        registered using astIntraReg).
f        The number of input coordinates. This must be compatible with
f        the number of input coordinates accepted by the
f        transformation routine (as specified when this routine was
f        registered using AST_INTRAREG).
c     nout
f     NOUT = INTEGER (Given)
c        The number of output coordinates. This must be compatible
c        with the number of output coordinates produced by the
c        transformation function (as specified when this function was
c        registered using astIntraReg).
f        The number of output coordinates. This must be compatible
f        with the number of output coordinates produced by the
f        transformation routine (as specified when this routine was
f        registered using AST_INTRAREG).
c     options
f     OPTIONS = CHARACTER * ( * ) (Given)
c        Pointer to a null-terminated string containing an optional
c        comma-separated list of attribute assignments to be used for
c        initialising the new IntraMap. The syntax used is identical to
c        that for the astSet function and may include "printf" format
c        specifiers identified by "%" symbols in the normal way.
f        A character string containing an optional comma-separated
f        list of attribute assignments to be used for initialising the
f        new IntraMap. The syntax used is identical to that for the
f        AST_SET routine.
c     ...
c        If the "options" string contains "%" format specifiers, then
c        an optional list of additional arguments may follow it in
c        order to supply values to be substituted for these
c        specifiers. The rules for supplying these are identical to
c        those for the astSet function (and for the C "printf"
c        function).
f     STATUS = INTEGER (Given and Returned)
f        The global status.

*  Returned Value:
c     astIntraMap()
f     AST_INTRAMAP = INTEGER
*        A pointer to the new IntraMap.

*  Notes:
*     - A null Object pointer (AST__NULL) will be returned if this
c     function is invoked with the AST error status set, or if it
f     function is invoked with STATUS set to an error value, or if it
*     should fail for any reason.
*--
*/

/* Local Variables: */
   astDECLARE_GLOBALS            /* Pointer to thread-specific global data */
   AstIntraMap *new;             /* Pointer to new IntraMap */
   va_list args;                 /* Variable argument list */

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(NULL);

/* Check the global status. */
   if ( !astOK ) return NULL;

/* Initialise the IntraMap, allocating memory and initialising the
   virtual function table as well if necessary. */
   new = astInitIntraMap( NULL, sizeof( AstIntraMap ), !class_init,
                          &class_vtab, "IntraMap", name, nin, nout );

/* If successful, note that the virtual function table has been
   initialised. */
   if ( astOK ) {
      class_init = 1;

/* Obtain the variable argument list and pass it along with the
   options string to the astVSet method to initialise the new
   IntraMap's attributes. */
      va_start( args, status );
      astVSet( new, options, NULL, args );
      va_end( args );

/* If an error occurred, clean up by deleting the new object. */
      if ( !astOK ) new = astDelete( new );
   }

/* Return a pointer to the new IntraMap. */
   return new;
}

AstIntraMap *astIntraMapId_( const char *name, int nin, int nout,
                             const char *options, ... ) {
/*
*  Name:
*     astIntraMapId_

*  Purpose:
*     Create an IntraMap.

*  Type:
*     Private function.

*  Synopsis:
*     #include "intramap.h"
*     AstIntraMap *astIntraMapId_( const char *name, int nin, int nout,
*                                  const char *options, ... )

*  Class Membership:
*     IntraMap constructor.

*  Description:
*     This function implements the external (public) interface to the
*     astIntraMap constructor function. It returns an ID value
*     (instead of a true C pointer) to external users, and must be
*     provided because astIntraMap_ has a variable argument list which
*     cannot be encapsulated in a macro (where this conversion would
*     otherwise occur).
*
*     The variable argument list also prevents this function from
*     invoking astIntraMap_ directly, so it must be a
*     re-implementation of it in all respects, except for the final
*     conversion of the result to an ID value.

*  Parameters:
*     As for astIntraMap_.

*  Returned Value:
*     The ID value associated with the new IntraMap.
*/

/* Local Variables: */
   astDECLARE_GLOBALS            /* Pointer to thread-specific global data */
   AstIntraMap *new;             /* Pointer to new IntraMap */
   va_list args;                 /* Variable argument list */

   int *status;                  /* Pointer to inherited status value */

/* Get a pointer to the inherited status value. */
   status = astGetStatusPtr;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(NULL);

/* Check the global status. */
   if ( !astOK ) return NULL;

/* Initialise the IntraMap, allocating memory and initialising the
   virtual function table as well if necessary. */
   new = astInitIntraMap( NULL, sizeof( AstIntraMap ), !class_init,
                          &class_vtab, "IntraMap", name, nin, nout );

/* If successful, note that the virtual function table has been
   initialised. */
   if ( astOK ) {
      class_init = 1;

/* Obtain the variable argument list and pass it along with the
   options string to the astVSet method to initialise the new
   IntraMap's attributes. */
      va_start( args, options );
      astVSet( new, options, NULL, args );
      va_end( args );

/* If an error occurred, clean up by deleting the new object. */
      if ( !astOK ) new = astDelete( new );
   }

/* Return an ID value for the new IntraMap. */
   return astMakeId( new );
}


AstIntraMap *astInitIntraMap_( void *mem, size_t size, int init,
                               AstIntraMapVtab *vtab, const char *name,
                               const char *fname, int nin, int nout, int *status ) {
/*
*+
*  Name:
*     astInitIntraMap

*  Purpose:
*     Initialise an IntraMap.

*  Type:
*     Protected function.

*  Synopsis:
*     #include "intramap.h"
*     AstIntraMap *astInitIntraMap( void *mem, size_t size, int init,
*                                   AstIntraMapVtab *vtab, const char *name,
*                                   const char *fname, int nin, int nout )

*  Class Membership:
*     IntraMap initialiser.

*  Description:
*     This function is provided for use by class implementations to
*     initialise a new IntraMap object. It allocates memory (if
*     necessary) to accommodate the IntraMap plus any additional data
*     associated with the derived class.  It then initialises a
*     IntraMap structure at the start of this memory. If the "init"
*     flag is set, it also initialises the contents of a virtual
*     function table for a IntraMap at the start of the memory passed
*     via the "vtab" parameter.

*  Parameters:
*     mem
*        A pointer to the memory in which the IntraMap is to be
*        initialised.  This must be of sufficient size to accommodate
*        the IntraMap data (sizeof(IntraMap)) plus any data used by
*        the derived class. If a value of NULL is given, this function
*        will allocate the memory itself using the "size" parameter to
*        determine its size.
*     size
*        The amount of memory used by the IntraMap (plus derived class
*        data).  This will be used to allocate memory if a value of
*        NULL is given for the "mem" parameter. This value is also
*        stored in the IntraMap structure, so a valid value must be
*        supplied even if not required for allocating memory.
*     init
*        A logical flag indicating if the IntraMap's virtual function
*        table is to be initialised. If this value is non-zero, the
*        virtual function table will be initialised by this function.
*     vtab
*        Pointer to the start of the virtual function table to be
*        associated with the new IntraMap.
*     name
*        Pointer to a constant null-terminated character string which
*        contains the name of the class to which the new object
*        belongs (it is this pointer value that will subsequently be
*        returned by the astGetClass method).
*     fname
*        Pointer to a null-terminated string containing the name of
*        the transformation function to be used, as previously
*        registered using astIntraReg.
*     nin
*        The number of input coordinates.
*     nout
*        The number of output coordinates.

*  Returned Value:
*     A pointer to the new IntraMap.

*  Notes:
*     - A null pointer will be returned if this function is invoked
*     with the global error status set, or if it should fail for any
*     reason.
*-
*/

/* Local Variables: */
   astDECLARE_GLOBALS             /* Pointer to thread-specific global data */
   AstIntraMap *new;              /* Pointer to new IntraMap */
   char *clname;                  /* Cleaned transformation function name */
   int found;                     /* Transformation function name found? */
   int ifun;                      /* Loop counter for registered functions */

/* Initialise. */
   new = NULL;

/* Check the global status. */
   if ( !astOK ) return NULL;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(NULL);

/* Initialise variables to avoid "used of uninitialised variable"
   messages from dumb compilers. */
   found = 0;
   ifun = 0;

/* If necessary, initialise the virtual function table. */
   if ( init ) astInitIntraMapVtab( vtab, name );

/* Clean (and validate) the transformation function name supplied. */
   clname = CleanName( fname, "astIntraMap", status );

/* Search for a registered transformation function name which matches. */
   if ( astOK ) {
      found = 0;
      for ( ifun = 0; ifun < tran_nfun; ifun++ ) {
         if ( ( found = !strcmp( clname, tran_data[ ifun ].name ) ) ) break;
      }
   }

/* Free the memory containing the cleaned name string. */
   clname = astFree( clname );

/* If no match was found, then report an error. */
   if ( astOK ) {
      if ( !found ) {
         astError( AST__URITF, "astInitIntraMap(%s): The transformation "
                               "function \"%s\" has not been registered using "
                               "astIntraReg.", status, name, clname );

/* Check that the number of input coordinates is compatible with the
   number used by the transformation function (as specified when it
   was registered). Report an error if necessary. */
      } else {
         if ( ( nin != tran_data[ ifun ].nin ) &&
              ( tran_data[ ifun ].nin != AST__ANY ) ) {
            astError( AST__BADNI, "astInitIntraMap(%s): Number of input "
                                  "coordinates (%d) does not match the number "
                                  "used by the \"%s\" transformation function "
                                  "(%d).", status, name, nin, tran_data[ ifun ].name,
                                  tran_data[ ifun ].nin  );

/* Similarly check the number of output coordinates. */
         } else if ( ( nout != tran_data[ ifun ].nout ) &&
                     ( tran_data[ ifun ].nout != AST__ANY ) ) {
            astError( AST__BADNO, "astInitIntraMap(%s): Number of output "
                                  "coordinates (%d) does not match the number "
                                  "used by the \"%s\" transformation function "
                                  "(%d).", status, name, nout, tran_data[ ifun ].name,
                                  tran_data[ ifun ].nout  );

/* If OK, initialise a Mapping structure (the parent class) as the
   first component within the IntraMap structure, allocating memory if
   necessary (note that this also provides further checks on the
   validity of "nin" and "nout"). Specify whether the forward and
   inverse transformations are defined. */
         } else {
            new = (AstIntraMap *) astInitMapping( mem, size, 0,
                     (AstMappingVtab *) vtab, name, nin, nout,
                     ( ( tran_data[ ifun ].flags & AST__NOFWD ) == 0 ),
                     ( ( tran_data[ ifun ].flags & AST__NOINV ) == 0 ) );

            if ( astOK ) {

/* Initialise the IntraMap data. */
/* ---------------------------- */
/* Initialise the IntraFlag string pointer. */
               new->intraflag = NULL;

/* Store the index used to access the transformation function data. */
               new->ifun = ifun;

/* If an error occurred, clean up by deleting the new IntraMap. */
               if ( !astOK ) new = astDelete( new );
            }
         }
      }
   }

/* Return a pointer to the new IntraMap. */
   return new;
}

AstIntraMap *astLoadIntraMap_( void *mem, size_t size,
                               AstIntraMapVtab *vtab, const char *name,
                               AstChannel *channel, int *status ) {
/*
*+
*  Name:
*     astLoadIntraMap

*  Purpose:
*     Load an IntraMap.

*  Type:
*     Protected function.

*  Synopsis:
*     #include "intramap.h"
*     AstIntraMap *astLoadIntraMap( void *mem, size_t size,
*                                    AstIntraMapVtab *vtab, const char *name,
*                                    AstChannel *channel )

*  Class Membership:
*     IntraMap loader.

*  Description:
*     This function is provided to load a new IntraMap using data read
*     from a Channel. It first loads the data used by the parent class
*     (which allocates memory if necessary) and then initialises a
*     IntraMap structure in this memory, using data read from the input
*     Channel.
*
*     If the "init" flag is set, it also initialises the contents of a
*     virtual function table for an IntraMap at the start of the memory
*     passed via the "vtab" parameter.


*  Parameters:
*     mem
*        A pointer to the memory into which the IntraMap is to be
*        loaded.  This must be of sufficient size to accommodate the
*        IntraMap data (sizeof(IntraMap)) plus any data used by
*        derived classes. If a value of NULL is given, this function
*        will allocate the memory itself using the "size" parameter to
*        determine its size.
*     size
*        The amount of memory used by the IntraMap (plus derived class
*        data).  This will be used to allocate memory if a value of
*        NULL is given for the "mem" parameter. This value is also
*        stored in the IntraMap structure, so a valid value must be
*        supplied even if not required for allocating memory.
*
*        If the "vtab" parameter is NULL, the "size" value is ignored
*        and sizeof(AstIntraMap) is used instead.
*     vtab
*        Pointer to the start of the virtual function table to be
*        associated with the new IntraMap. If this is NULL, a pointer
*        to the (static) virtual function table for the IntraMap class
*        is used instead.
*     name
*        Pointer to a constant null-terminated character string which
*        contains the name of the class to which the new object
*        belongs (it is this pointer value that will subsequently be
*        returned by the astGetClass method).
*
*        If the "vtab" parameter is NULL, the "name" value is ignored
*        and a pointer to the string "IntraMap" is used instead.

*  Returned Value:
*     A pointer to the new IntraMap.

*  Notes:
*     - A null pointer will be returned if this function is invoked
*     with the global error status set, or if it should fail for any
*     reason.
*-
*/

/* Local Variables: */
   astDECLARE_GLOBALS             /* Pointer to thread-specific global data */
   AstIntraMap *new;              /* Pointer to the new IntraMap */
   char *author;                  /* Pointer to author's name string */
   char *contact;                 /* Pointer to contact details string */
   char *fname;                   /* Pointer to transformation function name */
   char *purpose;                 /* Pointer to purpose comment string */
   int found;                     /* Function name found? */
   int ifun;                      /* Loop counter for registered functions */
   int nin;                       /* Number of IntraMap input coordinates */
   int nout;                      /* Number of IntraMap output coordinates */

/* Initialise. */
   new = NULL;

/* Check the global error status. */
   if ( !astOK ) return new;

/* Get a pointer to the thread specific global data structure. */
   astGET_GLOBALS(channel);

/* If a NULL virtual function table has been supplied, then this is
   the first loader to be invoked for this IntraMap. In this case the
   IntraMap belongs to this class, so supply appropriate values to be
   passed to the parent class loader (and its parent, etc.). */
   if ( !vtab ) {
      size = sizeof( AstIntraMap );
      vtab = &class_vtab;
      name = "IntraMap";

/* If required, initialise the virtual function table for this class. */
      if ( !class_init ) {
         astInitIntraMapVtab( vtab, name );
         class_init = 1;
      }
   }

/* Invoke the parent class loader to load data for all the ancestral
   classes of the current one, returning a pointer to the resulting
   partly-built IntraMap. */
   new = astLoadMapping( mem, size, (AstMappingVtab *) vtab, name,
                         channel );

   if ( astOK ) {

/* Read input data. */
/* ================ */
/* Request the input Channel to read all the input data appropriate to
   this class into the internal "values list". */
      astReadClassData( channel, "IntraMap" );

/* Now read each individual data item from this list. */

/* Transformation function name. */
/* ----------------------------- */
      fname = astReadString( channel, "fname", "" );

/* IntraFlag string. */
/* ----------------- */
      new->intraflag = astReadString( channel, "iflag", NULL );

/* Purpose string. */
/* --------------- */
      purpose = astReadString( channel, "purp", "" );

/* Author's name. */
/* -------------- */
      author = astReadString( channel, "auth", "" );

/* Contact details. */
/* ---------------- */
      contact = astReadString( channel, "cntact", "" );

/* If OK, search the array of transformation function data to see if
   the required transformation function has been registered. */
      if ( astOK ) {
         found = 0;
         for ( ifun = 0; ifun < tran_nfun; ifun++ ) {
            if ( ( found = !strcmp( fname, tran_data[ ifun ].name ) ) ) break;
         }

/* If the transformation function has not been registered, report an
   error explaining how to obtain it from the author and register
   it. */
         if ( !found ) {
            astError( AST__URITF, "astLoadIntraMap(%s): An IntraMap was read "
                                  "which uses an unknown transformation "
                                  "function.", status, astGetClass( channel ) );
            astError( AST__URITF, "This is a private extension to the AST "
                                  "library: to handle it, you must obtain the "
                                  "source code from its author." , status);
            astError( AST__URITF, "You can then register it with AST in your "
                                  "software by calling astIntraReg (see "
                                  "SUN/211)." , status);
            astError( AST__URITF, " " , status);
            astError( AST__URITF, "   Function name:   \"%s\".", status, fname );
            astError( AST__URITF, "   Purpose:         \"%s\".", status, purpose );
            astError( AST__URITF, "   Author:          \"%s\".", status, author );
            astError( AST__URITF, "   Contact address: \"%s\".", status, contact );
            astError( AST__URITF, " " , status);

/* Obtain the numbers of input and output coordinates for the
   IntraMap. Use parent methods for this, since if any derived class
   has overridden these methods it may depend on data that have not
   yet been loaded. */
         } else {
            nin = ( *parent_getnin )( (AstMapping *) new, status );
            nout = ( *parent_getnout )( (AstMapping *) new, status );
            if ( astOK ) {

/* Check that the numbers of coordinates are compatible with the
   numbers used by the transformation function, as specified when it
   was registered. */
               if ( ( nin != tran_data[ ifun ].nin ) &&
                    ( tran_data[ ifun ].nin != AST__ANY ) ) {
                  astError( AST__BADNI, "astLoadIntraMap(%s): The number of "
                                        "input coordinates for the IntraMap "
                                        "read (%d) does not match the number "
                                        "used by the registered \"%s\" "
                                        "transformation function (%d).", status,
                                        astGetClass( channel ), nin,
                                        tran_data[ ifun ].name,
                                        tran_data[ ifun ].nin  );
               } else if ( ( nout != tran_data[ ifun ].nout ) &&
                           ( tran_data[ ifun ].nout != AST__ANY ) ) {
                  astError( AST__BADNO, "astLoadIntraMap(%s): The number of "
                                        "output coordinates for the IntraMap "
                                        "read (%d) does not match the number "
                                        "used by the registered \"%s\" "
                                        "transformation function (%d).", status,
                                        astGetClass( channel ), nout,
                                        tran_data[ ifun ].name,
                                        tran_data[ ifun ].nout  );

/* If OK, store the index used to access the transformation function
   data. */
               } else {
                  new->ifun = ifun;
               }
            }
         }
      }

/* Free strings allocated by astReadString. */
      fname = astFree( fname );
      purpose = astFree( purpose );
      author = astFree( author );
      contact = astFree( contact );

/* If an error occurred, clean up by deleting the new IntraMap. */
      if ( !astOK ) new = astDelete( new );
   }

/* Return the new IntraMap pointer. */
   return new;
}

/* Virtual function interfaces. */
/* ============================ */
/* These provide the external interface to the virtual functions defined by
   this class. Each simply checks the global error status and then locates and
   executes the appropriate member function, using the function pointer stored
   in the object's virtual function table (this pointer is located using the
   astMEMBER macro defined in "object.h").

   Note that the member function may not be the one defined here, as it may
   have been over-ridden by a derived class. However, it should still have the
   same interface. */