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
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
const LMSGLN: i32 = (23 * 80);
const SMSGLN: i32 = 25;
struct SaveVars {
SAVMSG: Vec<u8>,
}
impl SaveInit for SaveVars {
fn new() -> Self {
let mut SAVMSG = vec![b' '; LMSGLN as usize];
fstr::assign(&mut SAVMSG, b" ");
Self { SAVMSG }
}
}
/// Store Long Error Message
///
/// Store a long error message.
///
/// PUTLMS is a low-level data structure access routine.
/// DO NOT CALL THIS ROUTINE. USE SETMSG, NOT PUTLMS, TO SET THE
/// CURRENT LONG ERROR MESSAGE.
///
/// # Required Reading
///
/// * [ERROR](crate::required_reading::error)
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// MSG I A long error message.
/// ```
///
/// # Detailed Input
///
/// ```text
/// MSG is the current long error message. This value will be
/// saved.
/// ```
///
/// # Parameters
///
/// ```text
/// LMSGLN is the maximum length of the long error message. See
/// the include file errhnd.inc for the value of LMSGLN.
/// ```
///
/// # Particulars
///
/// ```text
/// DO NOT CALL THIS ROUTINE.
///
/// This routine should be used only by routines within the SPICELIB
/// error handling system. Other routines should use SETMSG to set
/// the long error message.
/// ```
///
/// # Restrictions
///
/// ```text
/// 1) Calls to this routine by routines outside of the SPICELIB
/// error handling system may interfere with error processing.
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// W.L. Taber (JPL)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 1.1.1, 27-AUG-2021 (JDR)
///
/// Edited the header to comply with NAIF standard. Added
/// $Index_Entries entry.
///
/// - SPICELIB Version 1.1.0, 29-JUL-1997 (NJB)
///
/// Maximum length of the long error message is now represented
/// by the parameter LMSGLN. Miscellaneous header fixes were
/// made. Some indentation and vertical white space abnormalities
/// in the code were fixed. Some dubious comments were deleted
/// from the code.
///
/// - SPICELIB Version 1.0.1, 10-MAR-1992 (WLT)
///
/// Comment section for permuted index source lines was added
/// following the header.
///
/// - SPICELIB Version 1.0.0, 31-JAN-1990 (NJB)
/// ```
///
/// # Revisions
///
/// ```text
/// - SPICELIB Version 1.1.0, 29-JUL-1997 (NJB)
///
/// Maximum length of the long error message is now represented
/// by the parameter LMSGLN. Miscellaneous header fixes were
/// made. Some indentation and vertical white space abnormalities
/// in the code were fixed. Some dubious comments were deleted
/// from the code.
///
/// - Beta Version 1.0.1, 08-FEB-1989 (NJB)
///
/// Warnings added to discourage use of this routine in
/// non-error-handling code.
/// ```
pub fn putlms(ctx: &mut SpiceContext, msg: &str) {
PUTLMS(msg.as_bytes(), ctx.raw_context());
}
//$Procedure PUTLMS ( Store Long Error Message )
pub fn PUTLMS(MSG: &[u8], ctx: &mut Context) {
let save = ctx.get_vars::<SaveVars>();
let save = &mut *save.borrow_mut();
//
// Local Variables:
//
//
// The current long error message:
//
//
// Initial values:
//
//
// Executable Code:
//
fstr::assign(&mut save.SAVMSG, MSG);
}
/// Get Long Error Message
///
/// Return the value of the current long error message.
///
/// # Required Reading
///
/// * [ERROR](crate::required_reading::error)
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// MSG O The current long error message.
/// ```
///
/// # Detailed Output
///
/// ```text
/// MSG is the current long error message. See the
/// "required reading" file for a detailed discussion
/// of error messages.
/// ```
///
/// # Exceptions
///
/// ```text
/// Error free.
///
/// 1) However, this routine is part of the SPICELIB error
/// handling mechanism.
/// ```
///
/// # Particulars
///
/// ```text
/// See the required reading file for details of error
/// processing.
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// W.L. Taber (JPL)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 1.0.3, 03-JUN-2021 (JDR)
///
/// Edited the header to comply with NAIF standard. Added
/// $Index_Entries entry. Removed unnecessary $Revisions section.
///
/// - SPICELIB Version 1.0.2, 29-JUL-1997 (NJB)
///
/// Maximum length of the long error message is now represented
/// by the parameter LMSGLN. Miscellaneous header fixes were
/// made. Some indentation and vertical white space abnormalities
/// in the code were fixed. Some dubious comments were deleted
/// from the code.
///
/// - SPICELIB Version 1.0.1, 10-MAR-1992 (WLT)
///
/// Comment section for permuted index source lines was added
/// following the header.
///
/// - SPICELIB Version 1.0.0, 31-JAN-1990 (NJB)
/// ```
pub fn getlms(ctx: &mut SpiceContext, msg: &mut str) {
GETLMS(fstr::StrBytes::new(msg).as_mut(), ctx.raw_context());
}
//$Procedure GETLMS ( Get Long Error Message )
pub fn GETLMS(MSG: &mut [u8], ctx: &mut Context) {
let save = ctx.get_vars::<SaveVars>();
let save = &mut *save.borrow_mut();
//
// Grab the saved long message:
//
fstr::assign(MSG, &save.SAVMSG);
}