Skip to content

Commit

Permalink
Merge abc0ca6 into 64949dc
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem committed Sep 14, 2023
2 parents 64949dc + abc0ca6 commit 539786b
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions sentry-core/src/api.rs
Expand Up @@ -17,9 +17,9 @@ use crate::{Hub, Integration, IntoBreadcrumbs, Scope};
///
/// ```
/// use sentry::protocol::{Event, Level};
/// use sentry::types::Uuid;
/// use sentry::types::{Uuid, random_uuid};
///
/// let uuid = Uuid::new_v4();
/// let uuid = random_uuid();
/// let event = Event {
/// event_id: uuid,
/// message: Some("Hello World!".into()),
Expand Down
3 changes: 2 additions & 1 deletion sentry-core/src/client.rs
Expand Up @@ -8,6 +8,7 @@ use std::time::Duration;

use rand::random;
use sentry_types::protocol::v7::SessionUpdate;
use sentry_types::random_uuid;

use crate::constants::SDK_INFO;
use crate::protocol::{ClientSdkInfo, Event};
Expand Down Expand Up @@ -161,7 +162,7 @@ impl Client {
// event_id and sdk_info are set before the processors run so that the
// processors can poke around in that data.
if event.event_id.is_nil() {
event.event_id = Uuid::new_v4();
event.event_id = random_uuid();
}

if event.sdk.is_none() {
Expand Down
2 changes: 1 addition & 1 deletion sentry-core/src/performance.rs
Expand Up @@ -406,7 +406,7 @@ impl Transaction {
Some(client) => (
client.is_transaction_sampled(&ctx),
Some(protocol::Transaction {
name: Some(ctx.name.clone()),
name: Some(ctx.name),
..Default::default()
}),
),
Expand Down
4 changes: 2 additions & 2 deletions sentry-core/src/session.rs
Expand Up @@ -14,7 +14,7 @@ use crate::protocol::{
SessionStatus, SessionUpdate,
};
use crate::scope::StackLayer;
use crate::types::Uuid;
use crate::types::random_uuid;
use crate::{Client, Envelope};

#[derive(Clone, Debug)]
Expand Down Expand Up @@ -50,7 +50,7 @@ impl Session {
Some(Self {
client: client.clone(),
session_update: SessionUpdate {
session_id: Uuid::new_v4(),
session_id: random_uuid(),
distinct_id,
sequence: None,
timestamp: None,
Expand Down
4 changes: 2 additions & 2 deletions sentry-types/Cargo.toml
Expand Up @@ -22,11 +22,11 @@ protocol = []

[dependencies]
debugid = { version = "0.8.0", features = ["serde"] }
getrandom = "0.2.3"
hex = "0.4.3"
rand = "0.8.5"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.46"
thiserror = "1.0.15"
time = { version = "0.3.5", features = ["formatting", "parsing"] }
url = { version = "2.1.1", features = ["serde"] }
uuid = { version = "1.0.0", features = ["v4", "serde"] }
uuid = { version = "1.0.0", features = ["serde"] }
5 changes: 5 additions & 0 deletions sentry-types/src/lib.rs
Expand Up @@ -52,3 +52,8 @@ pub use crate::project_id::*;
// Re-export external types and traits for convenience
pub use debugid::*;
pub use uuid::{Uuid, Variant as UuidVariant, Version as UuidVersion};

/// Generates a random [Uuid] using a thread local RNG.
pub fn random_uuid() -> Uuid {
uuid::Builder::from_random_bytes(rand::random()).into_uuid()
}
2 changes: 1 addition & 1 deletion sentry-types/src/protocol/session.rs
Expand Up @@ -92,7 +92,7 @@ fn is_false(val: &bool) -> bool {
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct SessionUpdate<'a> {
/// The session identifier.
#[serde(rename = "sid", default = "Uuid::new_v4")]
#[serde(rename = "sid", default = "crate::random_uuid")]
pub session_id: Uuid,

/// The distinct identifier. Should be device or user ID.
Expand Down
16 changes: 3 additions & 13 deletions sentry-types/src/protocol/v7.rs
Expand Up @@ -1338,12 +1338,7 @@ pub struct SpanId([u8; 8]);

impl Default for SpanId {
fn default() -> Self {
let mut buf = [0; 8];

getrandom::getrandom(&mut buf)
.unwrap_or_else(|err| panic!("could not retrieve random bytes for SpanId: {err}"));

Self(buf)
Self(rand::random())
}
}

Expand Down Expand Up @@ -1384,12 +1379,7 @@ pub struct TraceId([u8; 16]);

impl Default for TraceId {
fn default() -> Self {
let mut buf = [0; 16];

getrandom::getrandom(&mut buf)
.unwrap_or_else(|err| panic!("could not retrieve random bytes for TraceId: {err}"));

Self(buf)
Self(rand::random())
}
}

Expand Down Expand Up @@ -1520,7 +1510,7 @@ mod event {
use super::*;

pub fn default_id() -> Uuid {
Uuid::new_v4()
crate::random_uuid()
}

pub fn serialize_id<S: Serializer>(uuid: &Uuid, serializer: S) -> Result<S::Ok, S::Error> {
Expand Down

0 comments on commit 539786b

Please sign in to comment.