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
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
const QUOTE: &[u8] = b"\'";
const BEGCOM: &[u8] = b"BEGIN_COMMENT_BLOCK";
const ENDCOM: &[u8] = b"END_COMMENT_BLOCK";
const TCMBLK: &[u8] = b"TOTAL_COMMENT_BLOCKS";
const BCBLK: &[u8] = b"BEGIN_CHARACTER_BLOCK";
const ECBLK: &[u8] = b"END_CHARACTER_BLOCK";
const TCBLKS: &[u8] = b"TOTAL_CHARACTER_BLOCKS";
const BDBLK: &[u8] = b"BEGIN_DP_BLOCK";
const EDBLK: &[u8] = b"END_DP_BLOCK";
const TDBLKS: &[u8] = b"TOTAL_DP_BLOCKS";
const BIBLK: &[u8] = b"BEGIN_INTEGER_BLOCK";
const EIBLK: &[u8] = b"END_INTEGER_BLOCK";
const TIBLKS: &[u8] = b"TOTAL_INTEGER_BLOCKS";
const FTYPID: &[u8] = b"DASETF";
const INFOLN: &[u8] = b"NAIF DAS ENCODED TRANSFER FILE";
const LINLEN: i32 = 80;
const CBFLEN: i32 = 4;
const IDWLEN: i32 = 8;
const IFNLEN: i32 = 60;
const CRLEN: i32 = 1024;
const BUFSIZ: i32 = 1024;
const BCBPOS: i32 = 1;
const ECBPOS: i32 = CBFLEN;
/// DAS, convert binary file to transfer file
///
/// Convert the contents of a binary DAS file to an equivalent DAS
/// transfer file.
///
/// # Required Reading
///
/// * [DAS](crate::required_reading::das)
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// BINFIL I Name of the binary DAS file to be converted.
/// XFRLUN I Logical unit of a previously opened file.
/// ```
///
/// # Detailed Input
///
/// ```text
/// BINFIL is the name of a binary DAS file which is to be converted
/// to an equivalent DAS transfer file.
///
/// XFRLUN is the Fortran logical unit number of a previously opened
/// file. The DAS transfer file will be written to the
/// file attached to this logical unit beginning at the
/// current position in the file.
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) If the binary DAS file specified by the filename BINFIL cannot
/// be opened for read access, an error is signaled by a routine
/// in the call tree of this routine.
///
/// 2) If for some reason the DAS transfer file cannot be written
/// to, the error SPICE(FILEWRITEFAILED) is signaled.
///
/// 3) If, for any reason, the DAS file cannot be read, an error is
/// signaled by a routine in the call tree of this routine.
///
/// 4) The binary DAS file opened by this routine, BINFIL, is only
/// GUARANTEED to be closed upon successful completion of the
/// binary to transfer conversion process. In the event of an
/// error, the caller of this routine is required to close the
/// binary DAS file BINFIL.
///
/// 5) If the values for the number of reserved records or the
/// number of reserved characters in a DAS file is nonzero,
/// the error SPICE(BADDASFILE) is signaled. THIS ERROR
/// IS SIGNALED ONLY BECAUSE THE RESERVED RECORD AREA HAS
/// NOT YET BEEN IMPLEMENTED.
/// ```
///
/// # Files
///
/// ```text
/// See arguments BINFIL, XFRLUN.
/// ```
///
/// # Particulars
///
/// ```text
/// Any binary DAS file may be transferred between heterogeneous
/// Fortran environments by converting it to an equivalent file
/// containing only ASCII characters called a DAS transfer file.
/// Such a file can be transferred almost universally using any number
/// of established protocols. Once transferred, the DAS transfer file
/// can be converted to a binary file using the representations native
/// to the new host environment.
///
/// This routine provides a mechanism for converting a binary DAS
/// file into an equivalent DAS transfer file. It is one of a pair of
/// routines for performing conversions between the binary format of a
/// DAS file and the DAS transfer file. The inverse of this routine is
/// the routine DASTB.
///
/// Upon successful completion, the DAS transfer file attached to
/// Fortran logical unit XFRLUN will contain the same data as the
/// binary DAS file BINFIL in an encoded ASCII format. The binary DAS
/// file BINFIL will be closed when this routine exits successfully.
/// The DAS transfer file will remain open, as it was on entry, and it
/// will be positioned to write on the first line following the
/// encoded data from the binary DAS file.
/// ```
///
/// # Examples
///
/// ```text
/// Let
///
/// BINFIL be the name of a binary DAS file which is to be
/// converted to an equivalent DAS transfer file. This
/// could be for purposes of porting the data to a
/// different computer platform, or possibly for
/// archival storage of the data.
///
/// XFRLUN be the Fortran logical unit to which the DAS transfer
/// file is to be written.
///
/// Then, the following subroutine call would read the binary DAS
/// file BINFIL, convert its contents into an encoded format, and
/// then write that data to the DAS transfer file attached to XFRLUN,
/// beginning at the current position in that file.
///
/// CALL DASBT ( BINFIL, XFRLUN )
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// K.R. Gehringer (JPL)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 3.2.0, 02-JUN-2021 (JDR)
///
/// Added IMPLICIT NONE standard.
///
/// Edited the header to comply with NAIF standard. Removed
/// unnecessary $Revisions section.
///
/// - SPICELIB Version 3.1.0, 05-FEB-1995 (NJB)
///
/// Updated to support integration with the handle manager
/// subsystem.
///
/// - SPICELIB Version 3.0.0, 13-AUG-1994 (KRG)
///
/// Updated the header and in line comments to reflect the change
/// from calling files text files to calling them transfer files.
///
/// Changed the variable name TXTLUN to XFRLUN to make it
/// compatible with the change in terminology.
///
/// - SPICELIB Version 2.0.0, 13-AUG-1994 (KRG)
///
/// A potential problem with list directed writes was fixed. Some
/// compilers have list directed writes that write multiple comma
/// separated items to one line and other compilers write these to
/// multiple lines even when all of the output will fit on a single
/// line. This was fixed by replacing all of the affected list
/// directed write statements with code to put the desired data
/// into a character string and then write the character string.
///
/// - SPICELIB Version 1.0.0, 29-OCT-1992 (KRG)
/// ```
pub fn dasbt(ctx: &mut SpiceContext, binfil: &str, xfrlun: i32) -> crate::Result<()> {
DASBT(binfil.as_bytes(), xfrlun, ctx.raw_context())?;
ctx.handle_errors()?;
Ok(())
}
//$Procedure DASBT ( DAS, convert binary file to transfer file )
pub fn DASBT(BINFIL: &[u8], XFRLUN: i32, ctx: &mut Context) -> f2rust_std::Result<()> {
let mut CBUFFR = ActualCharArray::new(CBFLEN, 1..=BUFSIZ);
let mut CRECRD = [b' '; CRLEN as usize];
let mut IDWORD = [b' '; IDWLEN as usize];
let mut IFNAME = [b' '; IFNLEN as usize];
let mut LINE = [b' '; LINLEN as usize];
let mut DBUFFR = ActualArray::<f64>::new(1..=BUFSIZ);
let mut DASLUN: i32 = 0;
let mut DTABEG: i32 = 0;
let mut HANDLE: i32 = 0;
let mut IBUFFR = ActualArray::<i32>::new(1..=BUFSIZ);
let mut IOSTAT: i32 = 0;
let mut NCDATA: i32 = 0;
let mut NDDATA: i32 = 0;
let mut NIDATA: i32 = 0;
let mut NRESVR: i32 = 0;
let mut NRESVC: i32 = 0;
let mut NCOMR: i32 = 0;
let mut NCOMC: i32 = 0;
let mut NUMBLK: i32 = 0;
let mut NUMDTA: i32 = 0;
let mut NUMLFT: i32 = 0;
let mut RECNO: i32 = 0;
//
// SPICELIB functions
//
//
// Local parameters
//
//
// CHARACTER*(*) BEGRES
// PARAMETER ( BEGRES = 'BEGIN_RESERVED_BLOCK' )
//
// CHARACTER*(*) ENDRES
// PARAMETER ( ENDRES = 'END_RESERVED_BLOCK' )
//
// CHARACTER*(*) TRRBLK
// PARAMETER ( TRRBLK = 'TOTAL_RESERVED_BLOCKS' )
//
//
// Some parameters for writing the array markers
//
//
// Length of a character buffer array element.
//
//
// Length of a DAS file ID word.
//
//
// Length of a DAS internal filename.
//
//
// Length of a DAS comment record, in characters.
//
//
// Size of the character, double precision, and integer data buffers.
//
//
// Beginning and ending string positions for reading/writing
// character data from/to a DAS file using the character data
// buffer.
//
//
// Local variables
//
//
// Standard SPICE error handling.
//
if RETURN(ctx) {
return Ok(());
} else {
CHKIN(b"DASBT", ctx)?;
}
//
// When converting a binary DAS file into its DAS transfer file
// equivalent, all of the data contained in the binary file is
// placed into the DAS transfer file by this routine. This includes
// the reserved record area, the comment area, and the character,
// double precision, and integer data arrays as well.
//
// Currently, the reserved record area has not been implemented, as
// there is no need for it at this time. If, or when, the reserved
// record area is implemented, this routine will need to be modified
// in order to support it. See the code for details.
//
// The data from the binary file are written to the DAS transfer
// file as sequences of small blocks of data. This is to provide
// a means for performing some error detection when converting a
// DAS transfer file into its binary equivalent. Each block of
// data is enclosed within begin and end block markers which hold
// the count of data items in a data block. When all of the data
// blocks for a data area have been written, a total blocks line is
// written to the DAS transfer file.
//
// The data from the binary DAS file MUST appear in the following
// order in the DAS transfer file.
//
// 1) Reserved records (when/if implemented)
// 2) Comment area
// 3) Character data array
// 4) Double precision data array
// 5) Integer data array
//
// If the data count for any of these DAS data areas is zero, no
// data or markers for it are placed into the DAS transfer file.
// Conversion proceeds with the next DAS data area in the list.
//
// For example, suppose that we have a binary DAS file where there
// are 0 reserved characters in the reserved record area, 5000
// comment characters in the comment area, and that the character,
// double precision, and integer array counts are 0, 2300, and
// 6900, respectively. Then, the DAS transfer file will contain
// no reserved record data blocks, 2 comment data blocks, no
// character data blocks, 3 double precision data blocks, and 7
// integer data blocks, in that order.
//
// DAS transfer file description.
// ----------------------------------
//
// A brief description of the DAS encoded file format and its
// intended use follows. This description is intended to provide a
// simple ``picture'' of the DAS transfer file format to aid in the
// understanding of this routine. This description is NOT intended to
// be a detailed specification of the file format.
//
// A DAS transfer file contains all of the data from a binary
// DAS file in an encoded ASCII format. It also contains some
// bookkeeping information for maintaining the integrity of the
// data. The DAS transfer file format allows the full precision of
// character, integer, and floating point numeric data to be
// maintained in a portable fashion. The DAS transfer file format is
// intended to provide a reliable and accurate means for porting data
// among multiple computer systems and for the archival storage of
// data.
//
// A DAS transfer file is not intended to be used directly to provide
// data to a program. The equivalent binary DAS file is to be used
// for this purpose. In no way should any program, other than a DAS
// binary <-> transfer conversion program, rely on the DAS transfer
// file format.
//
// To correctly understand the DAS transfer file description the
// reader should be familiar with the DAS file architecture. Items
// enclosed in angle brackets, '<' and '>', are used to represent the
// data which are to be placed at that position in the file. The
// bookkeeping information which appears is represented exactly as it
// would appear in a DAS transfer file.
//
// Let
//
// <BOF> denote the beginning of the file
// <EOF> denote the end of the file
//
// and
//
// nresvb denote the number of encoded reserved record data
// blocks generated
// nresvc denote the total number of reserved record characters
// in the reserved record area of a DAS file
// ncomb denote the number of encoded comment data blocks
// generated
// ncomc denote the total number of comment characters in the
// comment area of a DAS file
// nchrb denote the number of encoded character data blocks
// generated
// nchrs denote the count of characters in the DAS character
// data array
// ndpb denote the number of encoded double precision data
// blocks generated
// ndps denote the count of double precision numbers in the DAS
// double precision data array
// nintb denote the number of encoded integer data blocks
// generated
// nints denote the count of integers in the DAS integer data
// array
//
// A DAS encoded transfer file has the following format:
//
// <BOF>
// < Information line >
// < DAS file ID word >
// < Internal filename >
// < Encoded count of reserved records >
// < Encoded count of reserved characters >
// < Encoded count of comment records >
// < Encoded count of comment characters >
// < Blocks of encoded reserved record data, if nresvc > 0 >
// TOTAL_RESERVED_BLOCKS nresvb nresvc
// < Blocks of encoded comment data, if ncomc > 0 >
// TOTAL_COMMENT_BLOCKS ncomb ncomc
// < Encoded count of character data >
// < Encoded count of double precision data >
// < Encoded count of integer data >
// < Blocks of encoded character data, if nchrs > 0 >
// TOTAL_CHARACTER_BLOCKS nchrb nchrs
// < Blocks of encoded double precision data, if ndps > 0 >
// TOTAL_DP_BLOCKS ndpb ndps
// < Blocks of encoded integer data, if nints > 0 >
// TOTAL_INTEGER_BLOCKS nintb nints
// <EOF>
//
// This routine will check the SPICELIB function FAILED() after
// each call, or consecutive sequence of calls, to data encoding
// routines, and if an error was signaled it will simply check out
// and return to the caller.
//
// This routine will check the SPICELIB function FAILED() after
// each DAS file access call, and if an error was signaled it will
// simply check out and return to the caller.
//
// We begin by opening the binary DAS file specified by BINFIL for
// read access, obtaining a file handle.
//
DASOPR(BINFIL, &mut HANDLE, ctx)?;
if FAILED(ctx) {
//
// If an error occurred while opening the file check out and
// return to the caller.
//
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Get the contents of the DAS file record.
//
DASRFR(
HANDLE,
&mut IDWORD,
&mut IFNAME,
&mut NRESVR,
&mut NRESVC,
&mut NCOMR,
&mut NCOMC,
ctx,
)?;
//
// Convert the DAS file handle into its equivalent Fortran logical
// unit. We need the logical unit so that we can read the reserved
// records and the comment records.
//
ZZDDHHLU(HANDLE, b"DAS", false, &mut DASLUN, ctx)?;
if FAILED(ctx) {
//
// If an error occurred while converting the DAS file handle to
// a logical unit, attempt to close the binary file, then check
// out and return.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Check to be sure that the number of reserved records and the
// number of reserved characters are not being used. The DAS
// reserved record area is not currently implemented, so nobody
// should be using it.
//
if (NRESVC != 0) {
//
// Set the error message, close the file, signal the error, and
// exit.
//
SETMSG(b"The number of reserved characters was nonzero (#) in file: #, but the DAS reserved record area has NOT been implemented yet!", ctx);
ERRINT(b"#", NRESVC, ctx);
ERRFNM(b"#", DASLUN, ctx)?;
DASCLS(HANDLE, ctx)?;
SIGERR(b"SPICE(BADDASFILE)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
if (NRESVR != 0) {
//
// Set the error message, close the file, signal the error, and
// exit.
//
SETMSG(b"The number of reserved records was nonzero (#) in file: #, but the DAS reserved record area has NOT been implemented yet!", ctx);
ERRINT(b"#", NRESVR, ctx);
ERRFNM(b"#", DASLUN, ctx)?;
DASCLS(HANDLE, ctx)?;
SIGERR(b"SPICE(BADDASFILE)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write the information line containing the file type information
// and format version for the DAS transfer to the current position in
// the file. The file format version information must be the first
// ``word'' on the information line. The rest of the line may be used
// for other purposes. Right now, it simply contains an expanded
// description of the file format version information ``word.''
//
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(&fstr::concat(&fstr::concat(FTYPID, b" "), INFOLN))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write the DAS ID word to the DAS transfer file.
//
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(&fstr::concat(&fstr::concat(QUOTE, &IDWORD), QUOTE))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write the internal file name of the DAS file to the DAS transfer
// file.
//
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(&fstr::concat(&fstr::concat(QUOTE, &IFNAME), QUOTE))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write the number of reserved records and reserved characters to
// the DAS transfer file.
//
WRENCI(XFRLUN, 1, &[NRESVR], ctx)?;
WRENCI(XFRLUN, 1, &[NRESVC], ctx)?;
if FAILED(ctx) {
//
// If an error occurred while writing the number of reserved
// records or number of reserved characters, attempt to close
// the binary file, then check out and return.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write the number of comment records and comment characters to
// the DAS transfer file.
//
WRENCI(XFRLUN, 1, &[NCOMR], ctx)?;
WRENCI(XFRLUN, 1, &[NCOMC], ctx)?;
if FAILED(ctx) {
//
// If an error occurred while writing the number of comment
// records or number of comment characters, attempt to close
// the binary file, then check out and return.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// **************************************************************
// When/if the reserved record area is implemented, the code to
// convert it and place it into the DAS transfer file should go
// here. It should be possible to simply copy the code for the
// comment area, making all of the necessary variable name changes,
// etc., since the reserved record area is going to contain ONLY
// character data.
// **************************************************************
//
// Write out the comment area of the DAS file, if there are any
// comment characters stored in it.
//
if (NCOMC > 0) {
//
// Write out the comment records, one at a time.
//
fstr::assign(&mut CRECRD, b" ");
NUMLFT = NCOMC;
NUMBLK = 0;
RECNO = (1 + NRESVR);
while (NUMLFT > 0) {
NUMBLK = (NUMBLK + 1);
RECNO = (RECNO + 1);
if (NUMLFT > CRLEN) {
NUMDTA = CRLEN;
} else {
NUMDTA = NUMLFT;
}
//
// Write out the begin comment block marker and the number of
// comment characters.
//
fstr::assign(
&mut LINE,
&fstr::concat(&fstr::concat(BEGCOM, b" #"), b" #"),
);
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Read a comment record and then encode and write it.
//
DASIOC(b"READ", DASLUN, RECNO, &mut CRECRD, ctx)?;
WRENCC(XFRLUN, NUMDTA, CharArray::from_ref(&CRECRD), ctx)?;
if FAILED(ctx) {
//
// We want to check failed here because were in a loop.
// We should exit the loop, and the routine, as soon as
// an error is detected, so we don't continue doing things
// for a long time. Attempt to close the binary DAS file
// that we opened and then return to the caller.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write out the end comment block marker and the number of
// comment characters.
//
fstr::assign(
&mut LINE,
&fstr::concat(&fstr::concat(ENDCOM, b" #"), b" #"),
);
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Update the number of comment characters remaining to be
// written.
//
NUMLFT = (NUMLFT - NUMDTA);
}
//
// Write out the number of comment blocks processed, and the
// count of comment characters
//
fstr::assign(
&mut LINE,
&fstr::concat(&fstr::concat(TCMBLK, b" #"), b" #"),
);
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NCOMC, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
}
//
// Read in the data counts for each of the data types from the binary
// DAS file.
//
DASLLA(HANDLE, &mut NCDATA, &mut NDDATA, &mut NIDATA, ctx)?;
//
// Write the data counts to the DAS transfer file. These will be
// useful in determining which data types to expect in the DAS
// transfer file when converting it back to binary.
//
WRENCI(XFRLUN, 1, &[NCDATA], ctx)?;
WRENCI(XFRLUN, 1, &[NDDATA], ctx)?;
WRENCI(XFRLUN, 1, &[NIDATA], ctx)?;
if FAILED(ctx) {
//
// If an error occurred while writing any of the data counts to
// the DAS transfer file, attempt to close the binary file, then
// check out and return.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Encode and write the CHARACTER data to the DAS transfer file, if
// there is any character data.
//
if (NCDATA > 0) {
NUMBLK = 0;
DTABEG = 1;
NUMLFT = NCDATA;
while (NUMLFT > 0) {
NUMBLK = (NUMBLK + 1);
if (NUMLFT >= (CBFLEN * BUFSIZ)) {
NUMDTA = (CBFLEN * BUFSIZ);
} else {
NUMDTA = NUMLFT;
}
//
// Write out the begin data block identifier, the block
// number, and the data count for the block.
//
fstr::assign(&mut LINE, &fstr::concat(&fstr::concat(BCBLK, b" #"), b" #"));
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Read in NUMDTA characters. The desired data are specified by
// beginning and ending indices into the array, inclusive: thus
// the subtraction of 1 in the call.
//
DASRDC(
HANDLE,
DTABEG,
((DTABEG + NUMDTA) - 1),
BCBPOS,
ECBPOS,
CBUFFR.as_arg_mut(),
ctx,
)?;
//
// Encode and write out a buffer of characters.
//
WRENCC(XFRLUN, NUMDTA, CBUFFR.as_arg(), ctx)?;
if FAILED(ctx) {
//
// We want to check failed here because were in a loop.
// We should exit the loop, and the routine, as soon as
// an error is detected, so we don't continue doing things
// for a long time. Attempt to close the binary DAS file
// that we opened and then return to the caller.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write out the end data block identifier, the block number,
// and the data count for the block.
//
fstr::assign(&mut LINE, &fstr::concat(&fstr::concat(ECBLK, b" #"), b" #"));
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Increment the data pointer and decrement the amount of data
// left to move.
//
DTABEG = (DTABEG + NUMDTA);
NUMLFT = (NUMLFT - NUMDTA);
}
//
// Write out the number of character data blocks processed
// processed, and the count of double precision data items.
//
fstr::assign(
&mut LINE,
&fstr::concat(&fstr::concat(TCBLKS, b" #"), b" #"),
);
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NCDATA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
}
//
// Encode and write the DOUBLE PRECISION data to the DAS transfer
// file.
//
if (NDDATA > 0) {
NUMBLK = 0;
DTABEG = 1;
NUMLFT = NDDATA;
while (NUMLFT > 0) {
NUMBLK = (NUMBLK + 1);
if (NUMLFT >= BUFSIZ) {
NUMDTA = BUFSIZ;
} else {
NUMDTA = NUMLFT;
}
//
// Write out the begin data block identifier, the block
// number, and the data count for the block.
//
fstr::assign(&mut LINE, &fstr::concat(&fstr::concat(BDBLK, b" #"), b" #"));
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Read in NUMDTA double precision numbers.The desired data are
// specified by beginning and ending indices into the array,
// inclusive: thus the subtraction of 1 in the call.
//
DASRDD(
HANDLE,
DTABEG,
((DTABEG + NUMDTA) - 1),
DBUFFR.as_slice_mut(),
ctx,
)?;
//
// Encode and write out a buffer of double precision numbers.
//
WRENCD(XFRLUN, NUMDTA, DBUFFR.as_slice(), ctx)?;
if FAILED(ctx) {
//
// We want to check failed here because were in a loop.
// We should exit the loop, and the routine, as soon as
// an error is detected, so we don't continue doing things
// for a long time. Attempt to close the binary DAS file
// that we opened and then return to the caller.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write out the end data block identifier, the block number,
// and the data count for the block.
//
fstr::assign(&mut LINE, &fstr::concat(&fstr::concat(EDBLK, b" #"), b" #"));
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Increment the data pointer and decrement the amount of data
// left to move.
//
DTABEG = (DTABEG + NUMDTA);
NUMLFT = (NUMLFT - NUMDTA);
}
//
// Write out the number of double precision processed data blocks
// processed, and the count of double precision data items.
//
fstr::assign(
&mut LINE,
&fstr::concat(&fstr::concat(TDBLKS, b" #"), b" #"),
);
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NDDATA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
}
//
// Encode and write the INTEGER data to the DAS transfer file, if
// there is any.
//
if (NIDATA > 0) {
NUMBLK = 0;
DTABEG = 1;
NUMLFT = NIDATA;
while (NUMLFT > 0) {
NUMBLK = (NUMBLK + 1);
if (NUMLFT >= BUFSIZ) {
NUMDTA = BUFSIZ;
} else {
NUMDTA = NUMLFT;
}
//
// Write out the begin data block identifier, the block number,
// and the data count for the block.
//
fstr::assign(&mut LINE, &fstr::concat(&fstr::concat(BIBLK, b" #"), b" #"));
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Read in NUMDTA integers. The desired data are specified by
// beginning and ending indices into the array,inclusive: thus
// the subtraction of 1 in the call.
//
DASRDI(
HANDLE,
DTABEG,
((DTABEG + NUMDTA) - 1),
IBUFFR.as_slice_mut(),
ctx,
)?;
//
// Encode and write out a buffer of integers.
//
WRENCI(XFRLUN, NUMDTA, IBUFFR.as_slice(), ctx)?;
if FAILED(ctx) {
//
// We want to check failed here because were in a loop.
// We should exit the loop, and the routine, as soon as
// an error is detected, so we don't continue doing things
// for a long time. Attempt to close the binary DAS file
// that we opened and then return to the caller.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Write out the end data block identifier, the block number,
// and the data count for the block.
//
fstr::assign(&mut LINE, &fstr::concat(&fstr::concat(EIBLK, b" #"), b" #"));
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NUMDTA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
//
// Increment the data pointers and decrement the amount of data
// left.
//
DTABEG = (DTABEG + NUMDTA);
NUMLFT = (NUMLFT - NUMDTA);
}
//
// Write out the number of processed integer data blocks
// processed, and the count of double precision data items.
//
fstr::assign(
&mut LINE,
&fstr::concat(&fstr::concat(TIBLKS, b" #"), b" #"),
);
REPMI(&LINE.clone(), b"#", NUMBLK, &mut LINE, ctx);
REPMI(&LINE.clone(), b"#", NIDATA, &mut LINE, ctx);
{
use f2rust_std::{
data::Val,
io::{self, Writer},
};
let mut writer = io::FormattedWriter::new(ctx.io_unit(XFRLUN)?, None, b"(A)")?;
IOSTAT = io::capture_iostat(|| {
writer.start()?;
writer.write_str(fstr::substr(&LINE, 1..=RTRIM(&LINE)))?;
writer.finish()?;
Ok(())
})?;
}
if (IOSTAT != 0) {
//
// An error occurred, so close the binary DAS file, set an
// appropriate error message, and return to the caller.
//
DASCLS(HANDLE, ctx)?;
SETMSG(
b"Error writing to the DAS transfer file: #. IOSTAT = #.",
ctx,
);
ERRFNM(b"#", XFRLUN, ctx)?;
ERRINT(b"#", IOSTAT, ctx);
SIGERR(b"SPICE(FILEWRITEFAILED)", ctx)?;
CHKOUT(b"DASBT", ctx)?;
return Ok(());
}
}
//
// Close only the binary DAS file.
//
DASCLS(HANDLE, ctx)?;
CHKOUT(b"DASBT", ctx)?;
Ok(())
}