darkfi_sdk/wasm/db.rs
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
/* This file is part of DarkFi (https://dark.fi)
*
* Copyright (C) 2020-2024 Dyne.org foundation
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use darkfi_serial::Encodable;
use crate::{
crypto::ContractId,
error::{ContractError, GenericResult},
wasm,
};
pub type DbHandle = u32;
/// Create a new database instance for the given contract.
/// This should be called in the `init_contract()` section to create any databases
/// that the contract might need or use.
///
/// Returns a `DbHandle` which provides methods for reading and writing.
pub fn db_init(contract_id: ContractId, db_name: &str) -> GenericResult<DbHandle> {
unsafe {
let mut len = 0;
let mut buf = vec![];
len += contract_id.encode(&mut buf)?;
len += db_name.to_string().encode(&mut buf)?;
let ret = db_init_(buf.as_ptr(), len as u32);
if ret < 0 {
return Err(ContractError::from(ret))
}
Ok(ret as u32)
}
}
/// Everyone can call this. Assumes that the database already went through `db_init()`.
pub fn db_lookup(contract_id: ContractId, db_name: &str) -> GenericResult<DbHandle> {
unsafe {
let mut len = 0;
let mut buf = vec![];
len += contract_id.encode(&mut buf)?;
len += db_name.to_string().encode(&mut buf)?;
let ret = db_lookup_(buf.as_ptr(), len as u32);
if ret < 0 {
return Err(ContractError::from(ret))
}
Ok(ret as u32)
}
}
/// Everyone can call this. Will read a key from the key-value store.
///
/// ```
/// value = db_get(db_handle, key);
/// ```
pub fn db_get(db_handle: DbHandle, key: &[u8]) -> GenericResult<Option<Vec<u8>>> {
let mut len = 0;
let mut buf = vec![];
len += db_handle.encode(&mut buf)?;
len += key.to_vec().encode(&mut buf)?;
let ret = unsafe { db_get_(buf.as_ptr(), len as u32) };
wasm::util::parse_ret(ret)
}
/// Everyone can call this. Checks if a key is contained in the key-value store.
///
/// ```
/// if db_contains_key(db_handle, key) {
/// println!("true");
/// }
/// ```
pub fn db_contains_key(db_handle: DbHandle, key: &[u8]) -> GenericResult<bool> {
let mut len = 0;
let mut buf = vec![];
len += db_handle.encode(&mut buf)?;
len += key.to_vec().encode(&mut buf)?;
let ret = unsafe { db_contains_key_(buf.as_ptr(), len as u32) };
if ret < 0 {
return Err(ContractError::from(ret))
}
match ret {
0 => Ok(false),
1 => Ok(true),
_ => unreachable!(),
}
}
/// Only update() can call this. Set a value within the transaction.
///
/// ```
/// db_set(tx_handle, key, value);
/// ```
pub fn db_set(db_handle: DbHandle, key: &[u8], value: &[u8]) -> GenericResult<()> {
// Check entry for tx_handle is not None
unsafe {
let mut len = 0;
let mut buf = vec![];
len += db_handle.encode(&mut buf)?;
len += key.to_vec().encode(&mut buf)?;
len += value.to_vec().encode(&mut buf)?;
let ret = db_set_(buf.as_ptr(), len as u32);
if ret != wasm::entrypoint::SUCCESS {
return Err(ContractError::from(ret))
}
Ok(())
}
}
/// Only update() can call this. Removes a key from the db.
///
/// ```
/// db_del(tx_handle, key);
/// ```
pub fn db_del(db_handle: DbHandle, key: &[u8]) -> GenericResult<()> {
// Check entry for tx_handle is not None
unsafe {
let mut len = 0;
let mut buf = vec![];
len += db_handle.encode(&mut buf)?;
len += key.to_vec().encode(&mut buf)?;
let ret = db_del_(buf.as_ptr(), len as u32);
if ret != wasm::entrypoint::SUCCESS {
return Err(ContractError::from(ret))
}
Ok(())
}
}
/// Only deploy() can call this.
pub fn zkas_db_set(bincode: &[u8]) -> GenericResult<()> {
unsafe {
let mut len = 0;
let mut buf = vec![];
len += bincode.to_vec().encode(&mut buf)?;
let ret = zkas_db_set_(buf.as_ptr(), len as u32);
if ret != wasm::entrypoint::SUCCESS {
return Err(ContractError::from(ret))
}
Ok(())
}
}
extern "C" {
fn db_init_(ptr: *const u8, len: u32) -> i64;
fn db_lookup_(ptr: *const u8, len: u32) -> i64;
fn db_get_(ptr: *const u8, len: u32) -> i64;
fn db_contains_key_(ptr: *const u8, len: u32) -> i64;
fn db_set_(ptr: *const u8, len: u32) -> i64;
fn db_del_(ptr: *const u8, len: u32) -> i64;
fn zkas_db_set_(ptr: *const u8, len: u32) -> i64;
}