risingwave_connector_codec/
lib.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15//! Encoding and decoding between external data formats and RisingWave datum (i.e., type mappings).
16
17#![allow(clippy::derive_partial_eq_without_eq)]
18#![feature(array_chunks)]
19#![feature(coroutines)]
20#![feature(proc_macro_hygiene)]
21#![feature(stmt_expr_attributes)]
22#![feature(box_patterns)]
23#![feature(trait_alias)]
24#![feature(let_chains)]
25#![feature(box_into_inner)]
26#![feature(type_alias_impl_trait)]
27#![feature(associated_type_defaults)]
28#![feature(impl_trait_in_assoc_type)]
29#![feature(iter_from_coroutine)]
30#![feature(if_let_guard)]
31#![feature(iterator_try_collect)]
32#![feature(try_blocks)]
33#![feature(error_generic_member_access)]
34#![feature(negative_impls)]
35#![feature(register_tool)]
36#![feature(assert_matches)]
37#![register_tool(rw)]
38#![recursion_limit = "256"]
39
40pub mod common;
41/// Converts JSON/AVRO/Protobuf data to RisingWave datum.
42/// The core API is [`decoder::Access`].
43pub mod decoder;
44
45pub use apache_avro::schema::Schema as AvroSchema;
46pub use apache_avro::types::{Value as AvroValue, ValueKind as AvroValueKind};
47pub use risingwave_pb::plan_common::ColumnDesc;
48pub struct JsonSchema(pub serde_json::Value);
49impl JsonSchema {
50    pub fn parse_str(schema: &str) -> anyhow::Result<Self> {
51        use anyhow::Context;
52
53        let value = serde_json::from_str(schema).context("failed to parse json schema")?;
54        Ok(Self(value))
55    }
56
57    pub fn parse_bytes(schema: &[u8]) -> anyhow::Result<Self> {
58        use anyhow::Context;
59
60        let value = serde_json::from_slice(schema).context("failed to parse json schema")?;
61        Ok(Self(value))
62    }
63}