553303fc12
* Automatically elide empty inputs and outputs to backend methods * Refactor service generation Despite the fact that the majority of our Protobuf service methods require an open collection, they were not accessible with just a Collection object. To access the methods (e.g. because we haven't gotten around to exposing the correct API in Collection yet), you had to wrap the collection in a Backend object, and pay a mutex-acquisition cost for each call, even if you have exclusive access to the object. This commit migrates the majority of service methods to the Collection, so they can now be used directly, and improves the ergonomics a bit at the same time. The approach taken: - The service generation now happens in rslib instead of anki_proto, which avoids the need for trait constraints and associated types. - Service methods are assumed to be collection-based by default. Instead of implementing the service on Backend, we now implement it on Collection, which means our methods no longer need to use self.with_col(...). - We automatically generate methods in Backend which use self.with_col() to delegate to the Collection method. - For methods that are only appropriate for the backend, we add a flag in the .proto file. The codegen uses this flag to write the method into a BackendFooService instead of FooService, which the backend implements. - The flag can also allows us to define separate implementations for collection and backend, so we can e.g. skip the collection mutex in the i18n service while also providing the service on a collection.
60 lines
1.1 KiB
Rust
60 lines
1.1 KiB
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
#![deny(unused_must_use)]
|
|
|
|
pub mod adding;
|
|
pub(crate) mod ankidroid;
|
|
pub mod backend;
|
|
pub mod browser_table;
|
|
pub mod card;
|
|
pub mod card_rendering;
|
|
pub mod cloze;
|
|
pub mod collection;
|
|
pub mod config;
|
|
pub mod dbcheck;
|
|
pub mod deckconfig;
|
|
pub mod decks;
|
|
pub mod error;
|
|
pub mod findreplace;
|
|
pub mod i18n;
|
|
pub mod image_occlusion;
|
|
pub mod import_export;
|
|
pub mod latex;
|
|
pub mod links;
|
|
pub mod log;
|
|
mod markdown;
|
|
pub mod media;
|
|
pub mod notes;
|
|
pub mod notetype;
|
|
pub mod ops;
|
|
mod preferences;
|
|
pub mod prelude;
|
|
mod progress;
|
|
pub mod revlog;
|
|
pub mod scheduler;
|
|
pub mod search;
|
|
pub mod serde;
|
|
pub mod services;
|
|
mod stats;
|
|
pub mod storage;
|
|
pub mod sync;
|
|
pub mod tags;
|
|
pub mod template;
|
|
pub mod template_filters;
|
|
pub(crate) mod tests;
|
|
pub mod text;
|
|
pub mod timestamp;
|
|
mod typeanswer;
|
|
pub mod types;
|
|
pub mod undo;
|
|
pub mod version;
|
|
|
|
use std::env;
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
lazy_static! {
|
|
pub(crate) static ref PYTHON_UNIT_TESTS: bool = env::var("ANKI_TEST_MODE").is_ok();
|
|
}
|