Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into CD/seq
Browse files Browse the repository at this point in the history
  • Loading branch information
josediegorobles committed Dec 20, 2023
2 parents 7e58a09 + 1f3044c commit 08b5806
Show file tree
Hide file tree
Showing 8 changed files with 330 additions and 82 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,11 @@ jobs:
MAIN_VAULT_ADDRESS: ${{ secrets.MAIN_VAULT_ADDRESS }}
RUST_BACKTRACE: 1

- name: RGB Test Init
run: cargo test --locked --features server --test _init -- _init --nocapture --test-threads 1

- name: RGB Tests
run: cargo test --locked --features server --test rgb -- rgb --nocapture --test-threads 1
run: cargo test --locked --features server --test rgb -- rgb --nocapture --test-threads 1
env:
TEST_WALLET_SEED: ${{ secrets.TEST_WALLET_SEED }}
RUST_BACKTRACE: 1
Expand Down
136 changes: 101 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ esplora_block = { version = "0.5.0", package = "esplora-client", default-feature
"blocking",
] }
inflate = "0.4.5"
sled = "0.34.7"
tower-http = { version = "0.4.4", features = ["cors"], optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
Expand All @@ -134,7 +135,8 @@ anyhow = "1.0.71"
blake3 = "1.4.1"
rgb-std = { version = "0.10.2" }
serde = "1.0.189"
toml = { version = "0.7.8", features = ["preserve_order"] }
serde_json = "1.0.107"
toml = { version = "0.8.0", features = ["preserve_order"] }

[patch.crates-io]
# Remove after merge and release https://github.com/BP-WG/bitcoin_foundation/pull/20
Expand Down
28 changes: 27 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{collections::BTreeMap, fs};
use std::{collections::BTreeMap, env, fs, path};

use anyhow::Result;
use rgbstd::{
Expand Down Expand Up @@ -54,6 +54,30 @@ const MARKETPLACE_OFFERS: &str = "bitmask-marketplace_public_offers.c15";
const MARKETPLACE_BIDS: &str = "bitmask-marketplace_public_bids.c15";
const NETWORK: &str = "bitcoin"; // Only mainnet is tracked, no monetary incentive to upgrade testnet assets

#[derive(Serialize, Deserialize, Default)]
pub struct MetricsData {
bytes: u64,
bytes_by_day: BTreeMap<String, u64>,
bitcoin_wallets_by_day: BTreeMap<String, usize>,
signet_wallets_by_day: BTreeMap<String, usize>,
testnet_wallets_by_day: BTreeMap<String, usize>,
regtest_wallets_by_day: BTreeMap<String, usize>,
wallets_by_network: BTreeMap<String, usize>,
}

pub fn init_fs() -> Result<()> {
let dir = env::var("CARBONADO_DIR").unwrap_or("/tmp/bitmaskd/carbonado".to_owned());
let dir = path::Path::new(&dir);

fs::create_dir_all(dir)?;
fs::write(
dir.join("metrics.json"),
serde_json::to_string_pretty(&MetricsData::default())?,
)?;

Ok(())
}

fn main() -> Result<()> {
// lib ids
const BMC_VERSION: &str = env!("CARGO_PKG_VERSION");
Expand Down Expand Up @@ -158,5 +182,7 @@ fn main() -> Result<()> {

fs::write(FILE_HASHES_FILE, toml)?;

init_fs()?;

Ok(())
}
23 changes: 13 additions & 10 deletions src/bin/bitmaskd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,8 @@ async fn send_coins(
}

async fn json_metrics() -> Result<impl IntoResponse, AppError> {
let metrics_json = metrics::json().await?;
let dir = env::var("CARBONADO_DIR").unwrap_or("/tmp/bitmaskd/carbonado".to_owned());
let metrics_json = fs::read_to_string(&format!("{dir}/metrics.json")).await?;

Ok((
StatusCode::OK,
Expand All @@ -784,14 +785,16 @@ async fn json_metrics() -> Result<impl IntoResponse, AppError> {
}

async fn csv_metrics() -> Result<impl IntoResponse, AppError> {
let metrics_csv = metrics::csv().await;
let dir = env::var("CARBONADO_DIR").unwrap_or("/tmp/bitmaskd/carbonado".to_owned());
let metrics_csv = fs::read_to_string(&format!("{dir}/metrics.csv")).await?;

Ok((StatusCode::OK, [("content-type", "text/csv")], metrics_csv))
}

async fn init_metrics() -> Result<()> {
let path = env::var("CARBONADO_DIR").unwrap_or("/tmp/bitmaskd/carbonado".to_owned());
let dir = path::Path::new(&path);
let dir = env::var("CARBONADO_DIR").unwrap_or("/tmp/bitmaskd/carbonado".to_owned());
let dir = path::Path::new(&dir);
fs::create_dir_all(dir).await?;

info!("Starting metrics collection...");
let duration = Instant::now();
Expand Down Expand Up @@ -881,14 +884,14 @@ async fn main() -> Result<()> {
app = app
.route("/regtest/block", get(new_block))
.route("/regtest/send/:address/:amount", get(send_coins));
} else {
tokio::spawn(async {
if let Err(e) = init_metrics().await {
error!("Error in periodic metrics: {e}");
}
});
}

tokio::spawn(async {
if let Err(e) = init_metrics().await {
error!("Error in init metrics: {e}");
}
});

let app = app.layer(CorsLayer::permissive());
let addr = SocketAddr::from(([0, 0, 0, 0], 7070));

Expand Down
Loading

0 comments on commit 08b5806

Please sign in to comment.