Rename BaseConfig to Config

This commit is contained in:
fluo10 2025-08-16 11:47:04 +09:00
parent 18e6d9239b
commit e24ff770a5
18 changed files with 68 additions and 204 deletions

View file

@ -15,12 +15,13 @@ test = ["dep:tempfile", "macros"]
[dependencies]
base64 = "0.22.1"
caretta-macros = { path = "macros", optional = true }
chrono.workspace = true
chrono-tz = "0.10.3"
ciborium.workspace = true
clap = {workspace = true, optional = true}
dirs = "6.0.0"
futures = "0.3.31"
caretta-macros = { path = "macros", optional = true }
libp2p.workspace = true
libp2p-core = { version = "0.43.0", features = ["serde"] }
libp2p-identity = { version = "0.2.11", features = ["ed25519", "peerid", "rand", "serde"] }

View file

@ -16,17 +16,16 @@ pub use rpc::*;
#[cfg(feature="desktop")]
use clap::Args;
pub trait Config: TryFrom<Self::PartialConfig>{
type PartialConfig: PartialConfig<Config = Self>;
}
pub trait PartialConfig: Emptiable + From<Self::Config> + Mergeable {
type Config: Config<PartialConfig = Self>;
#[derive(Clone, Debug)]
pub struct Config {
p2p: P2pConfig,
storage: StorageConfig,
rpc: RpcConfig,
}
#[cfg_attr(feature="desktop", derive(Args))]
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct BaseConfig {
#[derive(Clone, Debug, Default, Deserialize, PartialEq, Serialize)]
pub struct PartialConfig {
#[cfg_attr(feature="desktop", command(flatten))]
p2p: PartialP2pConfig,
#[cfg_attr(feature="desktop", command(flatten))]
@ -35,7 +34,7 @@ pub struct BaseConfig {
rpc: PartialRpcConfig,
}
impl BaseConfig {
impl PartialConfig {
fn new() -> Self {
Self {
p2p : PartialP2pConfig::empty().with_new_secret(),
@ -84,53 +83,29 @@ impl BaseConfig {
}
}
impl Emptiable for PartialConfig {
fn empty() -> Self {
Self {
p2p: PartialP2pConfig::empty(),
storage: PartialStorageConfig::empty(),
rpc: PartialRpcConfig::empty()
}
}
fn is_empty(&self) -> bool {
self.p2p.is_empty() && self.rpc.is_empty() && self.storage.is_empty()
}
}
#[cfg(test)]
mod tests {
use serde::{Deserialize, Serialize};
use crate::{tests::test_toml_serialize_deserialize, utils::{emptiable::Emptiable, mergeable::Mergeable}};
use super::{p2p::{P2pConfig, PartialP2pConfig}, PartialConfig};
#[derive(Debug, Deserialize, Serialize, PartialEq)]
pub struct TestConfig {
p2p: Option<PartialP2pConfig>
}
impl Default for TestConfig {
fn default() -> Self {
Self {
p2p: Some(PartialP2pConfig::default()),
}
}
}
impl Emptiable for TestConfig {
fn empty() -> Self {
Self {
p2p: None,
}
}
fn is_empty(&self) -> bool {
self.p2p.is_none()
}
}
impl Mergeable for TestConfig {
fn merge(&mut self, other: Self) {
if let Some(p2p) = other.p2p {
self.p2p = Some(p2p);
}
}
}
use libp2p::identity;
use super::*;
use crate::{tests::test_toml_serialize_deserialize};
#[tokio::test]
async fn test_p2p_config_serialize_deserialize() {
test_toml_serialize_deserialize(TestConfig::empty());
test_toml_serialize_deserialize(TestConfig::default());
assert_eq!(TestConfig::empty(), toml::from_str("").unwrap());
assert_eq!("", &toml::to_string(&TestConfig::empty()).unwrap());
test_toml_serialize_deserialize(PartialConfig::empty());
}
}

View file

@ -31,9 +31,8 @@ fn base64_to_keypair(base64: &str) -> Result<Keypair, Error> {
Ok(Keypair::from_protobuf_encoding(&vec)?)
}
#[derive(Clone, Debug, Deserialize, Serialize,)]
#[derive(Clone, Debug)]
pub struct P2pConfig {
#[serde(with = "keypair_parser")]
pub secret: Keypair,
pub listen_ips: Vec<IpAddr>,
pub port: u16,
@ -82,26 +81,6 @@ impl TryFrom<PartialP2pConfig> for P2pConfig {
}
}
mod keypair_parser {
use libp2p::identity::Keypair;
use serde::{Deserialize, Deserializer, Serializer};
pub fn serialize<S>(keypair: &Keypair, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer
{
serializer.serialize_str(&super::keypair_to_base64(keypair))
}
pub fn deserialize<'de, D>(deserializer: D) -> Result<Keypair, D::Error>
where D: Deserializer<'de>
{
match super::base64_to_keypair(&String::deserialize(deserializer)?) {
Ok(x) => Ok(x),
Err(crate::error::Error::Base64Decode(_)) => Err(serde::de::Error::custom("Decoding base64 error")),
Err(_) => unreachable!()
}
}
}
#[cfg_attr(feature="desktop",derive(Args))]
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
pub struct PartialP2pConfig {
@ -172,7 +151,7 @@ impl Mergeable for PartialP2pConfig {
mod tests {
use libp2p::identity;
use super::*;
use crate::{config::PartialConfig, tests::test_toml_serialize_deserialize};
use crate::{tests::test_toml_serialize_deserialize};
#[tokio::test]

View file

@ -10,6 +10,7 @@ use crate::config::error::ConfigError;
#[cfg(unix)]
static DEFAULT_SOCKET_PATH: &str = "caretta.sock";
#[derive(Clone, Debug)]
pub struct RpcConfig {
pub socket_path: PathBuf,
}
@ -24,7 +25,7 @@ impl TryFrom<PartialRpcConfig> for RpcConfig {
}
#[cfg_attr(feature="desktop", derive(Args))]
#[derive(Clone, Debug, Deserialize, Serialize)]
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
pub struct PartialRpcConfig {
pub socket_path: Option<PathBuf>,
}

View file

@ -5,7 +5,7 @@ use clap::Args;
#[cfg(any(test, feature="test"))]
use tempfile::tempdir;
use crate::{config::{ConfigError, PartialConfig}, utils::{emptiable::Emptiable, mergeable::Mergeable}};
use crate::{config::{ConfigError, PartialConfig}, utils::{emptiable::Emptiable, get_binary_name, mergeable::Mergeable}};
use libp2p::mdns::Config;
use serde::{Deserialize, Serialize};
@ -15,7 +15,7 @@ static CACHE_DATABASE_NAME: &str = "cache.sqlite";
#[cfg(any(test, feature="test"))]
use crate::tests::{GlobalTestDefault, TestDefault};
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct StorageConfig {
pub data_directory: PathBuf,
pub cache_directory: PathBuf,
@ -50,7 +50,7 @@ impl TryFrom<PartialStorageConfig> for StorageConfig {
}
}
#[cfg_attr(feature="desktop", derive(Args))]
#[derive(Clone, Debug, Deserialize, Serialize)]
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
pub struct PartialStorageConfig {
#[cfg_attr(feature="desktop", arg(long))]
pub data_directory: Option<PathBuf>,
@ -58,6 +58,23 @@ pub struct PartialStorageConfig {
pub cache_directory: Option<PathBuf>,
}
impl Default for PartialStorageConfig {
fn default() -> Self {
#[cfg(any(target_os="linux", target_os="macos", target_os="windows"))]
{
let mut data_dir = dirs::data_local_dir().unwrap();
data_dir.push(get_binary_name().unwrap());
let mut cache_dir = dirs::cache_dir().unwrap();
cache_dir.push(get_binary_name().unwrap());
Self {
data_directory: Some(data_dir),
cache_directory: Some(cache_dir)
}
}
}
}
impl From<StorageConfig> for PartialStorageConfig {
fn from(config: StorageConfig) -> PartialStorageConfig {
Self {

View file

@ -1,3 +1,2 @@
pub mod server;
pub mod service;

View file

@ -1,16 +0,0 @@
use tonic::transport::Server;
use crate::{proto::cached_peer_service_server::CachedPeerServiceServer, rpc::service::cached_peer::CachedPeerService};
pub async fn start_server() ->Result<(), Error> {
let addr = "[::1]:50051".parse()?;
let cached_peer_server = CachedPeerService::default();
Server::builder()
.add_service(CachedPeerServiceServer::new(cached_peer_server))
.serve(addr)
.await?;
Ok(())
}

View file

@ -2,16 +2,16 @@ use crate::{cache::entity::{CachedAddressEntity, CachedPeerEntity, CachedPeerMod
use futures::future::join_all;
use tonic::{Request, Response, Status};
use crate::proto::{cached_peer_service_server::{CachedPeerService, CachedPeerServiceServer}, CachedPeerListRequest, CachedPeerListResponse, CachedPeerMessage};
use crate::proto::{cached_peer_service_server::{CachedPeerServiceServer}, CachedPeerListRequest, CachedPeerListResponse, CachedPeerMessage};
use sea_orm::prelude::*;
#[derive(Debug, Default)]
pub struct CachedPeerServer {}
pub struct CachedPeerService {}
#[tonic::async_trait]
impl CachedPeerService for CachedPeerServer {
impl crate::proto::cached_peer_service_server::CachedPeerService for CachedPeerService {
async fn list(&self, request: Request<CachedPeerListRequest>) -> Result<Response<CachedPeerListResponse>, Status> {
println!("Got a request: {:?}", request);

View file

@ -36,3 +36,12 @@ pub fn utc_to_timestamp(utc: &DateTime<Utc>) -> Timestamp {
pub fn timestamp_to_utc(t: &Timestamp) -> DateTime<Utc> {
Utc.timestamp_opt(t.seconds, u32::try_from(t.nanos).unwrap()).unwrap()
}
pub fn get_binary_name() -> Option<String> {
std::env::current_exe()
.ok()?
.file_name()?
.to_str()?
.to_owned()
.into()
}

View file

@ -7,4 +7,4 @@ license.workspace = true
repository.workspace = true
[dependencies]
dioxus.workspace = true
caretta.path = "../.."

BIN
examples/core/assets/favicon.ico (Stored with Git LFS)

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 23 KiB

View file

@ -1,46 +0,0 @@
/* App-wide styling */
body {
background-color: #0f1116;
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 20px;
}
#hero {
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#links {
width: 400px;
text-align: left;
font-size: x-large;
color: white;
display: flex;
flex-direction: column;
}
#links a {
color: white;
text-decoration: none;
margin-top: 20px;
margin: 10px 0px;
border: white 1px solid;
border-radius: 5px;
padding: 10px;
}
#links a:hover {
background-color: #1f1f1f;
cursor: pointer;
}
#header {
max-width: 1200px;
}

View file

@ -1 +1,2 @@
pub mod ui;
pub mod rpc;

View file

@ -0,0 +1 @@
pub mod server;

View file

View file

@ -1 +0,0 @@
pub mod plain;

View file

@ -1,33 +0,0 @@
use dioxus::prelude::*;
const FAVICON: Asset = asset!("/assets/favicon.ico");
const MAIN_CSS: Asset = asset!("/assets/main.css");
const HEADER_SVG: Asset = asset!("/assets/header.svg");
#[component]
pub fn App() -> Element {
rsx! {
document::Link { rel: "icon", href: FAVICON }
document::Link { rel: "stylesheet", href: MAIN_CSS }
Hero {}
}
}
#[component]
pub fn Hero() -> Element {
rsx! {
div {
id: "hero",
img { src: HEADER_SVG, id: "header" }
div { id: "links",
a { href: "https://dioxuslabs.com/learn/0.6/", "📚 Learn Dioxus" }
a { href: "https://dioxuslabs.com/awesome", "🚀 Awesome Dioxus" }
a { href: "https://github.com/dioxus-community/", "📡 Community Libraries" }
a { href: "https://github.com/DioxusLabs/sdk", "⚙️ Dioxus Development Kit" }
a { href: "https://marketplace.visualstudio.com/items?itemName=DioxusLabs.dioxus", "💫 VSCode Extension" }
a { href: "https://discord.gg/XgGxMSkvUM", "👋 Community Discord" }
}
}
}
}