#[cfg(test)]
mod tests;
use self::error::Error;
use jsonrpsee::core::{async_trait, Error as JsonRpseeError, RpcResult};
use parking_lot::RwLock;
pub use sc_rpc_api::offchain::*;
use sc_rpc_api::DenyUnsafe;
use sp_core::{
	offchain::{OffchainStorage, StorageKind},
	Bytes,
};
use std::sync::Arc;
#[derive(Debug)]
pub struct Offchain<T: OffchainStorage> {
	storage: Arc<RwLock<T>>,
	deny_unsafe: DenyUnsafe,
}
impl<T: OffchainStorage> Offchain<T> {
	pub fn new(storage: T, deny_unsafe: DenyUnsafe) -> Self {
		Offchain { storage: Arc::new(RwLock::new(storage)), deny_unsafe }
	}
}
#[async_trait]
impl<T: OffchainStorage + 'static> OffchainApiServer for Offchain<T> {
	fn set_local_storage(&self, kind: StorageKind, key: Bytes, value: Bytes) -> RpcResult<()> {
		self.deny_unsafe.check_if_safe()?;
		let prefix = match kind {
			StorageKind::PERSISTENT => sp_offchain::STORAGE_PREFIX,
			StorageKind::LOCAL => return Err(JsonRpseeError::from(Error::UnavailableStorageKind)),
		};
		self.storage.write().set(prefix, &key, &value);
		Ok(())
	}
	fn get_local_storage(&self, kind: StorageKind, key: Bytes) -> RpcResult<Option<Bytes>> {
		self.deny_unsafe.check_if_safe()?;
		let prefix = match kind {
			StorageKind::PERSISTENT => sp_offchain::STORAGE_PREFIX,
			StorageKind::LOCAL => return Err(JsonRpseeError::from(Error::UnavailableStorageKind)),
		};
		Ok(self.storage.read().get(prefix, &key).map(Into::into))
	}
}