blob: 419dbd1c11d05f43cda574ceedb0b25b30790009 [file] [log] [blame]
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/// Configuration for netsim
use std::sync::{Once, RwLock};
static SET_DEV_CALLED: Once = Once::new();
static SET_PCAP_CALLED: Once = Once::new();
static CONFIG: RwLock<Config> = RwLock::new(Config::new());
struct Config {
pub dev: Option<bool>,
pub pcap: Option<bool>,
}
impl Config {
pub const fn new() -> Self {
Self { dev: None, pcap: None }
}
}
/// Get the flag of dev
pub fn get_dev() -> bool {
let config = CONFIG.read().unwrap();
config.dev.unwrap_or(false)
}
/// Set the flag of dev
pub fn set_dev(flag: bool) {
SET_DEV_CALLED.call_once(|| {
let mut config = CONFIG.write().unwrap();
config.dev = Some(flag);
});
}
/// Get the flag of pcap
pub fn get_pcap() -> bool {
let config = CONFIG.read().unwrap();
config.pcap.unwrap_or(false)
}
/// Set the flag of pcap
pub fn set_pcap(flag: bool) {
SET_PCAP_CALLED.call_once(|| {
let mut config = CONFIG.write().unwrap();
config.pcap = Some(flag);
});
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_dev() {
// Check if default dev boolean is false
assert!(!get_dev());
// Check if set_dev changes the flag to true
set_dev(true);
assert!(get_dev());
// Check if set_dev can only be called once
set_dev(false);
assert!(get_dev());
}
#[test]
fn test_pcap() {
// Check if default pcap boolean is false
assert!(!get_pcap());
// Check if set_pcap changes the flag to true
set_pcap(true);
assert!(get_pcap());
// Check if set_pcap can only be called once
set_pcap(false);
assert!(get_pcap());
}
}