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
//! SigMF format.
//!
//! This module contains a minimal implementation of [SigMF](https://github.com/gnuradio/SigMF/).
use chrono::prelude::*;
use serde_json::json;
const SIGMF_VERSION: &str = "1.0.0";
const SIGMF_RECORDER: &str = concat!("Maia SDR v", env!("CARGO_PKG_VERSION"));
/// SigMF metadata.
///
/// This structure can be used to create and edit SigMF metadata, and convert it
/// to JSON format for its storage in a `.sigmf-meta` file.
///
/// # Examples
/// ```
/// use maia_httpd::sigmf::{Datatype, Field, Metadata, SampleFormat};
/// let datatype = Datatype { field: Field::Complex, format: SampleFormat::I8 };
/// let sample_rate = 1e6; // 1 Msps
/// let frequency = 100e6; // 100 MHz
/// let metadata = Metadata::new(datatype, sample_rate, frequency);
/// println!("{}", metadata.to_json());
/// ```
#[derive(Debug, Clone, PartialEq)]
pub struct Metadata {
datatype: Datatype,
sample_rate: f64,
description: String,
author: String,
frequency: f64,
datetime: DateTime<Utc>,
}
/// SigMF datatype.
///
/// A datatype is formed by a field, which can be either real or complex, and a
/// sample format.
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub struct Datatype {
/// Datatype field.
///
/// This indicates if the signal is complex (IQ) or real.
pub field: Field,
/// Datatype sample format.
///
/// The sample format indicates the width and format (floating point or
/// integer) of the samples.
pub format: SampleFormat,
}
impl std::fmt::Display for Datatype {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
let field = match self.field {
Field::Real => "r",
Field::Complex => "c",
};
let (format, endianness) = match self.format {
SampleFormat::F32(e) => ("f32", Some(e)),
SampleFormat::F64(e) => ("f64", Some(e)),
SampleFormat::I32(e) => ("i32", Some(e)),
SampleFormat::I16(e) => ("i16", Some(e)),
SampleFormat::U32(e) => ("u32", Some(e)),
SampleFormat::U16(e) => ("u16", Some(e)),
SampleFormat::I8 => ("i8", None),
SampleFormat::U8 => ("u8", None),
};
let endianness = match endianness {
Some(e) => match e {
Endianness::Le => "_le",
Endianness::Be => "_be",
},
None => "",
};
write!(f, "{field}{format}{endianness}")
}
}
/// Datatype field.
///
/// A datatype [field](https://en.wikipedia.org/wiki/Field_(mathematics)) is used
/// to indicate if the signal is complex (IQ) or real.
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub enum Field {
/// Real field.
Real,
/// Complex field.
Complex,
}
/// Sample format.
///
/// The sample format indicates the width and type (floating point or integer)
/// of the numbers used to represent the signal samples.
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub enum SampleFormat {
/// 32-bit IEEE 754 floating point.
F32(Endianness),
/// 64-bit IEEE 754 floating point.
F64(Endianness),
/// 32-bit signed integer.
I32(Endianness),
/// 16-bit signed integer.
I16(Endianness),
/// 32-bit unsigned integer.
U32(Endianness),
/// 16-bit unsigned integer.
U16(Endianness),
/// 8-bit signed integer.
I8,
/// 8-bit unsigned integer.
U8,
}
/// Endianness.
///
/// The endianness indicates the order of the bytes forming a multi-byte number
/// in memory or in a file.
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub enum Endianness {
/// Little-endian.
Le,
/// Big-endian.
Be,
}
impl From<maia_json::RecorderMode> for Datatype {
fn from(value: maia_json::RecorderMode) -> Datatype {
match value {
maia_json::RecorderMode::IQ8bit => Datatype {
field: Field::Complex,
format: SampleFormat::I8,
},
maia_json::RecorderMode::IQ12bit => Datatype {
field: Field::Complex,
format: SampleFormat::I16(Endianness::Le),
},
}
}
}
impl Metadata {
/// Creates a new SigMF metadata object.
///
/// The datatype, sample rate and frequency are mandatory parameters. The
/// datetime field is set to the current time. The description and author
/// fields are initialized to empty strings.
pub fn new(datatype: Datatype, sample_rate: f64, frequency: f64) -> Metadata {
Metadata {
datatype,
sample_rate,
description: String::new(),
author: String::new(),
frequency,
datetime: Utc::now(),
}
}
/// Gives the value of the datatype field.
pub fn datatype(&self) -> Datatype {
self.datatype
}
/// Sets the value datatype field.
pub fn set_datatype(&mut self, datatype: Datatype) {
self.datatype = datatype;
}
/// Gives the value of the sample rate field (in samples per second).
pub fn sample_rate(&self) -> f64 {
self.sample_rate
}
/// Sets the value of the sample rate field.
pub fn set_sample_rate(&mut self, sample_rate: f64) {
self.sample_rate = sample_rate;
}
/// Gives the value of the description field.
pub fn description(&self) -> &str {
&self.description
}
/// Sets the value of the description field.
pub fn set_description(&mut self, description: &str) {
self.description.replace_range(.., description);
}
/// Gives the value of the author field.
pub fn author(&self) -> &str {
&self.author
}
/// Sets the value of the author field.
pub fn set_author(&mut self, author: &str) {
self.author.replace_range(.., author);
}
/// Gives the value of the frequency field (in Hz).
pub fn frequency(&self) -> f64 {
self.frequency
}
/// Sets the value of the frequency field.
pub fn set_frequency(&mut self, frequency: f64) {
self.frequency = frequency;
}
/// Gives the value of the datetime field.
pub fn datetime(&self) -> DateTime<Utc> {
self.datetime
}
/// Sets the value of the datetime field.
pub fn set_datetime(&mut self, datetime: DateTime<Utc>) {
self.datetime = datetime;
}
/// Sets the datetime field to the current time.
pub fn set_datetime_now(&mut self) {
self.set_datetime(Utc::now());
}
/// Returns a string that represents the metadata in JSON.
///
/// The formatting of the JSON is compliant with the SigMF standard.
pub fn to_json(&self) -> String {
let json = self.to_json_value();
let mut s = serde_json::to_string_pretty(&json).unwrap();
s.push('\n'); // to_string_pretty does not include a final \n
s
}
/// Returns a JSON [`serde_json::Value`] that represents the metadata in JSON.
///
/// The formatting of the JSON is compliant with the SigMF standard.
pub fn to_json_value(&self) -> serde_json::Value {
json!({
"global": {
"core:datatype": self.datatype.to_string(),
"core:version": SIGMF_VERSION,
"core:sample_rate": self.sample_rate,
"core:description": self.description,
"core:author": self.author,
"core:recorder": SIGMF_RECORDER
},
"captures": [
{
"core:sample_start": 0,
"core:frequency": self.frequency,
"core:datetime": self.datetime.to_rfc3339_opts(SecondsFormat::Millis, true)
}
],
"annotations": []
})
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn to_json() {
let meta = Metadata {
datatype: Datatype {
field: Field::Complex,
format: SampleFormat::I16(Endianness::Le),
},
sample_rate: 30.72e6,
description: "Test SigMF dataset".to_string(),
author: "Tester".to_string(),
frequency: 2400e6,
datetime: Utc.with_ymd_and_hms(2022, 11, 1, 0, 0, 0).unwrap(),
};
let json = meta.to_json();
let expected = [
r#"{
"annotations": [],
"captures": [
{
"core:datetime": "2022-11-01T00:00:00.000Z",
"core:frequency": 2400000000.0,
"core:sample_start": 0
}
],
"global": {
"core:author": "Tester",
"core:datatype": "ci16_le",
"core:description": "Test SigMF dataset",
"core:recorder": ""#,
SIGMF_RECORDER,
r#"",
"core:sample_rate": 30720000.0,
"core:version": ""#,
SIGMF_VERSION,
r#""
}
}
"#,
]
.join("");
assert_eq!(json, expected);
}
}