risingwave_meta/stream/stream_graph/
id.rs1use crate::controller::id::{
16 IdCategory, IdCategoryType, IdGeneratorManager as SqlIdGeneratorManager,
17};
18
19#[derive(Clone, Copy, Debug, Hash, Eq, PartialEq, PartialOrd, Ord)]
22pub(super) struct GlobalId<const TYPE: IdCategoryType>(u32);
23
24impl<const TYPE: IdCategoryType> GlobalId<TYPE> {
25 pub const fn new(id: u32) -> Self {
26 Self(id)
27 }
28
29 pub fn as_global_id(&self) -> u32 {
30 self.0
31 }
32}
33
34impl<const TYPE: IdCategoryType> From<u32> for GlobalId<TYPE> {
35 fn from(id: u32) -> Self {
36 Self(id)
37 }
38}
39
40#[derive(Clone, Copy, Debug)]
44pub(super) struct GlobalIdGen<const TYPE: IdCategoryType> {
45 offset: u32,
46 len: u32,
47}
48
49impl<const TYPE: IdCategoryType> GlobalIdGen<TYPE> {
50 pub fn new(id_gen: &SqlIdGeneratorManager, len: u64) -> Self {
52 let offset = id_gen.generate_interval::<TYPE>(len);
53 Self {
54 offset: offset as u32,
55 len: len as u32,
56 }
57 }
58
59 pub fn to_global_id(self, local_id: u32) -> GlobalId<TYPE> {
61 assert!(
62 local_id < self.len,
63 "id {} is out of range (len: {})",
64 local_id,
65 self.len
66 );
67 GlobalId(local_id + self.offset)
68 }
69
70 pub fn len(&self) -> u32 {
72 self.len
73 }
74}
75
76pub(super) type GlobalFragmentId = GlobalId<{ IdCategory::Fragment }>;
77pub(super) type GlobalFragmentIdGen = GlobalIdGen<{ IdCategory::Fragment }>;
78
79pub(super) type GlobalTableIdGen = GlobalIdGen<{ IdCategory::Table }>;
80
81pub(super) type GlobalActorId = GlobalId<{ IdCategory::Actor }>;
82pub(super) type GlobalActorIdGen = GlobalIdGen<{ IdCategory::Actor }>;