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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
// //! Build module to generate new modules from OAS / Swagger files
// //!
// TODO: Refactor to use a proper code generation library
// use std::collections::HashMap;
use env;
// use std::fs;
// use std::path::Path;
// // use openapiv3::AnySchema;
// // use openapiv3::ArrayType;
// // use openapiv3::ObjectType;
// // use openapiv3::ReferenceOr;
// // use openapiv3::Schema;
// // use openapiv3::SchemaKind;
// // use openapiv3::Type;
// // use openapiv3::SchemaKind;
// use quote::quote;
// use openapiv3::OpenAPI;
// use serde_json;
// //use proc_macro2::{Ident,Span};
// use convert_case::{Case,Casing};
// #[derive(Default,Debug,Clone)]
// struct CommonEntry {
// name : String,
// use_path : String,
// }
// #[derive(PartialEq)]
// enum BuildMode {
// HashOnly,
// FullBuild,
// }
// impl From<(&str,&str)> for CommonEntry {
// fn from(value: (&str,&str)) -> Self {
// let (name,use_path) = value;
// CommonEntry {
// name : name.to_string(),
// use_path : use_path.to_string(),
// }
// }
// }
// #[derive(Default)]
// struct CommonClasses {
// classes : Vec<CommonEntry>,
// }
// impl From<Vec<(&str,&str)>> for CommonClasses {
// fn from(value: Vec<(&str,&str)>) -> Self {
// let mut out = CommonClasses::default();
// for value in value.iter() {
// let entry = CommonEntry::from(*value);
// out.classes.push(entry);
// }
// out
// }
// }
// #[derive(Default,Debug)]
// struct StringWithUse {
// pub string : String,
// pub uses : Option<Vec<String>>,
// pub generic : Option<String>,
// }
// impl StringWithUse {
// pub fn with_ref(mut self, reference : impl Into<String>) -> StringWithUse {
// if self.uses.is_none() {
// self.uses = Some(vec![]);
// };
// self.uses.as_mut().unwrap().push(reference.into());
// self
// }
// pub fn with_generic(mut self, generic : impl Into<String>) -> StringWithUse {
// self.generic = Some(generic.into());
// self
// }
// // Merge one SWU into another
// pub fn merge(&mut self,swu : &mut StringWithUse) {
// // Merge new StringWithUse into this one
// if self.uses.is_none() {
// self.uses = Some(vec![]);
// };
// self.string.push_str(swu.string.as_str());
// // Simple copy through the genric value
// self.generic = swu.generic.clone();
// if swu.uses.is_some() {
// let new_uses = swu.uses.as_mut().unwrap();
// self.uses.as_mut().unwrap().append(new_uses);
// }
// }
// }
// impl From<String> for StringWithUse {
// fn from(value: String) -> Self {
// StringWithUse {
// string : value,
// uses : None,
// generic : None,
// }
// }
// }
// impl Into<String> for StringWithUse {
// fn into(self) -> String {
// self.string
// }
// }
// fn schema_description(schema : &Schema) -> String {
// let d = schema.schema_data.description.as_ref();
// match d {
// Some(d) => format!("\n/*\n\t{}\n*/\n",d),
// None => String::default(),
// }
// }
// fn property_type_array(a: ArrayType, schema_hash: &mut Vec<String>) -> StringWithUse {
// let mut out = String::default();
// let mut out2 = StringWithUse::default();
// out.push_str("Vec<");
// match a.items {
// Some(i) => {
// let mut prop = property_ref(i,schema_hash);
// out2.merge(&mut prop);
// out.push_str(prop.string.as_str())
// },
// None => (),
// }
// out.push_str(">");
// out2.string = out;
// out2
// }
// fn property_type(t : Type, schema_hash : &mut Vec<String>) -> StringWithUse {
// // Return a Rust type
// match t {
// Type::String(_s) => format!("String").into(),
// Type::Boolean(_b)=> format!("bool").into(),
// Type::Integer(_i)=> format!("i32").into(),
// Type::Number(_f)=> format!("f32").into(),
// Type::Object(o) => schema_object_properties(o,schema_hash),
// Type::Array(a) => property_type_array(a,schema_hash),
// }
// }
// fn property_schema_allof(_all_of : Vec<ReferenceOr<Schema>>) -> StringWithUse {
// format!("\n// Property Schema AllOf not implemented\n").into()
// }
// fn property_schema_any(any : AnySchema,schema_vec: &mut Vec<String>) -> StringWithUse {
// let mut out = String::default();
// let mut out2 = StringWithUse::default();
// for (name, ref_or) in any.properties.into_iter() {
// let name = name
// .replace("@", "")
// .replace("type", "r#type")
// .to_case(Case::Snake);
// let mut prop_vec: Vec<String> = vec![];
// let mut props = property_ref(ref_or,&mut prop_vec);
// out.push_str(format!("\t{}: {},\n",name,props.string).as_str());
// out2.merge(&mut props);
// }
// out2.string = out;
// out2
// }
// fn property_schema_not( _not: Box<ReferenceOr<Schema>>) -> StringWithUse {
// format!("\n// Property Schema Not not implemented\n").into()
// }
// fn property_schema_anyof(_any_of : Vec<ReferenceOr<Schema>>) -> StringWithUse {
// format!("\n// Property Schema AnyOf not implemented\n").into()
// }
// fn property_schema_oneof(_one_of: Vec<ReferenceOr<Schema>>) -> StringWithUse {
// format!("\n// Property Schema OneOf not implemented\n").into()
// }
// fn property_schema(schema : &Schema, schema_vec: &mut Vec<String>) -> StringWithUse {
// match schema.clone().schema_kind {
// SchemaKind::Type(t) => property_type(t,schema_vec).into(),
// SchemaKind::AllOf { all_of } => property_schema_allof(all_of),
// SchemaKind::AnyOf { any_of } => property_schema_anyof(any_of),
// SchemaKind::OneOf { one_of } => property_schema_oneof(one_of),
// SchemaKind::Any(any) => property_schema_any(any,schema_vec),
// SchemaKind::Not { not } => property_schema_not(not),
// }
// }
// fn property_ref(s: ReferenceOr<Box<Schema>>,schema_vec: &mut Vec<String>) -> StringWithUse {
// match s {
// ReferenceOr::Item(i) => {
// property_schema(i.as_ref(),schema_vec)
// },
// ReferenceOr::Reference { reference } => {
// let (_,split_ref) = reference.rsplit_once("/").unwrap();
// // Since we are now referencing a remote class, we need to include it via a 'use' statement.
// // Need to return the use class
// StringWithUse::from(format!("{}",split_ref))
// .with_ref(split_ref.to_string())
// }
// }
// }
// fn reference_to_uses(reference : String) -> String {
// // Pull out common modules
// match reference.as_str() {
// "TimePeriod" => format!("use crate::TimePeriod;\n"),
// "RelatedParty"=> format!("use crate::common::related_party::RelatedParty;\n"),
// "Note" => format!("use crate::common::note::Note;\n"),
// _ => {
// // Default case, generate use path from Camel name.
// let snake = reference.to_case(Case::Snake);
// format!("use crate::tmf723::{}::{};\n",snake,reference)
// }
// }
// }
// fn schema_kind(name : String, kind : SchemaKind,schema_hash : &mut HashMap<String,Vec<String>>,mode : BuildMode) -> String {
// // let schema_name = name.clone();
// let out = match kind {
// SchemaKind::Type(t) => schema_type(name,t,schema_hash,mode),
// SchemaKind::AllOf { all_of } => schema_allof(name, all_of,schema_hash,mode),
// SchemaKind::AnyOf { any_of } => schema_anyof(name, any_of),
// SchemaKind::Not { not } => schema_not(name,not),
// SchemaKind::OneOf { one_of } => schema_oneof(name, one_of),
// SchemaKind::Any(any) => schema_any(name, any,schema_hash,mode),
// };
// //schema_hash.insert(schema_name,schema_vec);
// out
// }
// fn schema_type(name: String, t : Type, schema_hash: &mut HashMap<String,Vec<String>>, mode : BuildMode) -> String {
// let mut schema_vec : Vec<String>= vec![];
// let schema_name = name.clone();
// let mut out = match t {
// Type::Object(o) => schema_object(name,o,&mut schema_vec).into(),
// Type::Array(a) => schema_array(name, a,&mut schema_vec),
// Type::Boolean(_b) => format!("// Schema Type bool not implemented\n"),
// Type::Integer(_i) => format!("// Schema Type Integer not implemented\n"),
// Type::Number(_n) => format!("// Schema Type Number not implemented\n"),
// Type::String(_s) => format!("// Schema Type String not implemented\n"),
// };
// // Store properties for later reuse
// if mode == BuildMode::HashOnly {
// let vec_size = schema_vec.len();
// out.push_str(format!("\t// Inserting {} into hash, schema_vec is : {}",schema_name.clone(),vec_size).as_str());
// schema_hash.insert(schema_name, schema_vec);
// let hash_size = schema_hash.len();
// out.push_str(format!("Hash is now: {}",hash_size).as_str());
// }
// out
// }
// fn schema_object(name: String, object : ObjectType, schema_vec: &mut Vec<String>) -> String {
// let mut out = StringWithUse::default();
// let props = schema_object_properties(object,schema_vec);
// out.string.push_str(mod_uses(props.uses).as_str());
// out.string.push_str("\n// schema_object()\n");
// out.string.push_str("#[derive(Debug,Default,Deserialize,Serialize)]\n");
// out.string.push_str(format!("pub struct {} {{\n",name).as_str());
// out.string.push_str(props.string.as_str());
// out.string.push_str("\n}\n");
// out.into()
// }
// fn schema_object_properties(object: ObjectType,schema_vec: &mut Vec<String>) -> StringWithUse {
// let mut out = String::default();
// let mut out2 = StringWithUse::default();
// for (name, schema) in object.properties.into_iter() {
// let name = name
// .replace("@", "")
// .replace("type", "r#type")
// .to_case(Case::Snake);
// let mut prop_ref = property_ref(schema,schema_vec);
// let line = format!("\n\t{}: {},",name,prop_ref.string);
// out.push_str(line.as_str());
// let vec_size = schema_vec.len();
// schema_vec.push(line);
// // out.push_str(format!("\t// Added line to vec, now: {}\n",vec_size).as_str());
// out2.merge(&mut prop_ref)
// }
// out2.string = out;
// out2
// }
// fn schema_array(name: String, array : ArrayType,schema_vec: &mut Vec<String>) -> String {
// let mut out = String::default();
// out.push_str(property_ref(array.items.unwrap(),schema_vec).string.as_str());
// format!("\t{}:\nVec<{}>\n",name,out)
// }
// fn schema_allof(name : String, all_of : Vec<ReferenceOr<Schema>>,schema_hash : &mut HashMap<String,Vec<String>>,mode: BuildMode) -> String {
// let mut out = String::default();
// let mut uses = StringWithUse::default();
// out.push_str("\t// Schema AllOf\n");
// let mut prop_vec : Vec<String> = vec![];
// for r in all_of {
// out.push_str(match r {
// ReferenceOr::Item(i) => {
// let mut props = property_schema(&i,&mut prop_vec);
// let vec_len = prop_vec.len();
// props.string.push_str(format!("\t// Found {} properties, adding to hash",vec_len).as_str());
// uses.merge(&mut props);
// props.string
// },
// // This reference needs to pull the schema properties in, not just link
// // Need to have a hash of all schemas to pull in
// ReferenceOr::Reference { reference } => {
// let (_,split_ref) = reference.rsplit_once("/").unwrap();
// // Need to pull in referenced schema
// //uses.push_str(reference_to_uses(split_ref.to_string()).as_str());
// // Use split_ref to lookup hash to find items
// match schema_hash.get_key_value(split_ref) {
// Some((_name,value)) => {
// // Entry found, add into output
// let mut out = String::default();
// out.push_str(format!("\n\t//{}:\t{}","START",split_ref).as_str());
// // We want to include the referenced fields in our vec
// if value.is_empty() {
// out.push_str("\t// Empty SchemaVec\n");
// }
// for val in value {
// // out.push_str("// Entry");
// out.push_str(val)
// }
// out.push_str(format!("\n\t//{}:\t{},\n","FINISH",split_ref).as_str());
// out
// },
// None => {
// format!("\t//{}:\t{},\n",name,split_ref)
// }
// }
// }
// }.as_str());
// }
// schema_hash.insert(name.clone(), prop_vec);
// out.push_str("\n}\n");
// let struct_def = match uses.generic {
// Some(g) => format!("\n#[derive(Debug,Default,Deserialize,Serialize)]\npub struct {}<{}> {{\n",name,g),
// None => format!("\n#[derive(Debug,Default,Deserialize,Serialize)]\npub struct {} {{\n",name),
// };
// // Generate final output, uses, then struct
// format!("\n// Uses\n{}\n{}\n{}",mod_uses(uses.uses),struct_def,out)
// }
// fn schema_anyof(name: String, _any_of : Vec<ReferenceOr<Schema>>) -> String {
// let mut out = String::default();
// out.push_str("use serde::{Deserialize,Serialize};\n\n");
// out.push_str("// Schema AnyOf\n");
// out.push_str("#[derive(Debug,Default,Deserialize,Serialize)]\n");
// out.push_str(format!("pub struct {} {{\n",name).as_str());
// out.push_str("\n}\n");
// out
// }
// fn schema_any(name : String, any : AnySchema, schema_hash : &mut HashMap<String,Vec<String>>, mode: BuildMode) -> String {
// let mut out = String::default();
// let mut uses = StringWithUse::default();
// let mut outer_vec : Vec<String> = vec![];
// out.push_str("// Schema Any\n");
// out.push_str("#[derive(Debug,Default,Deserialize,Serialize)]\n");
// out.push_str(format!("pub struct {} {{\n",name).as_str());
// for (name,r) in any.properties {
// out.push_str(match r {
// // We can add the item onto the has here
// ReferenceOr::Item(i) => {
// let mut schema_vec : Vec<String> = vec![];
// let mut props = property_schema(&i,&mut schema_vec);
// uses.merge(&mut props);
// let name = name
// .replace("@", "")
// .replace("type", "r#type")
// .to_case(Case::Snake);
// if mode == BuildMode::HashOnly {
// schema_hash.insert(name.clone(),schema_vec);
// }
// format!("\t{}:\tOption<{}>,\n",name,props.string)
// },
// // This reference needs to pull the schema properties in, not just link
// // Need to have a hash of all schemas to pull in
// ReferenceOr::Reference { reference } => {
// let (_,split_ref) = reference.rsplit_once("/").unwrap();
// // Need to pull in referenced schema
// //uses.push_str(reference_to_uses(split_ref.to_string()).as_str());
// let mut out = format!("\t//START:\t{},\n",split_ref);
// let vec = schema_hash.get(split_ref);
// match vec {
// Some(v) => {
// for val in v {
// // out.push_str("// Entry");
// out.push_str(val.as_str());
// }
// },
// None => {
// out.push_str("\n// Empty vec for schema_any\n");
// }
// }
// out.push_str(format!("\t//FINISH:\t{},\n",split_ref).as_str());
// out
// }
// }.as_str());
// }
// for ref_or in any.one_of {
// // We can add the item onto the has here
// out.push_str(match ref_or {
// ReferenceOr::Item(i) => {
// let mut props = property_schema(&i,&mut outer_vec);
// uses.merge(&mut props);
// let name = name
// .replace("@", "")
// .replace("type", "r#type")
// .to_case(Case::Snake);
// //schema_hash.insert(name.clone(),schema_vec);
// format!("\t{}:\tOption<{}>,\n",name,props.string)
// },
// // This reference needs to pull the schema properties in, not just link
// // Need to have a hash of all schemas to pull in
// ReferenceOr::Reference { reference } => {
// let (_,split_ref) = reference.rsplit_once("/").unwrap();
// // Need to pull in referenced schema
// //uses.push_str(reference_to_uses(split_ref.to_string()).as_str());
// let mut out = format!("\t//Pull in this schema:\t{}",split_ref);
// let vec = schema_hash.get(split_ref);
// match vec {
// Some(v) => {
// outer_vec.append(v.clone().as_mut());
// for val in v {
// // out.push_str("// Entry");
// out.push_str(val.as_str());
// }
// },
// None => {
// out.push_str("\n\t// Vec was empty");
// }
// }
// out
// }
// }.as_str());
// }
// for ref_or in any.all_of {
// // We can add the item onto the has here
// out.push_str(match ref_or {
// ReferenceOr::Item(i) => {
// let mut props = property_schema(&i,&mut outer_vec);
// uses.merge(&mut props);
// let name = name
// .replace("@", "")
// .replace("type", "r#type")
// .to_case(Case::Snake);
// //schema_hash.insert(name.clone(),schema_vec);
// format!("\t{}:\tOption<{}>,\n",name,props.string)
// },
// // This reference needs to pull the schema properties in, not just link
// // Need to have a hash of all schemas to pull in
// ReferenceOr::Reference { reference } => {
// let (_,split_ref) = reference.rsplit_once("/").unwrap();
// // Need to pull in referenced schema
// //uses.push_str(reference_to_uses(split_ref.to_string()).as_str());
// let mut out = format!("\t//Pull in this schema:\t{}",split_ref);
// let vec = schema_hash.get(split_ref);
// match vec {
// Some(v) => {
// outer_vec.append(v.clone().as_mut());
// for val in v {
// // out.push_str("// Entry");
// out.push_str(val.as_str());
// }
// },
// None => {
// out.push_str("\n\t// Vec was empty");
// }
// }
// out
// }
// }.as_str());
// }
// schema_hash.insert(name,outer_vec);
// out.push_str("\n}\n");
// format!("\n// Uses\n{}\n{}",mod_uses(uses.uses),out)
// }
// fn schema_not(name : String, _not: Box<ReferenceOr<Schema>>) -> String {
// format!("// Kind Not not implemented for {}\n",name)
// }
// fn schema_oneof(name : String, oneof : Vec<ReferenceOr<Schema>>) -> String {
// let mut out = String::default();
// out.push_str("// Generated Enum\n");
// for e in oneof.into_iter() {
// match e {
// ReferenceOr::Item(_i) => {
// out.push_str("// OneOf Reference")
// },
// ReferenceOr::Reference { reference } => {
// // Not sure how to manage a reference inside an enum
// }
// }
// }
// out.push_str(format!("pub enum {} {{\n }}\n",name).as_str());
// format!("// Kind OneOf not implemented for {}\n",name)
// }
// fn mod_uses(uses : Option<Vec<String>>) -> String {
// let mut out = String::default();
// out.push_str(format!("use serde::{{Deserialize,Serialize}};\n\n").as_str());
// match uses {
// Some(mut u) => {
// // Need to ensure we don't repeat ourselves
// u.sort();
// u.dedup();
// for uses in u.into_iter() {
// out.push_str(&reference_to_uses(uses).as_str());
// }
// },
// None => (),
// };
// out
// }
// fn generate_schema_mod(name : String, schema : Option<Schema>,schema_hash : &mut HashMap<String,Vec<String>>,mode : BuildMode) -> String {
// // Take schema name and schema and generate the Rust code
// let mut out = String::default();
// // First, determine if we have a struct or an enum
// match schema {
// Some(s) => {
// // We have a schema, we can convert to string
// match mode {
// BuildMode::FullBuild => {
// out.push_str(format!("//! Generated Module: {}\n",name).as_str());
// out.push_str(schema_description(&s).as_str());
// out.push_str(schema_kind(name.clone(),s.schema_kind.clone(),schema_hash,mode).as_str());
// },
// BuildMode::HashOnly => {
// let _ = schema_kind(name.clone(),s.schema_kind.clone(),schema_hash,mode);
// }
// }
// },
// None => {
// out.push_str("//! Empty Module\n")
// },
// };
// out
// }