spacedatastandards-org 1.73.12

Space data standards framework based on CCSDS standards and Google FlatBuffers.
Documentation
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
// automatically generated by the FlatBuffers compiler, do not modify


// @generated

use core::mem;
use core::cmp::Ordering;

extern crate flatbuffers;
use self::flatbuffers::{EndianScalar, Follow};

pub enum RDMOffset {}
#[derive(Copy, Clone, PartialEq)]

/// Reentry Data Message
pub struct RDM<'a> {
  pub _tab: flatbuffers::Table<'a>,
}

impl<'a> flatbuffers::Follow<'a> for RDM<'a> {
  type Inner = RDM<'a>;
  #[inline]
  unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
    Self { _tab: flatbuffers::Table::new(buf, loc) }
  }
}

impl<'a> RDM<'a> {
  pub const VT_CCSDS_RDM_VERS: flatbuffers::VOffsetT = 4;
  pub const VT_CREATION_DATE: flatbuffers::VOffsetT = 6;
  pub const VT_ORIGINATOR: flatbuffers::VOffsetT = 8;
  pub const VT_OBJECT_NAME: flatbuffers::VOffsetT = 10;
  pub const VT_OBJECT_ID: flatbuffers::VOffsetT = 12;
  pub const VT_REENTRY_EPOCH: flatbuffers::VOffsetT = 14;
  pub const VT_REENTRY_LATITUDE: flatbuffers::VOffsetT = 16;
  pub const VT_REENTRY_LONGITUDE: flatbuffers::VOffsetT = 18;

  #[inline]
  pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self {
    RDM { _tab: table }
  }
  #[allow(unused_mut)]
  pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: flatbuffers::Allocator + 'bldr>(
    _fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr, A>,
    args: &'args RDMArgs<'args>
  ) -> flatbuffers::WIPOffset<RDM<'bldr>> {
    let mut builder = RDMBuilder::new(_fbb);
    builder.add_REENTRY_LONGITUDE(args.REENTRY_LONGITUDE);
    builder.add_REENTRY_LATITUDE(args.REENTRY_LATITUDE);
    if let Some(x) = args.REENTRY_EPOCH { builder.add_REENTRY_EPOCH(x); }
    if let Some(x) = args.OBJECT_ID { builder.add_OBJECT_ID(x); }
    if let Some(x) = args.OBJECT_NAME { builder.add_OBJECT_NAME(x); }
    if let Some(x) = args.ORIGINATOR { builder.add_ORIGINATOR(x); }
    if let Some(x) = args.CREATION_DATE { builder.add_CREATION_DATE(x); }
    if let Some(x) = args.CCSDS_RDM_VERS { builder.add_CCSDS_RDM_VERS(x); }
    builder.finish()
  }

  pub fn unpack(&self) -> RDMT {
    let CCSDS_RDM_VERS = self.CCSDS_RDM_VERS().map(|x| {
      x.to_string()
    });
    let CREATION_DATE = self.CREATION_DATE().map(|x| {
      x.to_string()
    });
    let ORIGINATOR = self.ORIGINATOR().map(|x| {
      x.to_string()
    });
    let OBJECT_NAME = self.OBJECT_NAME().map(|x| {
      x.to_string()
    });
    let OBJECT_ID = self.OBJECT_ID().map(|x| {
      x.to_string()
    });
    let REENTRY_EPOCH = self.REENTRY_EPOCH().map(|x| {
      x.to_string()
    });
    let REENTRY_LATITUDE = self.REENTRY_LATITUDE();
    let REENTRY_LONGITUDE = self.REENTRY_LONGITUDE();
    RDMT {
      CCSDS_RDM_VERS,
      CREATION_DATE,
      ORIGINATOR,
      OBJECT_NAME,
      OBJECT_ID,
      REENTRY_EPOCH,
      REENTRY_LATITUDE,
      REENTRY_LONGITUDE,
    }
  }

  #[inline]
  pub fn CCSDS_RDM_VERS(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(RDM::VT_CCSDS_RDM_VERS, None)}
  }
  #[inline]
  pub fn CREATION_DATE(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(RDM::VT_CREATION_DATE, None)}
  }
  #[inline]
  pub fn ORIGINATOR(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(RDM::VT_ORIGINATOR, None)}
  }
  #[inline]
  pub fn OBJECT_NAME(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(RDM::VT_OBJECT_NAME, None)}
  }
  #[inline]
  pub fn OBJECT_ID(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(RDM::VT_OBJECT_ID, None)}
  }
  #[inline]
  pub fn REENTRY_EPOCH(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(RDM::VT_REENTRY_EPOCH, None)}
  }
  #[inline]
  pub fn REENTRY_LATITUDE(&self) -> f64 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<f64>(RDM::VT_REENTRY_LATITUDE, Some(0.0)).unwrap()}
  }
  #[inline]
  pub fn REENTRY_LONGITUDE(&self) -> f64 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<f64>(RDM::VT_REENTRY_LONGITUDE, Some(0.0)).unwrap()}
  }
}

