65 lines
1.9 KiB
Rust
65 lines
1.9 KiB
Rust
//
|
|
// imag - the personal information management suite for the commandline
|
|
// Copyright (C) 2015-2019 Matthias Beyer <mail@beyermatthias.de> and contributors
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; version
|
|
// 2.1 of the License.
|
|
//
|
|
// This library 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
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
//
|
|
|
|
use toml::Value;
|
|
|
|
use libimagstore::store::Entry;
|
|
use libimagerror::errors::ErrorMsg as EM;
|
|
|
|
use toml_query::read::TomlValueReadTypeExt;
|
|
use toml_query::set::TomlValueSetExt;
|
|
|
|
use failure::Fallible as Result;
|
|
use failure::Error;
|
|
use failure::ResultExt;
|
|
|
|
pub trait Note {
|
|
fn set_name(&mut self, n: String) -> Result<()>;
|
|
fn get_name(&self) -> Result<String>;
|
|
fn set_text(&mut self, n: String);
|
|
fn get_text(&self) -> &String;
|
|
}
|
|
|
|
impl Note for Entry {
|
|
|
|
fn set_name(&mut self, n: String) -> Result<()> {
|
|
self.get_header_mut()
|
|
.set("note.name", Value::String(n))
|
|
.context(format_err!("Cannot set 'note.name' in header of {}", self.get_location()))
|
|
.map_err(Error::from)
|
|
.map(|_| ())
|
|
}
|
|
|
|
fn get_name(&self) -> Result<String> {
|
|
self.get_header()
|
|
.read_string("note.name")?
|
|
.ok_or_else(|| Error::from(EM::EntryHeaderTypeError))
|
|
}
|
|
|
|
fn set_text(&mut self, n: String) {
|
|
*self.get_content_mut() = n
|
|
}
|
|
|
|
fn get_text(&self) -> &String {
|
|
self.get_content()
|
|
}
|
|
|
|
}
|
|
|
|
|