1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
//! Visual test for timeline density graphs.
//!
//! ```
//! cargo run -p test_data_density_graph
//! ```

use rerun::external::re_log_types::NonMinI64;
use rerun::{
    external::{re_chunk_store, re_log},
    RecordingStream,
};

fn main() -> anyhow::Result<()> {
    re_log::setup_logging();

    let rec = rerun::RecordingStreamBuilder::new("rerun_example_test_data_density_graph")
        .spawn_opts(
            &rerun::SpawnOptions {
                wait_for_bind: true,
                extra_env: {
                    use re_chunk_store::ChunkStoreConfig as C;
                    vec![
                        (C::ENV_CHUNK_MAX_BYTES.into(), "0".into()),
                        (C::ENV_CHUNK_MAX_ROWS.into(), "0".into()),
                        (C::ENV_CHUNK_MAX_ROWS_IF_UNSORTED.into(), "0".into()),
                    ]
                },
                ..Default::default()
            },
            rerun::default_flush_timeout(),
        )?;

    run(&rec)
}

fn run(rec: &RecordingStream) -> anyhow::Result<()> {
    const DESCRIPTION: &str = "\
    Logs different kinds of chunks to exercise different code paths for the density graphs in the time panel:

    - Many small chunks
    - A few large sorted chunks
    - A few large unsorted chunks
    ";
    rec.log_static(
        "description",
        &rerun::TextDocument::from_markdown(DESCRIPTION),
    )?;

    let entities = [
        ("/small", 100, 100, true, 0),
        ("/large", 5, 2000, true, 0),
        ("/large-unsorted", 5, 2000, false, 0),
        ("/gap", 2, 5000, true, 500000),
        ("/over-threshold", 1, 100000, true, 5000000),
    ];

    for (entity_path, num_chunks, num_rows_per_chunk, sorted, time_start_ms) in entities {
        log(
            rec,
            entity_path,
            num_chunks,
            num_rows_per_chunk,
            sorted,
            time_start_ms,
        )?;
    }

    Ok(())
}

fn log(
    rec: &RecordingStream,
    entity_path: &str,
    num_chunks: i64,
    num_rows_per_chunk: i64,
    sorted: bool,
    time_start_ms: i64,
) -> anyhow::Result<()> {
    let entity_path = rerun::EntityPath::parse_strict(entity_path)?;

    // log points
    rec.send_chunk(
        rerun::log::Chunk::builder(entity_path.clone())
            .with_archetype(
                rerun::log::RowId::new(),
                rerun::TimePoint::default()
                    .with(
                        rerun::Timeline::log_time(),
                        rerun::time::TimeInt::from_milliseconds(NonMinI64::ZERO),
                    )
                    .with(rerun::Timeline::log_tick(), 0),
                &rerun::Points3D::new(rerun::demo_util::grid(
                    (-10.0, -10.0, -10.0).into(),
                    (10.0, 10.0, 10.0).into(),
                    10,
                )),
            )
            .build()?,
    );

    let mut time = time_start_ms;
    for _ in 0..num_chunks {
        let mut log_times = vec![];
        for _ in 0..num_rows_per_chunk {
            time += 1;
            log_times.push(time);
        }
        time += 100;
        log_times.push(time);

        if !sorted {
            let mut rng = rand::thread_rng();
            use rand::seq::SliceRandom as _;
            log_times.shuffle(&mut rng);
        }

        let components = (0..num_rows_per_chunk).map(|i| {
            let angle_deg = i as f32 % 360.0;
            rerun::Transform3D::from_rotation(rerun::Rotation3D::AxisAngle(
                ((0.0, 0.0, 1.0), rerun::Angle::from_degrees(angle_deg)).into(),
            ))
        });

        let mut chunk = rerun::log::Chunk::builder(entity_path.clone());
        for (time, component) in log_times.iter().zip(components) {
            chunk = chunk.with_archetype(
                rerun::log::RowId::new(),
                rerun::TimePoint::default().with(
                    rerun::Timeline::log_time(),
                    rerun::time::TimeInt::from_milliseconds((*time).try_into().unwrap_or_default()),
                ),
                &component,
            );
        }
        rec.send_chunk(chunk.build()?);
    }

    Ok(())
}