spacetimedb_schema/def.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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
//! Canonicalized module definitions.
//!
//! This module contains a set of types that represent the canonical form of SpacetimeDB module definitions.
//! These types are immutable to prevent accidental introduction of errors.
//! The internal data structures of this module are not considered public API or ABI and may change
//! at any time.
//!
//! Different module ABI versions correspond to different submodules of `spacetimedb_lib::db::raw_def`.
//! All of these ABI versions can be converted to the standard form in this module via `TryFrom`.
//! We provide streams of errors in case the conversion fails, to provide as much information
//! to the user as possible about why their module is invalid.
//!
//! The `ModuleDef` type is the main type in this module. It contains all the information about a module, including its tables, reducers, typespace, and type metadata.
//!
//! After validation, a `ModuleDef` can be converted to the `*Schema` types in `crate::schema` for use in the database.
//! (Eventually, we may unify these types...)
use std::fmt::{self, Debug, Write};
use std::hash::Hash;
use crate::error::{IdentifierError, ValidationErrors};
use crate::identifier::Identifier;
use crate::schema::{Schema, TableSchema};
use crate::type_for_generate::{AlgebraicTypeUse, ProductTypeDef, TypespaceForGenerate};
use deserialize::ReducerArgsDeserializeSeed;
use hashbrown::Equivalent;
use itertools::Itertools;
use spacetimedb_data_structures::error_stream::{CollectAllErrors, CombineErrors, ErrorStream};
use spacetimedb_data_structures::map::HashMap;
use spacetimedb_lib::db::raw_def;
use spacetimedb_lib::db::raw_def::v9::{
Lifecycle, RawConstraintDataV9, RawConstraintDefV9, RawIdentifier, RawIndexAlgorithm, RawIndexDefV9,
RawModuleDefV9, RawReducerDefV9, RawScheduleDefV9, RawScopedTypeNameV9, RawSequenceDefV9, RawTableDefV9,
RawTypeDefV9, RawUniqueConstraintDataV9, TableAccess, TableType,
};
use spacetimedb_lib::{ProductType, RawModuleDef};
use spacetimedb_primitives::{ColId, ColList, ColSet, TableId};
use spacetimedb_sats::AlgebraicType;
use spacetimedb_sats::{AlgebraicTypeRef, Typespace};
pub mod deserialize;
pub mod validate;
/// A map from `Identifier`s to values of type `T`.
pub type IdentifierMap<T> = HashMap<Identifier, T>;
// We may eventually want to reorganize this module to look more
// like the system tables, with numeric IDs used for lookups
// in addition to `Identifier`s.
//
// If that path is taken, it might be possible to have this type
// entirely subsume the various `Schema` types, which would be cool.
/// A validated, canonicalized, immutable module definition.
///
/// Cannot be created directly. Instead, create/deserialize a [spacetimedb_lib::RawModuleDef] and call [ModuleDef::try_from].
///
/// ```rust
/// use spacetimedb_lib::RawModuleDef;
/// use spacetimedb_schema::def::{ModuleDef, TableDef, IndexDef, TypeDef, ModuleDefLookup, ScopedTypeName};
/// use spacetimedb_schema::identifier::Identifier;
///
/// fn read_raw_module_def_from_file() -> RawModuleDef {
/// // ...
/// # RawModuleDef::V9(Default::default())
/// }
///
/// let raw_module_def = read_raw_module_def_from_file();
/// let module_def = ModuleDef::try_from(raw_module_def).expect("valid module def");
///
/// let table_name = Identifier::new("my_table".into()).expect("valid identifier");
/// let index_name = Identifier::new("my_index".into()).expect("valid identifier");
/// let scoped_type_name = ScopedTypeName::try_new([], "MyType").expect("valid scoped type name");
///
/// let table: Option<&TableDef> = module_def.lookup(&table_name);
/// let index: Option<&IndexDef> = module_def.lookup(&index_name);
/// let type_def: Option<&TypeDef> = module_def.lookup(&scoped_type_name);
/// // etc.
/// ```
#[derive(Debug, Clone)]
#[non_exhaustive]
pub struct ModuleDef {
/// The tables of the module definition.
tables: IdentifierMap<TableDef>,
/// The reducers of the module definition.
reducers: IdentifierMap<ReducerDef>,
/// The type definitions of the module definition.
types: HashMap<ScopedTypeName, TypeDef>,
/// The typespace of the module definition.
typespace: Typespace,
/// The typespace, restructured to be useful for client codegen.
typespace_for_generate: TypespaceForGenerate,
/// The global namespace of the module:
/// tables, indexes, constraints, schedules, and sequences live in the global namespace.
/// Concretely, though, they're stored in the `TableDef` data structures.
/// This map allows looking up which `TableDef` stores the `Def` you're looking for.
stored_in_table_def: IdentifierMap<Identifier>,
/// A map from type defs to their names.
refmap: HashMap<AlgebraicTypeRef, ScopedTypeName>,
}
impl ModuleDef {
/// The tables of the module definition.
pub fn tables(&self) -> impl Iterator<Item = &TableDef> {
self.tables.values()
}
/// The indexes of the module definition.
pub fn indexes(&self) -> impl Iterator<Item = &IndexDef> {
self.tables().flat_map(|table| table.indexes.values())
}
/// The constraints of the module definition.
pub fn constraints(&self) -> impl Iterator<Item = &ConstraintDef> {
self.tables().flat_map(|table| table.constraints.values())
}
/// The sequences of the module definition.
pub fn sequences(&self) -> impl Iterator<Item = &SequenceDef> {
self.tables().flat_map(|table| table.sequences.values())
}
/// The schedules of the module definition.
pub fn schedules(&self) -> impl Iterator<Item = &ScheduleDef> {
self.tables().filter_map(|table| table.schedule.as_ref())
}
/// The reducers of the module definition.
pub fn reducers(&self) -> impl Iterator<Item = &ReducerDef> {
self.reducers.values()
}
/// The type definitions of the module definition.
pub fn types(&self) -> impl Iterator<Item = &TypeDef> {
self.types.values()
}
/// The `Typespace` used by the module.
///
/// `AlgebraicTypeRef`s in the table, reducer, and type alias declarations refer to this typespace.
///
/// The typespace must satisfy `Typespace::is_valid_for_client_code_generation`. That is, all types stored in the typespace must either:
/// 1. satisfy `AlgebraicType::is_valid_for_client_type_definition`
/// 2. and/or `AlgebraicType::is_valid_for_client_type_use`.
///
/// Types satisfying condition 1 correspond to generated classes in client code.
/// (Types satisfying condition 2 are an artifact of the module bindings, and do not affect the semantics of the module definition.)
///
/// Types satisfying condition 1 are required to have corresponding `RawTypeDefV9` declarations in the module.
pub fn typespace(&self) -> &Typespace {
&self.typespace
}
/// The typespace of the module from a different perspective, one useful for client code generation.
pub fn typespace_for_generate(&self) -> &TypespaceForGenerate {
&self.typespace_for_generate
}
/// The `TableDef` an entity in the global namespace is stored in, if any.
///
/// Generally, you will want to use the `lookup` method on the entity type instead.
pub fn stored_in_table_def(&self, name: &Identifier) -> Option<&TableDef> {
self.stored_in_table_def
.get(name)
.and_then(|table_name| self.tables.get(table_name))
}
/// Lookup a definition by its key in `self`.
pub fn lookup<T: ModuleDefLookup>(&self, key: T::Key<'_>) -> Option<&T> {
T::lookup(self, key)
}
/// Lookup a definition by its key in `self`, panicking if not found.
/// Only use this method if you are sure the key exists in the module definition.
pub fn lookup_expect<T: ModuleDefLookup>(&self, key: T::Key<'_>) -> &T {
T::lookup(self, key).expect("expected ModuleDef to contain key, but it does not")
}
/// Convenience method to look up a table, possibly by a string.
pub fn table<K: ?Sized + Hash + Equivalent<Identifier>>(&self, name: &K) -> Option<&TableDef> {
// If the string IS a valid identifier, we can just look it up.
self.tables.get(name)
}
/// Convenience method to look up a reducer, possibly by a string.
pub fn reducer<K: ?Sized + Hash + Equivalent<Identifier>>(&self, name: &K) -> Option<&ReducerDef> {
// If the string IS a valid identifier, we can just look it up.
self.reducers.get(name)
}
/// Get a `DeserializeSeed` that can pull data from a `Deserializer` and format it into a `ProductType`
/// at the parameter type of the reducer named `name`.
pub fn reducer_arg_deserialize_seed<K: ?Sized + Hash + Equivalent<Identifier>>(
&self,
name: &K,
) -> Option<ReducerArgsDeserializeSeed> {
let reducer = self.reducer(name)?;
Some(ReducerArgsDeserializeSeed(self.typespace.with_type(reducer)))
}
/// Look up the name corresponding to an `AlgebraicTypeRef`.
pub fn type_def_from_ref(&self, r: AlgebraicTypeRef) -> Option<(&ScopedTypeName, &TypeDef)> {
let name = self.refmap.get(&r)?;
let def = self
.types
.get(name)
.expect("if it was in refmap, it should be in types");
Some((name, def))
}
/// Convenience method to look up a table and convert it to a `TableSchema`.
/// All indexes, constraints, etc inside the table will have ID 0!
pub fn table_schema<K: ?Sized + Hash + Equivalent<Identifier>>(
&self,
name: &K,
table_id: TableId,
) -> Option<TableSchema> {
// If the string IS a valid identifier, we can just look it up.
let table_def = self.tables.get(name)?;
Some(TableSchema::from_module_def(self, table_def, (), table_id))
}
/// Generate indexes for the module definition.
/// We guarantee that all `unique` constraints have an index generated for them.
/// This will be removed once another enforcement mechanism is implemented.
/// This is a noop if there are already usable indexes present.
fn generate_indexes(&mut self) {
for table in self.tables.values_mut() {
for constraint in table.constraints.values() {
let ConstraintData::Unique(UniqueConstraintData { columns }) = &constraint.data;
// if we have a constraint for the index, we're fine.
if table.indexes.values().any(|index| {
let IndexDef {
algorithm: IndexAlgorithm::BTree(BTreeAlgorithm { columns: index_columns }),
..
} = index;
index_columns == &**columns
}) {
continue;
}
// This replicates the logic from `RawIndexDefV8::for_column`.
let constraint_name = &constraint
.name
.trim_start_matches(&format!("ct_{}_", table.name))
.trim_end_matches("_unique");
let mut index_name = Identifier::new(format!("idx_{}_{}_unique", table.name, constraint_name).into())
.expect("validated identifier parts");
// incredibly janky loop to avoid name collisions.
// hey, somebody could be being malicious.
while self.stored_in_table_def.contains_key(&index_name) {
index_name =
Identifier::new(format!("{}_1", index_name).into()).expect("validated identifier parts");
}
table.indexes.insert(
index_name.clone(),
IndexDef {
name: index_name.clone(),
algorithm: IndexAlgorithm::BTree(BTreeAlgorithm {
columns: columns.clone().into(),
}),
accessor_name: None, // this is a generated index.
},
);
self.stored_in_table_def.insert(index_name, table.name.clone());
}
}
}
/// Lookup a definition by its key in `self`, panicking if it is not found.
pub fn expect_lookup<T: ModuleDefLookup>(&self, key: T::Key<'_>) -> &T {
if let Some(result) = T::lookup(self, key) {
result
} else {
panic!("expected ModuleDef to contain {:?}, but it does not", key);
}
}
/// Expect that this module definition contains a definition.
pub fn expect_contains<Def: ModuleDefLookup>(&self, def: &Def) {
if let Some(my_def) = self.lookup(def.key()) {
assert_eq!(
def as *const Def, my_def as *const Def,
"expected ModuleDef to contain {:?}, but it contained {:?}",
def, my_def
);
} else {
panic!("expected ModuleDef to contain {:?}, but it does not", def.key());
}
}
}
impl TryFrom<RawModuleDef> for ModuleDef {
type Error = ValidationErrors;
fn try_from(raw: RawModuleDef) -> Result<Self, Self::Error> {
match raw {
RawModuleDef::V8BackCompat(v8_mod) => Self::try_from(v8_mod),
RawModuleDef::V9(v9_mod) => Self::try_from(v9_mod),
_ => unimplemented!(),
}
}
}
impl TryFrom<raw_def::v8::RawModuleDefV8> for ModuleDef {
type Error = ValidationErrors;
fn try_from(v8_mod: raw_def::v8::RawModuleDefV8) -> Result<Self, Self::Error> {
// it is not necessary to generate indexes for a v8 mod, since the validation
// handles index generation.
validate::v8::validate(v8_mod)
}
}
impl TryFrom<raw_def::v9::RawModuleDefV9> for ModuleDef {
type Error = ValidationErrors;
fn try_from(v9_mod: raw_def::v9::RawModuleDefV9) -> Result<Self, Self::Error> {
let mut result = validate::v9::validate(v9_mod)?;
result.generate_indexes();
Ok(result)
}
}
impl From<ModuleDef> for RawModuleDefV9 {
fn from(val: ModuleDef) -> Self {
let ModuleDef {
tables,
reducers,
types,
typespace,
stored_in_table_def: _,
typespace_for_generate: _,
refmap: _,
} = val;
RawModuleDefV9 {
tables: to_raw(tables, |table: &RawTableDefV9| &table.name),
reducers: to_raw(reducers, |reducer: &RawReducerDefV9| &reducer.name),
types: to_raw(types, |type_: &RawTypeDefV9| &type_.name),
misc_exports: vec![],
typespace,
}
}
}
/// Implemented by definitions stored in a `ModuleDef`.
/// Allows looking definitions up in a `ModuleDef`, and across
/// `ModuleDef`s during migrations.
pub trait ModuleDefLookup: Sized + Debug + 'static {
/// A reference to a definition of this type within a module def. This reference should be portable across migrations.
type Key<'a>: Debug + Copy;
/// Get a reference to this definition.
fn key(&self) -> Self::Key<'_>;
/// Look up this entity in the module def.
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self>;
}
/// A data structure representing the validated definition of a database table.
///
/// Cannot be created directly. Construct a [`ModuleDef`] by validating a [`RawModuleDef`] instead,
/// and then access the tables from there.
///
/// This struct holds information about the table, including its name, columns, indexes,
/// constraints, sequences, type, and access rights.
///
/// Validation rules:
/// - The table name must be a valid identifier.
/// - The table's columns must be sorted according to [crate::db::ordering::canonical_ordering].
/// - The table's indexes, constraints, and sequences must be sorted by their keys.
/// - The table's column types may refer only to types in the containing DatabaseDef's typespace.
/// - The table's column names must be unique.
#[derive(Debug, Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct TableDef {
/// The name of the table.
/// Unique within a module, acts as the table's identifier.
/// Must be a valid [crate::db::identifier::Identifier].
pub name: Identifier,
/// A reference to a `ProductType` containing the columns of this table.
/// This is the single source of truth for the table's columns.
/// All elements of the `ProductType` must have names.
///
/// Like all types in the module, this must have the [default element ordering](crate::db::default_element_ordering), UNLESS a custom ordering is declared via `ModuleDef.misc_exports` for this type.
pub product_type_ref: AlgebraicTypeRef,
/// The primary key of the table, if present. Must refer to a valid column.
///
/// Currently, there must be a unique constraint and an index corresponding to the primary key.
/// Eventually, we may remove the requirement for an index.
///
/// The database engine does not actually care about this, but client code generation does.
pub primary_key: Option<ColId>,
/// The columns of this table. This stores the information in
/// `product_type_ref` in a more convenient-to-access format.
pub columns: Vec<ColumnDef>,
/// The indices on the table, indexed by name.
pub indexes: IdentifierMap<IndexDef>,
/// The unique constraints on the table, indexed by name.
pub constraints: IdentifierMap<ConstraintDef>,
/// The sequences for the table, indexed by name.
pub sequences: IdentifierMap<SequenceDef>,
/// The schedule for the table, if present.
pub schedule: Option<ScheduleDef>,
/// Whether this is a system- or user-created table.
pub table_type: TableType,
/// Whether this table is public or private.
pub table_access: TableAccess,
}
impl TableDef {
/// Get a column of the `TableDef`.
pub fn get_column(&self, id: ColId) -> Option<&ColumnDef> {
self.columns.get(id.idx())
}
/// Get a column by the column's name.
pub fn get_column_by_name(&self, name: &Identifier) -> Option<&ColumnDef> {
self.columns.iter().find(|c| &c.name == name)
}
}
impl From<TableDef> for RawTableDefV9 {
fn from(val: TableDef) -> Self {
let TableDef {
name,
product_type_ref,
primary_key,
columns: _, // will be reconstructed from the product type.
indexes,
constraints,
sequences,
schedule,
table_type,
table_access,
} = val;
RawTableDefV9 {
name: name.into(),
product_type_ref,
primary_key,
indexes: to_raw(indexes, |index: &RawIndexDefV9| &index.name),
constraints: to_raw(constraints, |constraint: &RawConstraintDefV9| &constraint.name),
sequences: to_raw(sequences, |sequence: &RawSequenceDefV9| &sequence.name),
schedule: schedule.map(Into::into),
table_type,
table_access,
}
}
}
/// A sequence definition for a database table column.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct SequenceDef {
/// The name of the sequence. Must be unique within the containing `ModuleDef`.
pub name: Identifier,
/// The position of the column associated with this sequence.
/// This refers to a column in the same `RawTableDef` that contains this `RawSequenceDef`.
/// The column must have integral type.
/// This must be the unique `RawSequenceDef` for this column.
pub column: ColId,
/// The value to start assigning to this column.
/// Will be incremented by 1 for each new row.
/// If not present, an arbitrary start point may be selected.
pub start: Option<i128>,
/// The minimum allowed value in this column.
/// If not present, no minimum.
pub min_value: Option<i128>,
/// The maximum allowed value in this column.
/// If not present, no maximum.
pub max_value: Option<i128>,
/// The increment to use when updating the sequence.
pub increment: i128,
}
impl From<SequenceDef> for RawSequenceDefV9 {
fn from(val: SequenceDef) -> Self {
RawSequenceDefV9 {
name: val.name.into(),
column: val.column,
start: val.start,
min_value: val.min_value,
max_value: val.max_value,
increment: val.increment,
}
}
}
/// A struct representing the validated definition of a database index.
///
/// Cannot be created directly. Construct a [`ModuleDef`] by validating a [`RawModuleDef`] instead,
/// and then access the index from there.
#[derive(Debug, Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct IndexDef {
/// The name of the index. Must be unique within the containing `ModuleDef`.
pub name: Identifier,
/// Accessor name for the index used in client codegen.
///
/// This is set the user and should not be assumed to follow
/// any particular format.
///
/// May be set to `None` if this is an auto-generated index for which the user
/// has not supplied a name. In this case, no client code generation for this index
/// will be performed.
///
/// This name is not visible in the system tables, it is only used for client codegen.
pub accessor_name: Option<Identifier>,
/// The algorithm parameters for the index.
pub algorithm: IndexAlgorithm,
}
impl IndexDef {
/// Whether this index was generated by the system.
pub fn generated(&self) -> bool {
self.accessor_name.is_none()
}
}
impl From<IndexDef> for RawIndexDefV9 {
fn from(val: IndexDef) -> Self {
RawIndexDefV9 {
name: val.name.into(),
algorithm: match val.algorithm {
IndexAlgorithm::BTree(BTreeAlgorithm { columns }) => RawIndexAlgorithm::BTree { columns },
},
accessor_name: val.accessor_name.map(Into::into),
}
}
}
/// Data specifying a supported index algorithm.
#[non_exhaustive]
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum IndexAlgorithm {
/// Implemented using a rust `std::collections::BTreeMap`.
BTree(BTreeAlgorithm),
}
impl IndexAlgorithm {
/// Get the columns of the index.
pub fn columns(&self) -> &ColList {
match self {
IndexAlgorithm::BTree(btree) => &btree.columns,
}
}
}
impl From<IndexAlgorithm> for RawIndexAlgorithm {
fn from(val: IndexAlgorithm) -> Self {
match val {
IndexAlgorithm::BTree(BTreeAlgorithm { columns }) => RawIndexAlgorithm::BTree { columns },
}
}
}
/// Data specifying a BTree index.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct BTreeAlgorithm {
/// The columns to index.
pub columns: ColList,
}
impl From<BTreeAlgorithm> for IndexAlgorithm {
fn from(val: BTreeAlgorithm) -> Self {
IndexAlgorithm::BTree(val)
}
}
/// A struct representing the validated definition of a database column.
///
/// Cannot be created directly. Construct a [`ModuleDef`] by validating a [`RawModuleDef`] instead,
/// and then access the column from there.
#[derive(Debug, Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct ColumnDef {
/// The name of the column.
/// Unique within the containing `TableDef`, but
/// NOT within the containing `ModuleDef`.
pub name: Identifier,
/// The ID of this column.
pub col_id: ColId,
/// The type of this column. May refer to the containing `ModuleDef`'s `Typespace`.
/// Must satisfy `AlgebraicType::is_valid_for_client_type_use`.
///
/// Will always correspond to the corresponding element of this table's
/// `product_type_ref`, that is, the element at index `col_id.idx()`
/// with name `Some(name.as_str())`.
pub ty: AlgebraicType,
/// The type of the column, formatted for client code generation.
pub ty_for_generate: AlgebraicTypeUse,
/// The table this `ColumnDef` is stored in.
pub table_name: Identifier,
}
/// A constraint definition attached to a table.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct ConstraintDef {
/// The name of the constraint. Unique within the containing `ModuleDef`.
pub name: Identifier,
/// The data for the constraint.
pub data: ConstraintData,
}
impl From<ConstraintDef> for RawConstraintDefV9 {
fn from(val: ConstraintDef) -> Self {
RawConstraintDefV9 {
name: val.name.into(),
data: val.data.into(),
}
}
}
/// Data for a constraint attached to a table.
#[derive(Debug, Clone, Eq, PartialEq)]
#[non_exhaustive]
pub enum ConstraintData {
Unique(UniqueConstraintData),
}
impl ConstraintData {
/// If this is a unique constraint, returns the columns that must be unique.
/// Otherwise, returns `None`.
pub fn unique_columns(&self) -> Option<&ColSet> {
match &self {
ConstraintData::Unique(UniqueConstraintData { columns }) => Some(columns),
}
}
}
impl From<ConstraintData> for RawConstraintDataV9 {
fn from(val: ConstraintData) -> Self {
match val {
ConstraintData::Unique(unique) => RawConstraintDataV9::Unique(unique.into()),
}
}
}
/// Requires that the projection of the table onto these columns is an bijection.
///
/// That is, there must be a one-to-one relationship between a row and the `columns` of that row.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct UniqueConstraintData {
/// The columns on the containing `TableDef`
pub columns: ColSet,
}
impl From<UniqueConstraintData> for RawUniqueConstraintDataV9 {
fn from(val: UniqueConstraintData) -> Self {
RawUniqueConstraintDataV9 {
columns: val.columns.into(),
}
}
}
impl From<UniqueConstraintData> for ConstraintData {
fn from(val: UniqueConstraintData) -> Self {
ConstraintData::Unique(val)
}
}
/// Marks a table as a timer table for a scheduled reducer.
#[derive(Debug, Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct ScheduleDef {
/// The name of the schedule. Must be unique within the containing `ModuleDef`.
pub name: Identifier,
/// The name of the column that stores the desired invocation time.
///
/// Must be named `scheduled_at` and be of type `ScheduleAt`.
pub at_column: ColId,
/// The name of the column that stores the invocation ID.
///
/// Must be named `scheduled_id` and be of type `u64`.
pub id_column: ColId,
/// The name of the reducer to call. Not yet an `Identifier` because
/// reducer names are not currently validated.
pub reducer_name: Identifier,
}
impl From<ScheduleDef> for RawScheduleDefV9 {
fn from(val: ScheduleDef) -> Self {
RawScheduleDefV9 {
name: val.name.into(),
reducer_name: val.reducer_name.into(),
}
}
}
/// A type exported by the module.
#[derive(Debug, Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct TypeDef {
/// The (scoped) name of the type.
pub name: ScopedTypeName,
/// The type to which the alias refers.
/// Look in `ModuleDef.typespace` for the actual type,
/// or in `ModuleDef.typespace_for_generate` for the client codegen version.
pub ty: AlgebraicTypeRef,
/// Whether this type has a custom ordering.
pub custom_ordering: bool,
}
impl From<TypeDef> for RawTypeDefV9 {
fn from(val: TypeDef) -> Self {
RawTypeDefV9 {
name: val.name.into(),
ty: val.ty,
custom_ordering: val.custom_ordering,
}
}
}
/// A scoped type name, in the form `scope0::scope1::...::scopeN::name`.
///
/// These are the names that will be used *in client code generation*, NOT the names used for types
/// in the module source code.
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ScopedTypeName {
/// The scope for this type.
///
/// Empty unless a sats `name` attribute is used, e.g.
/// `#[sats(name = "namespace.name")]` in Rust.
scope: Box<[Identifier]>,
/// The name of the type.
///
/// Eventually, we may add more information to this, such as generic arguments.
name: Identifier,
}
impl ScopedTypeName {
/// Create a new `ScopedTypeName` from a scope and a name.
pub fn new(scope: Box<[Identifier]>, name: Identifier) -> Self {
ScopedTypeName { scope, name }
}
/// Try to create a new `ScopedTypeName` from a scope and a name.
/// Errors if the scope or name are invalid.
pub fn try_new(
scope: impl IntoIterator<Item = RawIdentifier>,
name: impl Into<RawIdentifier>,
) -> Result<Self, ErrorStream<IdentifierError>> {
let scope = scope
.into_iter()
.map(|chunk| Identifier::new(chunk).map_err(ErrorStream::from))
.collect_all_errors();
let name = Identifier::new(name.into()).map_err(ErrorStream::from);
let (scope, name) = (scope, name).combine_errors()?;
Ok(ScopedTypeName { scope, name })
}
/// Create a new `ScopedTypeName` with an empty scope.
pub fn from_name(name: Identifier) -> Self {
ScopedTypeName {
scope: Box::new([]),
name,
}
}
/// Retrieve the name of this type.
pub fn name(&self) -> &Identifier {
&self.name
}
/// Retrieve the name of this type, if the scope is empty.
pub fn as_identifier(&self) -> Option<&Identifier> {
self.scope.is_empty().then_some(&self.name)
}
/// Iterate over the segments of this name.
pub fn name_segments(&self) -> impl Iterator<Item = &Identifier> {
self.scope.iter().chain(std::iter::once(&self.name))
}
}
impl fmt::Debug for ScopedTypeName {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// we can wrap this in a pair of double quotes, since we know
// none of its elements contain quotes.
f.write_char('"')?;
for scope in &*self.scope {
write!(f, "{}::", scope)?;
}
write!(f, "{}\"", self.name)
}
}
impl fmt::Display for ScopedTypeName {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for scope in &*self.scope {
write!(f, "{}::", scope)?;
}
fmt::Display::fmt(&self.name, f)
}
}
impl TryFrom<RawScopedTypeNameV9> for ScopedTypeName {
type Error = ErrorStream<IdentifierError>;
fn try_from(value: RawScopedTypeNameV9) -> Result<Self, Self::Error> {
Self::try_new(value.scope.into_vec(), value.name)
}
}
impl From<ScopedTypeName> for RawScopedTypeNameV9 {
fn from(val: ScopedTypeName) -> Self {
RawScopedTypeNameV9 {
scope: val.scope.into_vec().into_iter().map_into().collect(),
name: val.name.into(),
}
}
}
/// A reducer exported by the module.
#[derive(Debug, Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct ReducerDef {
/// The name of the reducer. This must be unique within the module.
pub name: Identifier,
/// The parameters of the reducer.
///
/// This `ProductType` need not be registered in the module's `Typespace`.
pub params: ProductType,
/// The parameters of the reducer, formatted for client codegen.
///
/// This `ProductType` need not be registered in the module's `TypespaceForGenerate`.
pub params_for_generate: ProductTypeDef,
/// The special role of this reducer in the module lifecycle, if any.
pub lifecycle: Option<Lifecycle>,
}
impl From<ReducerDef> for RawReducerDefV9 {
fn from(val: ReducerDef) -> Self {
RawReducerDefV9 {
name: val.name.into(),
params: val.params,
lifecycle: val.lifecycle,
}
}
}
impl ModuleDefLookup for TableDef {
type Key<'a> = &'a Identifier;
fn key(&self) -> Self::Key<'_> {
&self.name
}
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self> {
module_def.tables.get(key)
}
}
impl ModuleDefLookup for SequenceDef {
type Key<'a> = &'a Identifier;
fn key(&self) -> Self::Key<'_> {
&self.name
}
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self> {
module_def.stored_in_table_def(key)?.sequences.get(key)
}
}
impl ModuleDefLookup for IndexDef {
type Key<'a> = &'a Identifier;
fn key(&self) -> Self::Key<'_> {
&self.name
}
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self> {
module_def.stored_in_table_def(key)?.indexes.get(key)
}
}
impl ModuleDefLookup for ColumnDef {
// (table_name, column_name).
// We don't use `ColId` here because we want this to be portable
// across migrations.
type Key<'a> = (&'a Identifier, &'a Identifier);
fn key(&self) -> Self::Key<'_> {
(&self.table_name, &self.name)
}
fn lookup<'a>(module_def: &'a ModuleDef, (table_name, name): Self::Key<'_>) -> Option<&'a Self> {
module_def
.tables
.get(table_name)
.and_then(|table| table.get_column_by_name(name))
}
}
impl ModuleDefLookup for ConstraintDef {
type Key<'a> = &'a Identifier;
fn key(&self) -> Self::Key<'_> {
&self.name
}
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self> {
module_def.stored_in_table_def(key)?.constraints.get(key)
}
}
impl ModuleDefLookup for ScheduleDef {
type Key<'a> = &'a Identifier;
fn key(&self) -> Self::Key<'_> {
&self.name
}
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self> {
let schedule = module_def.stored_in_table_def(key)?.schedule.as_ref()?;
if &schedule.name == key {
Some(schedule)
} else {
None
}
}
}
impl ModuleDefLookup for TypeDef {
type Key<'a> = &'a ScopedTypeName;
fn key(&self) -> Self::Key<'_> {
&self.name
}
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self> {
module_def.types.get(key)
}
}
impl ModuleDefLookup for ReducerDef {
type Key<'a> = &'a Identifier;
fn key(&self) -> Self::Key<'_> {
&self.name
}
fn lookup<'a>(module_def: &'a ModuleDef, key: Self::Key<'_>) -> Option<&'a Self> {
module_def.reducers.get(key)
}
}
fn to_raw<Def, RawDef, Name, RawName>(data: HashMap<Name, Def>, f: impl Fn(&RawDef) -> &RawName) -> Vec<RawDef>
where
Def: ModuleDefLookup + Into<RawDef>,
RawName: Eq + Ord + 'static,
{
let mut result: Vec<RawDef> = data.into_iter().map(|(_, def)| def.into()).collect();
result.sort_by(|a, b| f(a).cmp(f(b)));
result
}