Bicycle 🚲
Protobuf defined database framework.
Install
Before installing bicycle you'll need to have Rust and protoc installed.
Usage
A Bicycle schema is defined in a simple .proto file.
// schema.proto
syntax = "proto3";
package bicycle;
message Dog {
string pk = 1;
string name = 2;
uint32 age = 3;
string breed = 4;
}
Run the build command to generate your Bicycle components.
Server
Running
You can now run the server binary with the following command.
Testing RPCs
To test some basic CRUD you can use gRPCurl
## PutDog
## BatchPutDogs
## GetDogs
## DeleteDogs
Clients
Rust
The Rust client code is generated by default and can be added to any Rust project as a dependency
# my-rust-app/Cargo.toml
[]
= { = "bicycle_core", = "__bicycle__/core" }
Call the Bicycle server from your Rust app
// my-rust-app/src/main.rs
use bicycle;
use ;
use Request;
use Error;
async
Other Languages
You can also use the ./__bicycle__/proto/bicycle.proto to codegen your own database clients for any other language. Because the Bicycle server is just a gRPC server, any language with gRPC support also has Bicycle client support.
// ./__bicycle__/proto/bicycle.proto
syntax = "proto3";
package bicycle;
message Dogs {
repeated Dog dogs = 1;
}
message Dog {
string pk = 1;
string name = 2;
uint32 age = 3;
string breed = 4;
}
message IndexQuery {
oneof expression {
string eq = 1;
string gte = 2;
string lte = 3;
string begins_with = 4;
}
}
message Empty {}
service Bicycle {
rpc GetDogsByPk(IndexQuery) returns (Dogs) {}
rpc DeleteDogsByPk(IndexQuery) returns (Empty) {}
rpc PutDog(Dog) returns (Empty) {}
rpc BatchPutDogs(Dogs) returns (Empty) {}
}
Desktop GUIs
Bicycle servers also implement server reflection, so you can roll over to your preferred gRPC desktop client (i.e Postman, BloomRPC), type in 0.0.0.0::50051, and they should be able to automatically load up all your RPCs.
Embedding
Rust
In addition to the gRPC server based implementation, you can also use the generated Rust core functions without using gRPC at all. The query/storage formats remain protobuf, but without the remote server interaction.
You can import the core functionality into your project by adding the generated bicycle_core as a dependency in your Cargo.toml
# embedded-dogs/Cargo.toml
[]
= { = "bicycle_core", = "__bicycle__/core" }
// embedded-dogs/src/main.rs
use bicycle;
use ;
use Error;
SPROCS
Stored procedures are supported and can be written in Rust built for the wasm32-wasi target. Currently only stdio is inherited from the host context and the additional WASI APIs are not supported (this means your println!()s will show up on the host but you don't have access to things like the file system).
bicycle sproc commands for building with --lang rust depend on cargo-wasi which can be installed using cargo install cargo-wasi (details here).
Definition
For this example we want to create a stored procedure that will return us only the Dog's names. To create a new SPROC we run the following
Some additional items need to be added to the Cargo.toml. The host shims are provided by the build output in __bicycle__ and will need to be added as a dependency. You will also need to set your build target's name to "proc" and optionally adjust the release profile to produce smaller WASM binaries.
# dog-names-proc/Cargo.toml
## shims to interact more ergonomically with the host functions
[]
= { = "bicycle_shims", = "__bicycle__/shims" }
## set the binary name to "proc" so the CLI can deploy it
[[]]
= "src/main.rs"
= "proc"
## recommended for smaller binaries
## also see: https://github.com/johnthagen/min-sized-rust
[]
= true
= true
= 'z'
= 1
= "abort"
For a basic SPROC example we have the following which uses the recv_in to get the dynamic input passed to the SPROC by the caller.
Once we have the "begins_with" argument from recv_in we use the get_dogs_by_pk shim to grab the requested Dogs from the host, map over just their names, and then send the output back to the host via send_out. Once the host captures the result of send_out they will forward it onto the caller.
NOTE: all SPROC I/O uses the Value protobuf message and bicycle_shims re-exports prost-types crate which provides the Rust implementation of the Value type for you.
// dog-names-proc/src/main.rs
use bicycle;
use ;
use ;
use ;
use Error;
Execution
To test the procedure as a one-off against your Bicycle server
To store the procedure on your Bicycle server for future execution
To execute a previously stored procedure on your Bicycle server