tauri_specta/lib.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
//! Tauri Specta will generate a [Typescript](https://www.typescriptlang.org) or [JSDoc](https://jsdoc.app) file (powered by [Specta](https://docs.rs/specta)) to provide a typesafe interface to your Tauri backend.
//!
//! ## Installation
//!
//! <section class="warning">
//!
//! Tauri Specta v2 is still in beta, and requires using [Tauri v2](https://tauri.app) and [Specta v2](https://github.com/oscartbeaumont/specta) lands as stable.
//!
//! It is really important you use `=` in your versions to ensure your project will not break after future updates!
//!
//! </section>
//!
//! To get started run the following commands to add the required dependencies to your `Cargo.toml`:
//!
//! ```sh
//! # Always required
//! cargo add tauri@2.0 specta@=2.0.0-rc.21
//!
//! # Typescript
//! cargo add specta-typescript@0.0.9
//! cargo add tauri-specta@=2.0.0-rc.21 --features derive,typescript
//!
//! # JSDoc
//! cargo add specta-jsdoc@0.0.9
//! cargo add tauri-specta@=2.0.0-rc.21 --features derive,javascript
//! ```
//!
//! ## Features
//!
//! There are the following optional features which can be enabled:
//!
//! - `derive` - Enables the `Event` derive macro. This is only required if your using events.
//! - `javascript` - Enables the JSDoc exporter.
//! - `typescript` - Enables the Typescript exporter.
//!
//! ## Setup
//!
//! The follow is a minimal example of how to setup Tauri Specta with Typescript.
//!
//! ```rust,no_run
//! #![cfg_attr(
//! all(not(debug_assertions), target_os = "windows"),
//! windows_subsystem = "windows"
//! )]
//!
//! use serde::{Deserialize, Serialize};
//! use specta_typescript::Typescript;
//! use tauri_specta::{collect_commands, Builder};
//!
//! #[tauri::command]
//! #[specta::specta] // < You must annotate your commands
//! fn hello_world(my_name: String) -> String {
//! format!("Hello, {my_name}! You've been greeted from Rust!")
//! }
//!
//! fn main() {
//! let mut builder = Builder::<tauri::Wry>::new()
//! // Then register them (separated by a comma)
//! .commands(collect_commands![hello_world,]);
//!
//! #[cfg(debug_assertions)] // <- Only export on non-release builds
//! builder
//! .export(Typescript::default(), "../src/bindings.ts")
//! .expect("Failed to export typescript bindings");
//!
//! tauri::Builder::default()
//! // and finally tell Tauri how to invoke them
//! .invoke_handler(builder.invoke_handler())
//! .setup(move |app| {
//! // This is also required if you want to use events
//! builder.mount_events(app);
//!
//! Ok(())
//! })
//! // on an actual app, remove the string argument
//! .run(tauri::generate_context!("tests/tauri.conf.json"))
//! .expect("error while running tauri application");
//! }
//! ```
//!
//! ## Export to JSDoc
//!
//! If your interested in using JSDoc instead of Typescript you can replace the [`specta_typescript::Typescript`](https://docs.rs/specta-typescript/latest/specta_typescript/struct.Typescript.html) struct
//! with [`specta_jsdoc::JSDoc`](https://docs.rs/specta-jsdoc/latest/specta_jsdoc/struct.JSDoc.html) like the following:
//!
//! ```rust
//! let mut builder = tauri_specta::Builder::<tauri::Wry>::new();
//!
//! #[cfg(debug_assertions)]
//! builder
//! .export(specta_jsdoc::JSDoc::default(), "../src/bindings.js")
//! .expect("Failed to export typescript bindings");
//! ```
//!
//! ## Usage on frontend
//!
//! ```typescript
//! import { commands, events } from "./bindings"; // This should point to the file we export from Rust
//!
//! console.log(await commands.greet("Brendan"));
//! ```
//!
//! ## Custom types
//!
//! Similar to [`serde::Serialize`] you must put the [`specta::Type`] derive macro on your own types to allow Specta to understand your types. For example:
//! ```rust
//! use serde::{Serialize, Deserialize};
//! use specta::Type;
//!
//! #[derive(Serialize, Deserialize, Type)]
//! pub struct MyStruct {
//! a: String
//! }
//!
//! // Call `typ()` as much as you want.
//! let mut builder = tauri_specta::Builder::<tauri::Wry>::new().typ::<MyStruct>();
//! ```
//!
//! ## Events
//!
//! You can also make events typesafe by following the following example:
//!
//! ```rust
//! use serde::{Serialize, Deserialize};
//! use specta::Type;
//! use tauri_specta::{Builder, collect_commands, collect_events, Event};
//!
//! // Add `tauri_specta::Event` to your event
//! #[derive(Serialize, Deserialize, Debug, Clone, Type, Event)]
//! pub struct DemoEvent(String);
//!
//! let mut builder = Builder::<tauri::Wry>::new()
//! // and then register it to your builder
//! .events(collect_events![DemoEvent]);
//!
//! tauri::Builder::default()
//! .invoke_handler(builder.invoke_handler())
//! .setup(move |app| {
//! // Ensure you mount your events!
//! builder.mount_events(app);
//!
//! // Now you can use them
//!
//! DemoEvent::listen(app, |event| {
//! println!("{:?}", event.payload);
//! });
//!
//! DemoEvent("Test".into()).emit(app).unwrap();
//!
//! Ok(())
//! });
//! ```
//!
//! and it can be used on the frontend like the following:
//!
//! ```ts
//! import { commands, events } from "./bindings";
//! import { appWindow } from "@tauri-apps/api/window";
//!
//! // For all windows
//! events.demoEvent.listen((e) => console.log(e));
//!
//! // For a single window
//! events.demoEvent(appWindow).listen((e) => console.log(e));
//!
//! // Emit to the backend and all windows
//! await events.demoEvent.emit("Test")
//!
//! // Emit to a window
//! await events.demoEvent(appWindow).emit("Test")
//! ```
//!
//! Refer to [`Event`] for all the possible methods for listening and emitting events.
//!
//! # Channel
//!
//! [Coming soon...](https://github.com/oscartbeaumont/tauri-specta/issues/111)
//!
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
// TODO: Tauri Specta logo
html_logo_url = "https://github.com/oscartbeaumont/specta/raw/main/.github/logo-128.png",
html_favicon_url = "https://github.com/oscartbeaumont/specta/raw/main/.github/logo-128.png"
)]
use core::fmt;
use std::{
borrow::Cow,
collections::{BTreeMap, HashMap},
path::Path,
sync::Arc,
};
use specta::{
datatype::{self, DataType},
Language, SpectaID, TypeMap,
};
use tauri::{ipc::Invoke, Runtime};
/// Implements the [`Event`](trait@crate::Event) trait for a struct.
///
/// Refer to the [`Event`](trait@crate::Event) trait for more information.
///
#[cfg(feature = "derive")]
#[cfg_attr(docsrs, doc(cfg(feature = "derive")))]
pub use tauri_specta_macros::Event;
mod builder;
mod event;
mod lang;
mod macros;
pub use builder::Builder;
pub(crate) use event::EventRegistry;
pub use event::{Event, TypedEvent};
/// A wrapper around the output of the `collect_commands` macro.
///
/// This acts to seal the implementation details of the macro.
#[derive(Clone)]
pub struct Commands<R: Runtime>(
// Bounds copied from `tauri::Builder::invoke_handler`
pub(crate) Arc<dyn Fn(Invoke<R>) -> bool + Send + Sync + 'static>,
pub(crate) fn(&mut TypeMap) -> Vec<datatype::Function>,
);
impl<R: Runtime> fmt::Debug for Commands<R> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Commands").finish()
}
}
impl<R: Runtime> Default for Commands<R> {
fn default() -> Self {
Self(
Arc::new(tauri::generate_handler![]),
::specta::function::collect_functions![],
)
}
}
/// A wrapper around the output of the `collect_commands` macro.
///
/// This acts to seal the implementation details of the macro.
#[derive(Default)]
pub struct Events(BTreeMap<&'static str, fn(&mut TypeMap) -> (SpectaID, DataType)>);
/// The context of what needs to be exported. Used when implementing [`LanguageExt`].
#[derive(Debug, Clone)]
#[non_exhaustive]
#[allow(missing_docs)]
pub struct ExportContext {
pub plugin_name: Option<&'static str>,
pub commands: Vec<datatype::Function>,
pub error_handling: ErrorHandlingMode,
pub events: BTreeMap<&'static str, DataType>,
pub type_map: TypeMap,
pub constants: HashMap<Cow<'static, str>, serde_json::Value>,
}
/// Implemented for all languages which Tauri Specta supports exporting to.
///
/// Currently implemented for:
/// - [`specta_typescript::Typescript`]
/// - [`specta_jsdoc::JSDoc`]
pub trait LanguageExt {
/// TODO
type Error: std::error::Error + From<std::io::Error>;
/// render the bindings file
fn render(&self, cfg: &ExportContext) -> Result<String, Self::Error>;
/// TODO
fn format(&self, path: &Path) -> Result<(), Self::Error>;
}
impl<L: LanguageExt> LanguageExt for &L {
type Error = L::Error;
fn render(&self, cfg: &ExportContext) -> Result<String, Self::Error> {
(*self).render(cfg)
}
fn format(&self, path: &Path) -> Result<(), Self::Error> {
(*self).format(path)
}
}
#[allow(unused)]
pub(crate) enum ItemType {
Event,
Command,
}
pub(crate) fn apply_as_prefix(plugin_name: &str, s: &str, item_type: ItemType) -> String {
format!(
"plugin:{}{}{}",
plugin_name,
match item_type {
ItemType::Event => ":",
ItemType::Command => "|",
},
s,
)
}
/// The mode which the error handling is done in the bindings.
#[derive(Debug, Default, Copy, Clone)]
pub enum ErrorHandlingMode {
/// Errors will be thrown
Throw,
/// Errors will be returned as a Result enum
#[default]
Result,
}
#[doc(hidden)]
pub mod internal {
//! Internal logic for Tauri Specta.
//! Nothing in this module has to conform to semver so it should not be used outside of this crate.
//! It has to be public so macro's can access it.
use super::*;
/// called by `collect_commands` to construct `Commands`
pub fn command<R: Runtime, F>(
f: F,
types: fn(&mut TypeMap) -> Vec<datatype::Function>,
) -> Commands<R>
where
F: Fn(Invoke<R>) -> bool + Send + Sync + 'static,
{
Commands(Arc::new(f), types)
}
/// called by `collect_events` to register events to an `Events`
pub fn register_event<E: Event>(Events(events): &mut Events) {
if events
.insert(E::NAME, |type_map| {
(E::sid(), E::reference(type_map, &[]).inner)
})
.is_some()
{
panic!("Another event with name {} is already registered!", E::NAME)
}
}
}