impl flatbuffers::Verifiable for RDM<'_> {
  #[inline]
  fn run_verifier(
    v: &mut flatbuffers::Verifier, pos: usize
  ) -> Result<(), flatbuffers::InvalidFlatbuffer> {
    use self::flatbuffers::Verifiable;
    v.visit_table(pos)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("CCSDS_RDM_VERS", Self::VT_CCSDS_RDM_VERS, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("CREATION_DATE", Self::VT_CREATION_DATE, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("ORIGINATOR", Self::VT_ORIGINATOR, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("OBJECT_NAME", Self::VT_OBJECT_NAME, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("OBJECT_ID", Self::VT_OBJECT_ID, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("REENTRY_EPOCH", Self::VT_REENTRY_EPOCH, false)?
     .visit_field::<f64>("REENTRY_LATITUDE", Self::VT_REENTRY_LATITUDE, false)?
     .visit_field::<f64>("REENTRY_LONGITUDE", Self::VT_REENTRY_LONGITUDE, false)?
     .finish();
    Ok(())
  }
}
pub struct RDMArgs<'a> {
    pub CCSDS_RDM_VERS: Option<flatbuffers::WIPOffset<&'a str>>,
    pub CREATION_DATE: Option<flatbuffers::WIPOffset<&'a str>>,
    pub ORIGINATOR: Option<flatbuffers::WIPOffset<&'a str>>,
    pub OBJECT_NAME: Option<flatbuffers::WIPOffset<&'a str>>,
    pub OBJECT_ID: Option<flatbuffers::WIPOffset<&'a str>>,
    pub REENTRY_EPOCH: Option<flatbuffers::WIPOffset<&'a str>>,
    pub REENTRY_LATITUDE: f64,
    pub REENTRY_LONGITUDE: f64,
}
impl<'a> Default for RDMArgs<'a> {
  #[inline]
  fn default() -> Self {
    RDMArgs {
      CCSDS_RDM_VERS: None,
      CREATION_DATE: None,
      ORIGINATOR: None,
      OBJECT_NAME: None,
      OBJECT_ID: None,
      REENTRY_EPOCH: None,
      REENTRY_LATITUDE: 0.0,
      REENTRY_LONGITUDE: 0.0,
    }
  }
}

pub struct RDMBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> {
  fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a, A>,
  start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
}
impl<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> RDMBuilder<'a, 'b, A> {
  #[inline]
  pub fn add_CCSDS_RDM_VERS(&mut self, CCSDS_RDM_VERS: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(RDM::VT_CCSDS_RDM_VERS, CCSDS_RDM_VERS);
  }
  #[inline]
  pub fn add_CREATION_DATE(&mut self, CREATION_DATE: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(RDM::VT_CREATION_DATE, CREATION_DATE);
  }
  #[inline]
  pub fn add_ORIGINATOR(&mut self, ORIGINATOR: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(RDM::VT_ORIGINATOR, ORIGINATOR);
  }
  #[inline]
  pub fn add_OBJECT_NAME(&mut self, OBJECT_NAME: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(RDM::VT_OBJECT_NAME, OBJECT_NAME);
  }
  #[inline]
  pub fn add_OBJECT_ID(&mut self, OBJECT_ID: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(RDM::VT_OBJECT_ID, OBJECT_ID);
  }
  #[inline]
  pub fn add_REENTRY_EPOCH(&mut self, REENTRY_EPOCH: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(RDM::VT_REENTRY_EPOCH, REENTRY_EPOCH);
  }
  #[inline]
  pub fn add_REENTRY_LATITUDE(&mut self, REENTRY_LATITUDE: f64) {
    self.fbb_.push_slot::<f64>(RDM::VT_REENTRY_LATITUDE, REENTRY_LATITUDE, 0.0);
  }
  #[inline]
  pub fn add_REENTRY_LONGITUDE(&mut self, REENTRY_LONGITUDE: f64) {
    self.fbb_.push_slot::<f64>(RDM::VT_REENTRY_LONGITUDE, REENTRY_LONGITUDE, 0.0);
  }
  #[inline]
  pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>) -> RDMBuilder<'a, 'b, A> {
    let start = _fbb.start_table();
    RDMBuilder {
      fbb_: _fbb,
      start_: start,
    }
  }
  #[inline]
  pub fn finish(self) -> flatbuffers::WIPOffset<RDM<'a>> {
    let o = self.fbb_.end_table(self.start_);
    flatbuffers::WIPOffset::new(o.value())
  }
}

impl core::fmt::Debug for RDM<'_> {
  fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
    let mut ds = f.debug_struct("RDM");
      ds.field("CCSDS_RDM_VERS", &self.CCSDS_RDM_VERS());
      ds.field("CREATION_DATE", &self.CREATION_DATE());
      ds.field("ORIGINATOR", &self.ORIGINATOR());
      ds.field("OBJECT_NAME", &self.OBJECT_NAME());
      ds.field("OBJECT_ID", &self.OBJECT_ID());
      ds.field("REENTRY_EPOCH", &self.REENTRY_EPOCH());
      ds.field("REENTRY_LATITUDE", &self.REENTRY_LATITUDE());
      ds.field("REENTRY_LONGITUDE", &self.REENTRY_LONGITUDE());
      ds.finish()
  }
}
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq)]
pub struct RDMT {
  pub CCSDS_RDM_VERS: Option<String>,
  pub CREATION_DATE: Option<String>,
  pub ORIGINATOR: Option<String>,
  pub OBJECT_NAME: Option<String>,
  pub OBJECT_ID: Option<String>,
  pub REENTRY_EPOCH: Option<String>,
  pub REENTRY_LATITUDE: f64,
  pub REENTRY_LONGITUDE: f64,
}
impl Default for RDMT {
  fn default() -> Self {
    Self {
      CCSDS_RDM_VERS: None,
      CREATION_DATE: None,
      ORIGINATOR: None,
      OBJECT_NAME: None,
      OBJECT_ID: None,
      REENTRY_EPOCH: None,
      REENTRY_LATITUDE: 0.0,
      REENTRY_LONGITUDE: 0.0,
    }
  }
}
impl RDMT {
  pub fn pack<'b, A: flatbuffers::Allocator + 'b>(
    &self,
    _fbb: &mut flatbuffers::FlatBufferBuilder<'b, A>
  ) -> flatbuffers::WIPOffset<RDM<'b>> {
    let CCSDS_RDM_VERS = self.CCSDS_RDM_VERS.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let CREATION_DATE = self.CREATION_DATE.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let ORIGINATOR = self.ORIGINATOR.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let OBJECT_NAME = self.OBJECT_NAME.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let OBJECT_ID = self.OBJECT_ID.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let REENTRY_EPOCH = self.REENTRY_EPOCH.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let REENTRY_LATITUDE = self.REENTRY_LATITUDE;
    let REENTRY_LONGITUDE = self.REENTRY_LONGITUDE;
    RDM::create(_fbb, &RDMArgs{
      CCSDS_RDM_VERS,
      CREATION_DATE,
      ORIGINATOR,
      OBJECT_NAME,
      OBJECT_ID,
      REENTRY_EPOCH,
      REENTRY_LATITUDE,
      REENTRY_LONGITUDE,
    })
  }
}
#[inline]
/// Verifies that a buffer of bytes contains a `RDM`
/// and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_RDM_unchecked`.
pub fn root_as_RDM(buf: &[u8]) -> Result<RDM, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::root::<RDM>(buf)
}
#[inline]
/// Verifies that a buffer of bytes contains a size prefixed
/// `RDM` and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `size_prefixed_root_as_RDM_unchecked`.
pub fn size_prefixed_root_as_RDM(buf: &[u8]) -> Result<RDM, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::size_prefixed_root::<RDM>(buf)
}
#[inline]
/// Verifies, with the given options, that a buffer of bytes
/// contains a `RDM` and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_RDM_unchecked`.
pub fn root_as_RDM_with_opts<'b, 'o>(
  opts: &'o flatbuffers::VerifierOptions,
  buf: &'b [u8],
) -> Result<RDM<'b>, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::root_with_opts::<RDM<'b>>(opts, buf)
}
#[inline]
/// Verifies, with the given verifier options, that a buffer of
/// bytes contains a size prefixed `RDM` and returns
/// it. Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_RDM_unchecked`.
pub fn size_prefixed_root_as_RDM_with_opts<'b, 'o>(
  opts: &'o flatbuffers::VerifierOptions,
  buf: &'b [u8],
) -> Result<RDM<'b>, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::size_prefixed_root_with_opts::<RDM<'b>>(opts, buf)
}
#[inline]
/// Assumes, without verification, that a buffer of bytes contains a RDM and returns it.
/// # Safety
/// Callers must trust the given bytes do indeed contain a valid `RDM`.
pub unsafe fn root_as_RDM_unchecked(buf: &[u8]) -> RDM {
  flatbuffers::root_unchecked::<RDM>(buf)
}
#[inline]
/// Assumes, without verification, that a buffer of bytes contains a size prefixed RDM and returns it.
/// # Safety
/// Callers must trust the given bytes do indeed contain a valid size prefixed `RDM`.
pub unsafe fn size_prefixed_root_as_RDM_unchecked(buf: &[u8]) -> RDM {
  flatbuffers::size_prefixed_root_unchecked::<RDM>(buf)
}
pub const RDM_IDENTIFIER: &str = "$RDM";

#[inline]
pub fn RDM_buffer_has_identifier(buf: &[u8]) -> bool {
  flatbuffers::buffer_has_identifier(buf, RDM_IDENTIFIER, false)
}

#[inline]
pub fn RDM_size_prefixed_buffer_has_identifier(buf: &[u8]) -> bool {
  flatbuffers::buffer_has_identifier(buf, RDM_IDENTIFIER, true)
}

#[inline]
pub fn finish_RDM_buffer<'a, 'b, A: flatbuffers::Allocator + 'a>(
    fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>,
    root: flatbuffers::WIPOffset<RDM<'a>>) {
  fbb.finish(root, Some(RDM_IDENTIFIER));
}

#[inline]
pub fn finish_size_prefixed_RDM_buffer<'a, 'b, A: flatbuffers::Allocator + 'a>(fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>, root: flatbuffers::WIPOffset<RDM<'a>>) {
  fbb.finish_size_prefixed(root, Some(RDM_IDENTIFIER));
}