crux_core/typegen.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
//! Generation of foreign language types (currently Swift, Java, TypeScript) for Crux
//!
//! In order to use this module, you'll need a separate crate from your shared library, possibly
//! called `shared_types`. This is necessary because we need to reference types from your shared library
//! during the build process (`build.rs`).
//!
//! This module is behind the feature called `typegen`, and is not compiled into the default crate.
//!
//! Ensure that you have the following line in the `Cargo.toml` of your `shared_types` library.
//!
//! ```rust,ignore
//! [build-dependencies]
//! crux_core = { version = "0.7", features = ["typegen"] }
//! ```
//!
//! * Your `shared_types` library, will have an empty `lib.rs`, since we only use it for generating foreign language type declarations.
//! * Create a `build.rs` in your `shared_types` library, that looks something like this:
//!
//! ```rust
//! # mod shared {
//! # use crux_core::Command;
//! # use crux_core::render::Render;
//! # use crux_core::macros::Effect;
//! # use serde::{Deserialize, Serialize};
//! # #[derive(Default)]
//! # pub struct App;
//! # #[derive(Serialize, Deserialize)]
//! # pub enum Event {
//! # None,
//! # SendUuid(uuid::Uuid),
//! # }
//! # #[derive(Serialize, Deserialize)]
//! # pub struct ViewModel;
//! # impl crux_core::App for App {
//! # type Event = Event;
//! # type Model = ();
//! # type ViewModel = ViewModel;
//! # type Capabilities = Capabilities;
//! # type Effect = Effect;
//! # fn update(&self, _event: Event, _model: &mut Self::Model, _caps: &Capabilities) -> Command<Effect, Event> {
//! # todo!()
//! # }
//! # fn view(&self, _model: &Self::Model) -> Self::ViewModel {
//! # todo!();
//! # }
//! # }
//! # #[derive(Effect)]
//! # pub struct Capabilities {
//! # pub render: Render<Event>,
//! # }
//! # }
//!use shared::{App, EffectFfi, Event};
//!use crux_core::{bridge::Request, typegen::TypeGen};
//!use uuid::Uuid;
//!
//!#[test]
//!fn generate_types() -> anyhow::Result<()> {
//! let mut gen = TypeGen::new();
//!
//! let sample_events = vec![Event::SendUuid(Uuid::new_v4())];
//! gen.register_type_with_samples(sample_events)?;
//!
//! gen.register_app::<App>()?;
//!
//! let temp = assert_fs::TempDir::new()?;
//! let output_root = temp.join("crux_core_typegen_test");
//!
//! gen.swift("SharedTypes", output_root.join("swift"))?;
//!
//! gen.java("com.example.counter.shared_types", output_root.join("java"))?;
//!
//! gen.typescript("shared_types", output_root.join("typescript"))?;
//!}
//! ```
//!
//! ## Custom extensions
//!
//! May you need to use customized files for one of:
//!
//! - `generated/typescript/*`,
//! - `generated/swift/(requests | Package).swift` -
//! - `generated/java/Requests.java`
//!
//! Then create the `typegen_extensions/{target}/{target-file}`
//! with the desired content next to your `build.rs` file.
//!
//! For example `typegen_extensions/swift/Package.swift`:
//!
//! ```swift
//! // swift-tools-version: 5.7.1
//! // The swift-tools-version declares the minimum version of Swift required to build this package.
//!
//! import PackageDescription
//!
//! let package = Package(
//! name: "SharedTypes",
//! products: [
//! // Products define the executables and libraries a package produces, and make them visible to other packages.
//! .library(
//! name: "SharedTypes",
//! targets: ["SharedTypes"]),
//! ],
//! dependencies: [
//! // Dependencies declare other packages that this package depends on.
//! // .package(url: /* package url */, from: "1.0.0"),
//! ],
//! targets: [
//! // Targets are the basic building blocks of a package. A target can define a module or a test suite.
//! // Targets can depend on other targets in this package, and on products in packages this package depends on.
//! .target(
//! name: "Serde",
//! dependencies: []),
//! .target(
//! name: "SharedTypes",
//! dependencies: ["Serde"]),
//! ]
//! )
//! ```
use serde::Deserialize;
use serde_generate::{java, swift, typescript, Encoding, SourceInstaller};
use serde_reflection::{Registry, Tracer, TracerConfig};
use std::{
fs::{self, File},
io::Write,
mem,
path::{Path, PathBuf},
};
use thiserror::Error;
// Expose from `serde_reflection` for `register_type_with_samples()`
use serde_reflection::Samples;
use crate::App;
pub type Result = std::result::Result<(), TypeGenError>;
static DESERIALIZATION_ERROR_HINT: &str = r#"
This might be because you attempted to pass types with custom serialization across the FFI boundary. Make sure that:
1. Types you use in Event, ViewModel and Capabilities serialize as a container, otherwise wrap them in a new type struct,
e.g. MyUuid(uuid::Uuid)
2. Sample values of such types have been provided to the type generator using TypeGen::register_samples, before any type registration."#;
#[derive(Error, Debug)]
pub enum TypeGenError {
#[error("type tracing failed: {0}")]
TypeTracing(String),
#[error("value tracing failed: {0}")]
ValueTracing(String),
#[error("type tracing failed: {0} {DESERIALIZATION_ERROR_HINT}")]
Deserialization(String),
#[error("code has been generated, too late to register types")]
LateRegistration,
#[error("type generation failed: {0}")]
Generation(String),
#[error("error writing generated types")]
Io(#[from] std::io::Error),
#[error("`pnpm` is needed for TypeScript type generation, but it could not be found in PATH.\nPlease install it from https://pnpm.io/installation")]
PnpmNotFound(#[source] std::io::Error),
}
#[derive(Debug)]
pub enum State {
Registering(Tracer, Samples),
Generating(Registry),
}
pub trait Export {
fn register_types(generator: &mut TypeGen) -> Result;
}
/// The `TypeGen` struct stores the registered types so that they can be generated for foreign languages
/// use `TypeGen::new()` to create an instance
pub struct TypeGen {
pub state: State,
}
impl Default for TypeGen {
fn default() -> Self {
TypeGen {
state: State::Registering(Tracer::new(TracerConfig::default()), Samples::new()),
}
}
}
impl TypeGen {
/// Creates an instance of the `TypeGen` struct
pub fn new() -> Self {
Default::default()
}
/// Register all the types used in app `A` to be shared with the Shell.
///
/// Do this before calling TypeGen::swift, TypeGen::java or TypeGen::typescript.
/// This method would normally be called in a build.rs file of a sister crate responsible for
/// creating "foreign language" type definitions for the FFI boundary.
/// See the section on
/// [creating the shared types crate](https://redbadger.github.io/crux/getting_started/core.html#create-the-shared-types-crate)
/// in the Crux book for more information.
pub fn register_app<A: App>(&mut self) -> Result
where
A::Capabilities: Export,
A::Event: Deserialize<'static>,
A::ViewModel: Deserialize<'static> + 'static,
{
self.register_type::<A::Event>()?;
self.register_type::<A::ViewModel>()?;
A::Capabilities::register_types(self)?;
Ok(())
}
/// Register sample values for types with custom serialization. This is necessary
/// because the type registration relies on Serde to understand the structure of the types,
/// and as part of the process runs a faux deserialization on each of them, with a best
/// guess of a default value. If that default value does not deserialize, the type registration
/// will fail.
/// You can prevent this problem by registering a valid sample value (or values),
/// which the deserialization will use instead.
pub fn register_samples<'de, T>(&mut self, sample_data: Vec<T>) -> Result
where
T: serde::Deserialize<'de> + serde::Serialize,
{
match &mut self.state {
State::Registering(tracer, samples) => {
for sample in &sample_data {
match tracer.trace_value::<T>(samples, sample) {
Ok(_) => {}
Err(e) => {
return Err(TypeGenError::ValueTracing(format!(
"{e}: {exp}",
exp = e.explanation()
)));
}
}
}
Ok(())
}
_ => Err(TypeGenError::LateRegistration),
}
}
/// For each of the types that you want to share with the Shell, call this method:
/// e.g.
/// ```rust
/// # use crux_core::typegen::TypeGen;
/// # use serde::{Serialize, Deserialize};
/// # use anyhow::Error;
/// #[derive(Serialize, Deserialize)]
/// enum MyNestedEnum { None }
/// #[derive(Serialize, Deserialize)]
/// enum MyEnum { None, Nested(MyNestedEnum) }
/// fn register() -> Result<(), Error> {
/// let mut gen = TypeGen::new();
/// gen.register_type::<MyEnum>()?;
/// gen.register_type::<MyNestedEnum>()?;
/// Ok(())
/// }
/// ```
pub fn register_type<'de, T>(&mut self) -> Result
where
T: serde::Deserialize<'de>,
{
match &mut self.state {
State::Registering(tracer, _) => match tracer.trace_simple_type::<T>() {
Ok(_) => Ok(()),
Err(e @ serde_reflection::Error::DeserializationError(_)) => Err(
TypeGenError::Deserialization(format!("{e}: {exp}", exp = e.explanation())),
),
Err(e) => Err(TypeGenError::TypeTracing(format!(
r#"{e}:
{exp}
HINT: This may be because you are trying to trace a generic type,
which is currently not supported.
The 2 common cases are:
* Capability output types. It's generally recommended to wrap them in your own type.
* Event variants which could have a `#[serde(skip)]` because they don't leave the core
"#,
exp = e.explanation()
))),
},
_ => Err(TypeGenError::LateRegistration),
}
}
/// Usually, the simple `register_type()` method can generate the types you need.
/// Sometimes, though, you need to provide samples of your type. The `Uuid` type,
/// for example, requires a sample struct to help the typegen system understand
/// what it looks like. Use this method to provide samples when you register a
/// type.
///
/// For each of the types that you want to share with the Shell, call this method,
/// providing samples of the type:
/// e.g.
/// ```rust
/// # use crux_core::typegen::TypeGen;
/// # use uuid::Uuid;
/// # use serde::{Serialize, Deserialize};
/// # use anyhow::Error;
/// # #[derive(Serialize, Deserialize, Debug)]
/// # struct MyUuid(Uuid);
/// # fn register() -> Result<(), Error> {
/// # let mut gen = TypeGen::new();
/// let sample_data = vec![MyUuid(Uuid::new_v4())];
/// gen.register_type_with_samples::<MyUuid>(sample_data)?;
/// # Ok(())
/// # }
/// ```
///
/// Note: Because of the way that enums are handled by `serde_reflection`,
/// you may need to ensure that enums provided as samples have a first variant
/// that does not use custom deserialization.
pub fn register_type_with_samples<'de, T>(&'de mut self, sample_data: Vec<T>) -> Result
where
T: serde::Deserialize<'de> + serde::Serialize,
{
match &mut self.state {
State::Registering(tracer, samples) => {
for sample in &sample_data {
match tracer.trace_value::<T>(samples, sample) {
Ok(_) => {}
Err(e @ serde_reflection::Error::DeserializationError(_)) => {
return Err(TypeGenError::ValueTracing(format!(
"{e}: {exp}",
exp = e.explanation()
)));
}
Err(e) => {
return Err(TypeGenError::ValueTracing(format!(
"{e}: {exp}",
exp = e.explanation()
)));
}
}
}
match tracer.trace_type::<T>(samples) {
Ok(_) => Ok(()),
Err(e @ serde_reflection::Error::DeserializationError(_)) => Err(
TypeGenError::Deserialization(format!("{e}: {exp}", exp = e.explanation())),
),
Err(e) => Err(TypeGenError::TypeTracing(format!(
"{e}: {exp}",
exp = e.explanation()
))),
}
}
_ => Err(TypeGenError::LateRegistration),
}
}
/// Generates types for Swift
/// e.g.
/// ```rust
/// # use crux_core::typegen::TypeGen;
/// # use std::env::temp_dir;
/// # let mut gen = TypeGen::new();
/// # let output_root = temp_dir().join("crux_core_typegen_doctest");
/// gen.swift("SharedTypes", output_root.join("swift"))?;
/// # Ok::<(), crux_core::typegen::TypeGenError>(())
/// ```
pub fn swift(&mut self, module_name: &str, path: impl AsRef<Path>) -> Result {
self.ensure_registry()?;
let path = path.as_ref().join(module_name);
fs::create_dir_all(&path)?;
let installer = swift::Installer::new(path.clone());
installer
.install_serde_runtime()
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
installer
.install_bincode_runtime()
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
let registry = match &self.state {
State::Generating(registry) => registry,
_ => panic!("registry creation failed"),
};
let config = serde_generate::CodeGeneratorConfig::new(module_name.to_string())
.with_encodings(vec![Encoding::Bincode]);
installer
.install_module(&config, registry)
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
// add bincode deserialization for Vec<Request>
let mut output = File::create(
path.join("Sources")
.join(module_name)
.join("Requests.swift"),
)?;
let requests_path = self.extensions_path("swift/requests.swift");
let requests_data = fs::read_to_string(requests_path)?;
write!(output, "{}", requests_data)?;
// wrap it all up in a swift package
let mut output = File::create(path.join("Package.swift"))?;
let package_path = self.extensions_path("swift/Package.swift");
let package_data = fs::read_to_string(package_path)?;
write!(
output,
"{}",
package_data.replace("SharedTypes", module_name)
)?;
Ok(())
}
/// Generates types for Java (for use with Kotlin)
/// e.g.
/// ```rust
/// # use crux_core::typegen::TypeGen;
/// # use std::env::temp_dir;
/// # let mut gen = TypeGen::new();
/// # let output_root = temp_dir().join("crux_core_typegen_doctest");
/// gen.java(
/// "com.redbadger.crux_core.shared_types",
/// output_root.join("java"),
/// )?;
/// # Ok::<(), crux_core::typegen::TypeGenError>(())
/// ```
pub fn java(&mut self, package_name: &str, path: impl AsRef<Path>) -> Result {
self.ensure_registry()?;
fs::create_dir_all(&path)?;
let package_path = package_name.replace('.', "/");
// remove any existing generated shared types, this ensures that we remove no longer used types
fs::remove_dir_all(path.as_ref().join(&package_path)).unwrap_or(());
let config = serde_generate::CodeGeneratorConfig::new(package_name.to_string())
.with_encodings(vec![Encoding::Bincode]);
let installer = java::Installer::new(path.as_ref().to_path_buf());
installer
.install_serde_runtime()
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
installer
.install_bincode_runtime()
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
let registry = match &self.state {
State::Generating(registry) => registry,
_ => panic!("registry creation failed"),
};
installer
.install_module(&config, registry)
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
let requests_path = self.extensions_path("java/Requests.java");
let requests_data = fs::read_to_string(requests_path)?;
let requests = format!("package {package_name};\n\n{}", requests_data);
fs::write(
path.as_ref()
.to_path_buf()
.join(package_path)
.join("Requests.java"),
requests,
)?;
Ok(())
}
/// Generates types for TypeScript
/// e.g.
/// ```rust
/// # use crux_core::typegen::TypeGen;
/// # use std::env::temp_dir;
/// # let mut gen = TypeGen::new();
/// # let output_root = temp_dir().join("crux_core_typegen_doctest");
/// gen.typescript("shared_types", output_root.join("typescript"))?;
/// # Ok::<(), crux_core::typegen::TypeGenError>(())
/// ```
pub fn typescript(&mut self, module_name: &str, path: impl AsRef<Path>) -> Result {
self.ensure_registry()?;
fs::create_dir_all(&path)?;
let output_dir = path.as_ref().to_path_buf();
let installer = typescript::Installer::new(output_dir.clone());
installer
.install_serde_runtime()
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
installer
.install_bincode_runtime()
.map_err(|e| TypeGenError::Generation(e.to_string()))?;
let extensions_dir = self.extensions_path("typescript");
copy(extensions_dir, path)?;
let registry = match &self.state {
State::Generating(registry) => registry,
_ => panic!("registry creation failed"),
};
let config = serde_generate::CodeGeneratorConfig::new(module_name.to_string())
.with_encodings(vec![Encoding::Bincode]);
let generator = serde_generate::typescript::CodeGenerator::new(&config);
let mut source = Vec::new();
generator.output(&mut source, registry)?;
// FIXME fix import paths in generated code which assume running on Deno
let out = String::from_utf8_lossy(&source)
.replace(
"import { BcsSerializer, BcsDeserializer } from '../bcs/mod.ts';",
"",
)
.replace(".ts'", "'");
let types_dir = output_dir.join("types");
fs::create_dir_all(&types_dir)?;
let mut output = File::create(types_dir.join(format!("{module_name}.ts")))?;
write!(output, "{out}")?;
// Install dependencies
std::process::Command::new("pnpm")
.current_dir(output_dir.clone())
.arg("install")
.status()
.map_err(|e| match e.kind() {
std::io::ErrorKind::NotFound => TypeGenError::PnpmNotFound(e),
_ => TypeGenError::Io(e),
})?;
// Build TS code and emit declarations
std::process::Command::new("pnpm")
.current_dir(output_dir)
.arg("exec")
.arg("tsc")
.arg("--build")
.status()
.map_err(TypeGenError::Io)?;
Ok(())
}
fn ensure_registry(&mut self) -> Result {
if let State::Registering(_, _) = self.state {
// replace the current state with a dummy tracer
let old_state = mem::replace(
&mut self.state,
State::Registering(Tracer::new(TracerConfig::default()), Samples::new()),
);
// convert tracer to registry
if let State::Registering(tracer, _) = old_state {
// replace dummy with registry
self.state = State::Generating(
tracer
.registry()
.map_err(|e| TypeGenError::Generation(e.explanation()))?,
);
}
}
Ok(())
}
fn extensions_path(&self, path: &str) -> PathBuf {
let custom = PathBuf::from("./typegen_extensions").join(path);
let default = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("typegen_extensions")
.join(path);
match custom.try_exists() {
Ok(true) => custom,
Ok(false) => default,
Err(e) => {
println!("cant check typegen extensions override: {}", e);
default
}
}
}
}
fn copy(from: impl AsRef<Path>, to: impl AsRef<Path>) -> Result {
fs::create_dir_all(to.as_ref())?;
let entries = fs::read_dir(from)?;
for entry in entries {
let entry = entry?;
let to = to.as_ref().to_path_buf().join(entry.file_name());
if entry.file_type()?.is_dir() {
copy(entry.path(), to)?;
} else {
fs::copy(entry.path(), to)?;
};
}
Ok(())
}
#[cfg(feature = "typegen")]
#[cfg(test)]
mod tests {
use crate::typegen::TypeGen;
use serde::{Deserialize, Serialize};
use uuid::Uuid;
#[derive(Serialize, Deserialize, Debug)]
struct MyUuid(Uuid);
#[test]
fn test_typegen_for_uuid_without_samples() {
let mut gen = TypeGen::new();
let result = gen.register_type::<MyUuid>();
assert!(
result.is_err(),
"typegen unexpectedly succeeded for Uuid, without samples"
)
}
#[test]
fn test_typegen_for_uuid_with_samples() {
let sample_data = vec![MyUuid(Uuid::new_v4())];
let mut gen = TypeGen::new();
let result = gen.register_type_with_samples(sample_data);
dbg!(&result);
assert!(result.is_ok(), "typegen failed for Uuid, with samples");
let sample_data = vec!["a".to_string(), "b".to_string()];
let result = gen.register_type_with_samples(sample_data);
assert!(result.is_ok(), "typegen failed with second sample data set");
}
}