Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions grovedb-version/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,25 @@ macro_rules! check_grovedb_v0 {
}};
}

#[macro_export]
macro_rules! check_grovedb_v0_or_v1_with_cost {
($method:expr, $version:expr) => {{
const EXPECTED_VERSION_V0: u16 = 0;
const EXPECTED_VERSION_V1: u16 = 1;
if $version != EXPECTED_VERSION_V0 && $version != EXPECTED_VERSION_V1 {
return grovedb_costs::CostsExt::wrap_with_cost(
Err($crate::error::GroveVersionError::UnknownVersionMismatch {
method: $method.to_string(),
known_versions: vec![EXPECTED_VERSION_V0, EXPECTED_VERSION_V1],
received: $version,
}
.into()),
Default::default(),
);
}
}};
}

#[macro_export]
macro_rules! check_grovedb_v0_or_v1 {
($method:expr, $version:expr) => {{
Expand Down
7 changes: 4 additions & 3 deletions grovedb-version/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use crate::version::grovedb_versions::*;
use crate::version::merk_versions::*;
use crate::version::v1::GROVE_V1;
use crate::version::v2::GROVE_V2;
use crate::version::v3::GROVE_V3;
use crate::version::{GroveVersion, GROVE_VERSIONS};
use crate::{TryFromVersioned, TryIntoVersioned};

Expand Down Expand Up @@ -63,14 +64,14 @@ fn grove_version_first_returns_v1() {
}

#[test]
fn grove_version_latest_returns_v2() {
fn grove_version_latest_returns_v3() {
let latest = GroveVersion::latest();
assert_eq!(latest.protocol_version, GROVE_V2.protocol_version);
assert_eq!(latest.protocol_version, GROVE_V3.protocol_version);
}

#[test]
fn grove_versions_count() {
assert_eq!(GROVE_VERSIONS.len(), 2);
assert_eq!(GROVE_VERSIONS.len(), 3);
}

#[test]
Expand Down
5 changes: 5 additions & 0 deletions grovedb-version/src/version/grovedb_versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ pub struct GroveDBOperationsGetVersions {
pub struct GroveDBOperationsProofVersions {
pub prove_query: FeatureVersion,
pub prove_query_many: FeatureVersion,
pub prove_query_non_serialized: FeatureVersion,
pub prove_trunk_chunk: FeatureVersion,
pub prove_trunk_chunk_non_serialized: FeatureVersion,
pub prove_branch_chunk: FeatureVersion,
pub prove_branch_chunk_non_serialized: FeatureVersion,
pub verify_query_with_options: FeatureVersion,
pub verify_query_raw: FeatureVersion,
pub verify_layer_proof: FeatureVersion,
Expand Down
4 changes: 3 additions & 1 deletion grovedb-version/src/version/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ pub mod grovedb_versions;
pub mod merk_versions;
pub mod v1;
pub mod v2;
pub mod v3;

pub use versioned_feature_core::*;

use crate::version::v3::GROVE_V3;
use crate::version::{
grovedb_versions::GroveDBVersions, merk_versions::MerkVersions, v1::GROVE_V1, v2::GROVE_V2,
};
Expand All @@ -30,4 +32,4 @@ impl GroveVersion {
}
}

pub const GROVE_VERSIONS: &[GroveVersion] = &[GROVE_V1, GROVE_V2];
pub const GROVE_VERSIONS: &[GroveVersion] = &[GROVE_V1, GROVE_V2, GROVE_V3];
Comment thread
coderabbitai[bot] marked this conversation as resolved.
5 changes: 5 additions & 0 deletions grovedb-version/src/version/v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ pub const GROVE_V1: GroveVersion = GroveVersion {
proof: GroveDBOperationsProofVersions {
prove_query: 0,
prove_query_many: 0,
prove_query_non_serialized: 0,
prove_trunk_chunk: 0,
prove_trunk_chunk_non_serialized: 0,
prove_branch_chunk: 0,
prove_branch_chunk_non_serialized: 0,
verify_query_with_options: 0,
verify_query_raw: 0,
verify_layer_proof: 0,
Expand Down
5 changes: 5 additions & 0 deletions grovedb-version/src/version/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ pub const GROVE_V2: GroveVersion = GroveVersion {
proof: GroveDBOperationsProofVersions {
prove_query: 0,
prove_query_many: 0,
prove_query_non_serialized: 0,
prove_trunk_chunk: 0,
prove_trunk_chunk_non_serialized: 0,
prove_branch_chunk: 0,
prove_branch_chunk_non_serialized: 0,
verify_query_with_options: 0,
verify_query_raw: 0,
verify_layer_proof: 0,
Expand Down
214 changes: 214 additions & 0 deletions grovedb-version/src/version/v3.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
use crate::version::grovedb_versions::GroveDBAggregateSumPathQueryMethodVersions;
use crate::version::{
grovedb_versions::{
GroveDBApplyBatchVersions, GroveDBElementMethodVersions,
GroveDBOperationsAverageCaseVersions, GroveDBOperationsDeleteUpTreeVersions,
GroveDBOperationsDeleteVersions, GroveDBOperationsGetVersions,
GroveDBOperationsInsertVersions, GroveDBOperationsProofVersions,
GroveDBOperationsQueryVersions, GroveDBOperationsVersions,
GroveDBOperationsWorstCaseVersions, GroveDBPathQueryMethodVersions, GroveDBQueryLimits,
GroveDBReplicationVersions, GroveDBVersions,
},
merk_versions::{MerkAverageCaseCostsVersions, MerkVersions},
GroveVersion,
};

pub const GROVE_V3: GroveVersion = GroveVersion {
protocol_version: 2,
grovedb_versions: GroveDBVersions {
apply_batch: GroveDBApplyBatchVersions {
apply_batch_structure: 0,
apply_body: 0,
continue_partial_apply_body: 0,
apply_operations_without_batching: 0,
apply_batch: 0,
apply_partial_batch: 0,
open_batch_transactional_merk_at_path: 0,
open_batch_merk_at_path: 0,
apply_batch_with_element_flags_update: 0,
apply_partial_batch_with_element_flags_update: 0,
estimated_case_operations_for_batch: 0,
},
element: GroveDBElementMethodVersions {
delete: 0,
delete_with_sectioned_removal_bytes: 0,
delete_into_batch_operations: 0,
element_at_key_already_exists: 0,
get: 0,
get_optional: 0,
get_from_storage: 0,
get_optional_from_storage: 1,
get_with_absolute_refs: 0,
get_value_hash: 0,
get_specialized_cost: 0,
value_defined_cost: 0,
value_defined_cost_for_serialized_value: 0,
specialized_costs_for_key_value: 0,
required_item_space: 0,
insert: 0,
insert_into_batch_operations: 0,
insert_if_not_exists: 0,
insert_if_not_exists_into_batch_operations: 0,
insert_if_changed_value: 0,
insert_if_changed_value_into_batch_operations: 0,
insert_reference: 0,
insert_reference_into_batch_operations: 0,
insert_subtree: 0,
insert_subtree_into_batch_operations: 0,
get_query: 0,
get_aggregate_sum_query: 0,
get_query_values: 0,
get_query_apply_function: 0,
get_path_query: 0,
get_sized_query: 0,
get_aggregate_sum_query_apply_function: 0,
path_query_push: 0,
aggregate_sum_path_query_push: 0,
query_item: 0,
basic_push: 0,
basic_aggregate_sum_push: 0,
serialize: 0,
serialized_size: 0,
deserialize: 0,
get_with_value_hash: 0,
insert_reference_if_changed_value: 0,
aggregate_sum_query_item: 0,
},
operations: GroveDBOperationsVersions {
get: GroveDBOperationsGetVersions {
get: 0,
get_caching_optional: 0,
follow_reference: 0,
get_raw: 0,
get_raw_caching_optional: 0,
get_raw_optional: 0,
get_raw_optional_caching_optional: 0,
has_raw: 0,
check_subtree_exists_invalid_path: 0,
average_case_for_has_raw: 0,
average_case_for_has_raw_tree: 0,
average_case_for_get_raw: 0,
average_case_for_get: 0,
average_case_for_get_tree: 0,
worst_case_for_has_raw: 0,
worst_case_for_get_raw: 0,
worst_case_for_get: 0,
is_empty_tree: 0,
follow_reference_once: 0,
},
insert: GroveDBOperationsInsertVersions {
insert: 0,
insert_on_transaction: 0,
insert_without_transaction: 0,
add_element_on_transaction: 0,
add_element_without_transaction: 0,
insert_if_not_exists: 0,
insert_if_not_exists_return_existing_element: 0,
insert_if_changed_value: 0,
},
delete: GroveDBOperationsDeleteVersions {
delete: 0,
clear_subtree: 0,
delete_with_sectional_storage_function: 0,
delete_if_empty_tree: 0,
delete_if_empty_tree_with_sectional_storage_function: 0,
delete_operation_for_delete_internal: 0,
delete_internal_on_transaction: 0,
delete_internal_without_transaction: 0,
average_case_delete_operation_for_delete: 0,
worst_case_delete_operation_for_delete: 0,
},
delete_up_tree: GroveDBOperationsDeleteUpTreeVersions {
delete_up_tree_while_empty: 0,
delete_up_tree_while_empty_with_sectional_storage: 0,
delete_operations_for_delete_up_tree_while_empty: 0,
add_delete_operations_for_delete_up_tree_while_empty: 0,
average_case_delete_operations_for_delete_up_tree_while_empty: 0,
worst_case_delete_operations_for_delete_up_tree_while_empty: 0,
},
query: GroveDBOperationsQueryVersions {
query_encoded_many: 0,
query_many_raw: 0,
get_proved_path_query: 0,
query: 0,
query_item_value: 0,
query_item_value_or_sum: 0,
query_aggregate_sums: 0,
query_sums: 0,
query_raw: 0,
query_keys_optional: 0,
query_raw_keys_optional: 0,
follow_element: 0,
},
proof: GroveDBOperationsProofVersions {
prove_query: 0,
prove_query_many: 0,
prove_query_non_serialized: 1, // v1 supports MmrTree/BulkAppendTree proof generation
prove_trunk_chunk: 0,
prove_trunk_chunk_non_serialized: 0,
prove_branch_chunk: 0,
prove_branch_chunk_non_serialized: 0,
verify_query_with_options: 0,
verify_query_raw: 0,
verify_layer_proof: 0,
verify_query: 0,
verify_subset_query: 0,
verify_query_with_absence_proof: 0,
verify_subset_query_with_absence_proof: 0,
verify_query_with_chained_path_queries: 0,
verify_query_get_parent_tree_info_with_options: 0,
},
average_case: GroveDBOperationsAverageCaseVersions {
add_average_case_get_merk_at_path: 0,
average_case_merk_replace_tree: 1,
average_case_merk_insert_tree: 0,
average_case_merk_delete_tree: 0,
average_case_merk_insert_element: 0,
average_case_merk_replace_element: 0,
average_case_merk_patch_element: 0,
average_case_merk_delete_element: 0,
add_average_case_has_raw_cost: 0,
add_average_case_has_raw_tree_cost: 0,
add_average_case_get_raw_cost: 0,
add_average_case_get_raw_tree_cost: 0,
add_average_case_get_cost: 0,
},
worst_case: GroveDBOperationsWorstCaseVersions {
add_worst_case_get_merk_at_path: 0,
worst_case_merk_replace_tree: 0,
worst_case_merk_insert_tree: 0,
worst_case_merk_delete_tree: 0,
worst_case_merk_insert_element: 0,
worst_case_merk_replace_element: 0,
worst_case_merk_patch_element: 0,
worst_case_merk_delete_element: 0,
add_worst_case_has_raw_cost: 0,
add_worst_case_get_raw_tree_cost: 0,
add_worst_case_get_raw_cost: 0,
add_worst_case_get_cost: 0,
},
},
aggregate_sum_path_query_methods: GroveDBAggregateSumPathQueryMethodVersions { merge: 0 },
path_query_methods: GroveDBPathQueryMethodVersions {
terminal_keys: 0,
merge: 0,
query_items_at_path: 0,
should_add_parent_tree_at_path: 0,
},
replication: GroveDBReplicationVersions {
get_subtrees_metadata: 0,
fetch_chunk: 0,
start_snapshot_syncing: 0,
apply_chunk: 0,
},
query_limits: GroveDBQueryLimits {
max_aggregate_sum_query_elements_scanned: 1024,
},
},
merk_versions: MerkVersions {
average_case_costs: MerkAverageCaseCostsVersions {
add_average_case_merk_propagate: 1,
sum_tree_estimated_size: 1,
},
},
};
Loading
Loading