risingwave_connector_codec/decoder/json/mod.rs
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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
// Copyright 2025 RisingWave Labs
//
// Licensed 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.
// The MIT License (MIT)
//
// Copyright (c) 2021 David Raznick
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
use std::collections::HashMap;
use std::fs;
use anyhow::Context;
use risingwave_pb::plan_common::ColumnDesc;
use serde_json::Value;
use thiserror::Error;
use url::Url;
use super::avro::{avro_schema_to_column_descs, MapHandling};
#[derive(Debug, Error, thiserror_ext::ContextInto)]
pub enum Error {
#[error("could not open schema from {filename}")]
SchemaFromFile {
filename: String,
source: std::io::Error,
},
#[error("parse error for url {url}")]
UrlParse {
url: String,
source: url::ParseError,
},
#[error("schema from {url} not valid JSON")]
SchemaNotJson { url: String, source: std::io::Error },
#[error("request error")]
Request { url: String, source: reqwest::Error },
#[error("schema from {url} not valid JSON")]
SchemaNotJsonSerde {
url: String,
source: serde_json::Error,
},
#[error("ref `{ref_string}` can not be resolved as pointer, `{ref_fragment}` can not be found in the schema")]
JsonRefPointerNotFound {
ref_string: String,
ref_fragment: String,
},
#[error("json ref error")]
JsonRef {
#[from]
source: std::io::Error,
},
#[error("need url to be a file or a http based, got {url}")]
UnsupportedUrl { url: String },
#[error(transparent)]
Uncategorized(
#[from]
#[backtrace]
anyhow::Error,
),
}
type Result<T, E = Error> = std::result::Result<T, E>;
#[derive(Debug)]
pub struct JsonRef {
schema_cache: HashMap<String, Value>,
}
impl JsonRef {
fn new() -> JsonRef {
JsonRef {
schema_cache: HashMap::new(),
}
}
async fn deref_value(&mut self, value: &mut Value, retrieval_url: &Url) -> Result<()> {
self.schema_cache
.insert(retrieval_url.to_string(), value.clone());
self.deref(value, retrieval_url, &vec![]).await?;
Ok(())
}
async fn deref(
&mut self,
value: &mut Value,
base_url: &Url,
used_refs: &Vec<String>,
) -> Result<()> {
if let Some(obj) = value.as_object_mut()
&& let Some(ref_value) = obj.remove("$ref")
&& let Some(ref_string) = ref_value.as_str()
{
let ref_url = base_url.join(ref_string).into_url_parse(ref_string)?;
let mut ref_url_no_fragment = ref_url.clone();
ref_url_no_fragment.set_fragment(None);
let url_schema = ref_url_no_fragment.scheme();
let ref_no_fragment = ref_url_no_fragment.to_string();
let mut schema = match self.schema_cache.get(&ref_no_fragment) {
Some(cached_schema) => cached_schema.clone(),
None => {
if url_schema == "http" || url_schema == "https" {
reqwest::get(ref_url_no_fragment.clone())
.await
.into_request(&ref_no_fragment)?
.json()
.await
.into_request(&ref_no_fragment)?
} else if url_schema == "file" {
let file_path = ref_url_no_fragment.to_file_path().map_err(|_| {
anyhow::anyhow!(
"could not convert url {} to file path",
&ref_url_no_fragment
)
})?;
let file =
fs::File::open(file_path).into_schema_from_file(&ref_no_fragment)?;
serde_json::from_reader(file)
.into_schema_not_json_serde(ref_no_fragment.clone())?
} else {
return Err(Error::UnsupportedUrl {
url: ref_no_fragment,
});
}
}
};
if !self.schema_cache.contains_key(&ref_no_fragment) {
self.schema_cache
.insert(ref_no_fragment.clone(), schema.clone());
}
let ref_url_string = ref_url.to_string();
if let Some(ref_fragment) = ref_url.fragment() {
schema = schema
.pointer(ref_fragment)
.ok_or(Error::JsonRefPointerNotFound {
ref_string: ref_string.to_owned(),
ref_fragment: ref_fragment.to_owned(),
})?
.clone();
}
// Do not deref a url twice to prevent infinite loops
if used_refs.contains(&ref_url_string) {
return Ok(());
}
let mut new_used_refs = used_refs.clone();
new_used_refs.push(ref_url_string);
Box::pin(self.deref(&mut schema, &ref_url_no_fragment, &new_used_refs)).await?;
*value = schema;
}
if let Some(obj) = value.as_object_mut() {
for obj_value in obj.values_mut() {
Box::pin(self.deref(obj_value, base_url, used_refs)).await?
}
}
Ok(())
}
}
impl crate::JsonSchema {
/// FIXME: when the JSON schema is invalid, it will panic.
///
/// ## Notes on type conversion
/// Map will be used when an object doesn't have `properties` but has `additionalProperties`.
/// When an object has `properties` and `additionalProperties`, the latter will be ignored.
/// <https://github.com/mozilla/jsonschema-transpiler/blob/fb715c7147ebd52427e0aea09b2bba2d539850b1/src/jsonschema.rs#L228-L280>
///
/// TODO: examine other stuff like `oneOf`, `patternProperties`, etc.
pub async fn json_schema_to_columns(
&mut self,
retrieval_url: Url,
) -> anyhow::Result<Vec<ColumnDesc>> {
JsonRef::new()
.deref_value(&mut self.0, &retrieval_url)
.await?;
let avro_schema = jst::convert_avro(&self.0, jst::Context::default()).to_string();
let schema =
apache_avro::Schema::parse_str(&avro_schema).context("failed to parse avro schema")?;
avro_schema_to_column_descs(&schema, Some(MapHandling::Jsonb)).map_err(Into::into)
}
}