2022-11-07 23:29:25 +03:00
|
|
|
//! Copyright (C) 2022, Dmitriy Pleshevskiy <dmitriy@pleshevski.ru>
|
2022-08-01 00:10:06 +03:00
|
|
|
//!
|
|
|
|
//! vnetod is free software: you can redistribute it and/or modify
|
|
|
|
//! it under the terms of the GNU General Public License as published by
|
|
|
|
//! the Free Software Foundation, either version 3 of the License, or
|
|
|
|
//! (at your option) any later version.
|
|
|
|
//!
|
|
|
|
//! vnetod is distributed in the hope that it will be useful,
|
|
|
|
//! but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
//! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
//! GNU General Public License for more details.
|
|
|
|
//!
|
|
|
|
//! You should have received a copy of the GNU General Public License
|
|
|
|
//! along with vnetod. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
//!
|
|
|
|
|
2022-07-30 17:31:05 +03:00
|
|
|
pub mod switch;
|
|
|
|
|
2022-07-31 00:02:43 +03:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2022-07-30 17:31:05 +03:00
|
|
|
struct Section {
|
|
|
|
namespace: Option<String>,
|
|
|
|
name: String,
|
|
|
|
}
|
|
|
|
|
2022-07-31 00:02:43 +03:00
|
|
|
impl Section {
|
|
|
|
fn new(name: &str) -> Self {
|
2022-07-30 17:31:05 +03:00
|
|
|
Self {
|
2022-07-31 00:02:43 +03:00
|
|
|
name: name.to_string(),
|
|
|
|
namespace: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with_namespace(namespace: &str, name: &str) -> Self {
|
|
|
|
Self {
|
|
|
|
name: name.to_string(),
|
|
|
|
namespace: Some(namespace.to_string()),
|
2022-07-30 17:31:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-31 00:02:43 +03:00
|
|
|
fn parse(s: &str) -> Self {
|
|
|
|
let s = s.trim();
|
|
|
|
s.split_once(':')
|
|
|
|
.map_or_else(|| Self::new(s), |(ns, name)| Self::with_namespace(ns, name))
|
2022-07-30 17:31:05 +03:00
|
|
|
}
|
|
|
|
}
|
2022-08-02 11:10:03 +03:00
|
|
|
|
2022-11-08 00:07:21 +03:00
|
|
|
pub(crate) struct SectionInfo {
|
2022-08-02 11:10:03 +03:00
|
|
|
enable_variable: bool,
|
|
|
|
disable_variable: bool,
|
|
|
|
}
|