anki/rslib/src/search
Damien Elmes 553303fc12
Refactor service generation (#2552)
* 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.
2023-06-19 15:33:40 +10:00
..
service Refactor service generation (#2552) 2023-06-19 15:33:40 +10:00
builder.rs Switch Rust import style (#2330) 2023-01-18 21:39:55 +10:00
card_mod_order.sql Add card mod column for notes mode 2021-04-08 20:14:10 +02:00
deck_order.sql
mod.rs Refactor service generation (#2552) 2023-06-19 15:33:40 +10:00
note_cards_order.sql
note_decks_order.sql Add deck column for notes mode 2021-04-08 19:46:06 +02:00
note_due_order.sql
note_ease_order.sql
note_interval_order.sql
note_lapses_order.sql
note_reps_order.sql
notetype_order.sql
parser.rs Add the ability to search for custom data properties 2023-05-18 15:54:01 +10:00
sqlwriter.rs Split io.rs into separate crate, and use it in proto build 2023-06-12 15:47:51 +10:00
template_order.sql
writer.rs Add the ability to search for custom data properties 2023-05-18 15:54:01 +10:00