blob: 02aee459dd5e260121a4ce9f6fa4e0394b93537a [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
use crate::metadata::topic::TopicMeta;
use crate::metadata::{StreamId, TopicId};
use crate::streaming::stats::StreamStats;
use ahash::AHashMap;
use iggy_common::IggyTimestamp;
use slab::Slab;
use std::sync::Arc;
/// Stream metadata stored in the shared snapshot.
#[derive(Clone, Debug)]
pub struct StreamMeta {
pub id: StreamId,
pub name: Arc<str>,
pub created_at: IggyTimestamp,
pub stats: Arc<StreamStats>,
pub topics: Slab<TopicMeta>,
pub topic_index: AHashMap<Arc<str>, TopicId>,
}
impl StreamMeta {
pub fn new(id: StreamId, name: Arc<str>, created_at: IggyTimestamp) -> Self {
Self {
id,
name,
created_at,
stats: Arc::new(StreamStats::default()),
topics: Slab::new(),
topic_index: AHashMap::default(),
}
}
pub fn with_stats(
id: StreamId,
name: Arc<str>,
created_at: IggyTimestamp,
stats: Arc<StreamStats>,
) -> Self {
Self {
id,
name,
created_at,
stats,
topics: Slab::new(),
topic_index: AHashMap::default(),
}
}
}