a ?
This commit is contained in:
parent
4b9736764b
commit
72eb29244c
@ -7,6 +7,7 @@ use serde::Deserialize;
|
|||||||
use zstd::stream::decode_all;
|
use zstd::stream::decode_all;
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Clone)]
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
|
#[serde(rename = "fileinfo")]
|
||||||
pub struct SyncFile {
|
pub struct SyncFile {
|
||||||
pub path: String,
|
pub path: String,
|
||||||
pub hash: String,
|
pub hash: String,
|
||||||
@ -15,7 +16,7 @@ pub struct SyncFile {
|
|||||||
|
|
||||||
#[derive(Deserialize, Debug, Clone)]
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
pub struct SyncFileList {
|
pub struct SyncFileList {
|
||||||
pub files: Vec<SyncFile>,
|
pub fileinfo: Vec<SyncFile>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Cluster {
|
pub struct Cluster {
|
||||||
|
11
src/utils.rs
11
src/utils.rs
@ -59,7 +59,7 @@ pub const SYNC_FILE_LIST_SCHEMA: &str = r#"
|
|||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "record",
|
"type": "record",
|
||||||
"name": "fileinfo",
|
"name": "SyncFile",
|
||||||
"fields": [
|
"fields": [
|
||||||
{"name": "path", "type": "string"},
|
{"name": "path", "type": "string"},
|
||||||
{"name": "hash", "type": "string"},
|
{"name": "hash", "type": "string"},
|
||||||
@ -82,6 +82,13 @@ pub fn avro_data_to_file_list(data: Vec<u8>) -> apache_avro::AvroResult<Vec<Sync
|
|||||||
match &value {
|
match &value {
|
||||||
Value::Array(arr) => {
|
Value::Array(arr) => {
|
||||||
println!("array len: {}", arr.len());
|
println!("array len: {}", arr.len());
|
||||||
|
for i in 0..arr.len() {
|
||||||
|
let item = &arr[i];
|
||||||
|
let try_item = from_value::<SyncFile>(item);
|
||||||
|
if try_item.is_err() {
|
||||||
|
println!("parse item error: {}", try_item.err().unwrap());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
println!("not array");
|
println!("not array");
|
||||||
@ -93,7 +100,7 @@ pub fn avro_data_to_file_list(data: Vec<u8>) -> apache_avro::AvroResult<Vec<Sync
|
|||||||
panic!("parse file list error: ");
|
panic!("parse file list error: ");
|
||||||
}
|
}
|
||||||
let files = files.unwrap();
|
let files = files.unwrap();
|
||||||
Ok(files.files)
|
Ok(files.fileinfo)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
Loading…
Reference in New Issue
Block a user