import 'package:flutter_flow_chart/flutter_flow_chart.dart'; import 'package:oc_front/models/abstract.dart'; const List _emptyComputing = []; const List _emptyData = []; const List _emptyDataCenter = []; const List _emptyStorage = []; class Search extends SerializerDeserializer { Search({ this.computing = _emptyComputing, this.datacenter = _emptyDataCenter, this.data = _emptyData, this.storage = _emptyStorage, }); List computing; List datacenter; List data; List storage; @override deserialize(dynamic json) { json = json as Map; return Search( computing: json.containsKey("processing") ? fromListJson(json["processing"], ProcessingItem()) : [], datacenter: json.containsKey("datacenter") ? fromListJson(json["datacenter"], DataCenterItem()) : [], data: json.containsKey("data") ? fromListJson(json["data"], DataItem()) : [], storage: json.containsKey("storage") ? fromListJson(json["storage"], StorageItem()) : [], ); } @override Map serialize() => { "processing": toListJson(computing), "datacenter": toListJson(datacenter), "data": toListJson(data), "storage": toListJson(storage), }; } const List _empty = []; class Resource implements SerializerDeserializer { List datas = []; List processings = []; List storages = []; List datacenters = []; List workflows = []; Resource({ this.datas = const [], this.processings = const [], this.storages = const [], this.datacenters = const [], this.workflows = const [], }); @override Resource deserialize(json) { try { json = json as Map; } catch (e) { return Resource(); } return Resource( datacenters: json.containsKey("datacenter_resource") ? fromListJson(json["datacenter_resource"], DataCenterItem()) : [], datas: json.containsKey("data_resource") ? fromListJson(json["data_resource"], DataItem()) : [], processings: json.containsKey("processing_resource") ? fromListJson(json["processing_resource"], ProcessingItem()) : [], storages: json.containsKey("storage_resource") ? fromListJson(json["storage_resource"], StorageItem()) : [], workflows: json.containsKey("workflow_resource") ? fromListJson(json["workflow_resource"], WorkflowItem()) : [], ); } @override Map serialize() { return { "datacenter_resource": toListJson(datacenters), "data_resource": toListJson(datas), "processing_resource": toListJson(processings), "storage_resource": toListJson(storages), "workflow_resource": toListJson(workflows), }; } } abstract class AbstractItem extends FlowData implements SerializerDeserializer { String? id; String? name; String? logo; String? owner; String? ownerLogo; String? source; String? description; String? shortDescription; double? price; String? licence; List inputs = []; List outputs = []; ResourceModel? model; String topic = ""; AbstractItem({ this.id, this.name, this.logo, this.owner, this.ownerLogo, this.price, this.source, this.licence, this.description, this.model, this.shortDescription, this.inputs = const [], this.outputs = const [], }); @override String getID() { return id ?? ""; } @override String getName() { return name ?? ""; } } class Model extends SerializerDeserializer { dynamic value; String? type; bool readonly = false; Model({ this.value, this.type, this.readonly = false, }); @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return Model(); } return Model( value: json.containsKey("value") ? json["value"] : null, type: json.containsKey("type") ? json["type"] : null, readonly: json.containsKey("readonly") ? json["readonly"] : false, ); } @override Map serialize() => { "value": value, "type": type, "readonly": readonly, }; } class ResourceModel extends SerializerDeserializer { String? id; String? type; Map? model; ResourceModel({ this.id, this.type, this.model, }); @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return ResourceModel(); } return ResourceModel( id: json.containsKey("id") ? json["id"] : null, type: json.containsKey("type") ? json["type"] : null, model: json.containsKey("model") ? fromMapJson(json["model"], Model()) : {}, ); } @override Map serialize() => { "id": id, "type": type, "model": toMapJson(model ?? {}), }; } Type? getTopicType(String topic) { if (topic == "processing") { return ProcessingItem; } else if (topic == "data") { return DataItem; } else if (topic == "datacenter") { return DataCenterItem; } else if (topic == "storage") { return StorageItem; } else if (topic == "workflow") { return WorkflowItem; } else { return null; } } String getTopic(Type type) { if (type == AbstractItem) { return "resource"; } if (type == ProcessingItem) { return "processing"; } if (type == DataItem) { return "data"; } if (type == DataCenterItem) { return "datacenter"; } if (type == StorageItem) { return "storage"; } if (type == WorkflowItem) { return "workflow"; } return ""; } bool isComputing(String topic) => topic == "processing"; bool isData(String topic) => topic == "data"; bool isDataCenter(String topic) => topic == "datacenter"; bool isStorage(String topic) => topic == "storage"; bool isWorkflow(String topic) => topic == "workflow"; class ProcessingItem extends SerializerDeserializer implements AbstractItem { ProcessingItem({ this.id, this.name, this.logo, this.owner, this.ownerLogo, this.price, this.source, this.licence, this.description, this.shortDescription, this.inputs = _empty, this.outputs = _empty, this.cpus = const [], this.gpus = const [], this.ram, this.storage, this.parrallel = false, this.scallingModel, this.diskIO, this.model, }); @override ResourceModel? model; @override String? id; @override String? name; @override String? logo; @override String? source; @override String? ownerLogo; @override String? owner; @override String topic = "processing"; @override double? price; @override String? licence; @override List inputs; @override List outputs; @override String? description; @override String? shortDescription; // Special Attributes List cpus = []; List gpus = []; RAM? ram; int? storage; bool parrallel = false; int? scallingModel; String? diskIO; @override String getID() { return id ?? ""; } @override String getName() { return name ?? ""; } @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return ProcessingItem(); } return ProcessingItem( id: json.containsKey("id") ? json["id"] : null, name: json.containsKey("name") ? json["name"] : null, logo: json.containsKey("logo") ? json["logo"] : null, owner: json.containsKey("owner") ? json["owner"] : null, ownerLogo: json.containsKey("owner_logo") ? json["owner_logo"] : null, price: json.containsKey("price") ? json["price"]?.toDouble() : null, licence: json.containsKey("licence") ? json["licence"] : null, description: json.containsKey("description") ? json["description"] : null, shortDescription: json.containsKey("short_description") ? json["short_description"] : null, inputs: json["inputs"] ?? [], outputs: json["outputs"] ?? [], source: json.containsKey("source") ? json["source"] : null, model: json.containsKey("resource_model") ? ResourceModel().deserialize(json["resource_model"]) : null, cpus: json.containsKey("cpus") ? fromListJson(json["cpus"], CPU()) : [], gpus: json.containsKey("gpus") ? fromListJson(json["gpus"], GPU()) : [], ram: json.containsKey("ram") ? RAM().deserialize(json["ram"]) : null, storage: json.containsKey("storage") ? json["storage"] : null, parrallel: json.containsKey("parrallel") ? json["parrallel"] : false, scallingModel: json.containsKey("scalling_model") ? json["scalling_model"] : null, diskIO: json.containsKey("disk_io") ? json["disk_io"] : null, ); } @override Map serialize() => { "id": id, "name": name, "logo": logo, "owner": owner, "owner_logo": ownerLogo, "price": price, "licence": licence, "description": description, "short_description": shortDescription, "inputs": inputs, "outputs": outputs, "source": source, "resource_model": model?.serialize(), "cpus": toListJson(cpus), "gpus": toListJson(gpus), "ram": ram?.serialize(), "storage": storage, "parrallel": parrallel, "scalling_model": scallingModel, "disk_io": diskIO, }; } class WorkflowItem extends SerializerDeserializer implements AbstractItem { WorkflowItem({ this.id, this.name, this.logo, this.owner, this.ownerLogo, this.price, this.source, this.licence, this.description, this.shortDescription, this.inputs = _empty, this.outputs = _empty, this.model, this.workflowID, }); @override ResourceModel? model; @override String? id; @override String? name; @override String? logo; @override String? source; @override String? ownerLogo; @override String? owner; @override String topic = "workflow"; @override double? price; @override String? licence; @override List inputs; @override List outputs; @override String? description; @override String? shortDescription; String? workflowID; @override String getID() { return id ?? ""; } @override String getName() { return name ?? ""; } @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return WorkflowItem(); } return WorkflowItem( id: json.containsKey("id") ? json["id"] : null, name: json.containsKey("name") ? json["name"] : null, logo: json.containsKey("logo") ? json["logo"] : null, owner: json.containsKey("owner") ? json["owner"] : null, ownerLogo: json.containsKey("owner_logo") ? json["owner_logo"] : null, price: json.containsKey("price") ? json["price"]?.toDouble() : null, licence: json.containsKey("licence") ? json["licence"] : null, description: json.containsKey("description") ? json["description"] : null, shortDescription: json.containsKey("short_description") ? json["short_description"] : null, inputs: json["inputs"] ?? [], outputs: json["outputs"] ?? [], source: json.containsKey("source") ? json["source"] : null, model: json.containsKey("resource_model") ? ResourceModel().deserialize(json["resource_model"]) : null, workflowID: json.containsKey("workflow_id") ? json["workflow_id"] : null, ); } @override Map serialize() => { "id": id, "name": name, "logo": logo, "owner": owner, "owner_logo": ownerLogo, "price": price, "licence": licence, "description": description, "short_description": shortDescription, "inputs": inputs, "outputs": outputs, "source": source, "resource_model": model?.serialize(), "workflow_id": workflowID, }; } class DataItem extends SerializerDeserializer implements AbstractItem { DataItem({ this.id, this.name, this.logo, this.owner, this.ownerLogo, this.price, this.source, this.licence, this.description, this.shortDescription, this.inputs = _empty, this.outputs = _empty, this.model, this.protocols = const [], this.dataType, this.exemple, }); @override String? id; @override String? name; @override String? logo; @override String? source; @override String? ownerLogo; @override String? owner; @override String topic = "data"; @override double? price; @override String? licence; @override List inputs; @override List outputs; @override String? description; @override String? shortDescription; @override ResourceModel? model; // Special Attributes List protocols = []; String? dataType; String? exemple; @override String getName() { return name ?? ""; } @override String getID() { return id ?? ""; } @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return DataItem(); } return DataItem( id: json.containsKey("id") ? json["id"] : null, name: json.containsKey("name") ? json["name"] : null, logo: json.containsKey("logo") ? json["logo"] : null, owner: json.containsKey("owner") ? json["owner"] : null, ownerLogo: json.containsKey("owner_logo") ? json["owner_logo"] : null, price: json.containsKey("price") ? json["price"]?.toDouble() : null, licence: json.containsKey("licence") ? json["licence"] : null, description: json.containsKey("description") ? json["description"] : null, shortDescription: json.containsKey("short_description") ? json["short_description"] : null, inputs: json["inputs"] ?? [], outputs: json["outputs"] ?? [], source: json.containsKey("source") ? json["source"] : null, model: json.containsKey("resource_model") ? ResourceModel().deserialize(json["resource_model"]) : null, protocols: json.containsKey("protocols") ? json["protocols"] : [], dataType: json.containsKey("data_type") ? json["data_type"] : null, exemple: json.containsKey("exemple") ? json["exemple"] : null, ); } @override Map serialize() => { "id": id, "name": name, "logo": logo, "owner": owner, "owner_logo": ownerLogo, "price": price, "licence": licence, "description": description, "short_description": shortDescription, "inputs": inputs, "outputs": outputs, "source": source, "resource_model": model?.serialize(), "protocols": protocols, "data_type": dataType, "exemple": exemple, }; } class DataCenterItem extends SerializerDeserializer implements AbstractItem { DataCenterItem({ this.id, this.name, this.logo, this.owner, this.ownerLogo, this.price, this.source, this.licence, this.description, this.shortDescription, this.inputs = _empty, this.outputs = _empty, this.model, this.cpus = const [], this.gpus = const [], this.ram, }); @override String? id; @override String? name; @override String? logo; @override String? source; @override String? ownerLogo; @override String? owner; @override String topic = "datacenter"; @override double? price; @override String? licence; @override List inputs; @override List outputs; @override String? description; @override String? shortDescription; @override ResourceModel? model; // Special Attributes List cpus = []; List gpus = []; RAM? ram; @override String getID() { return id ?? ""; } @override String getName() { return name ?? ""; } @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return DataCenterItem(); } return DataCenterItem( id: json.containsKey("id") ? json["id"] : null, name: json.containsKey("name") ? json["name"] : null, logo: json.containsKey("logo") ? json["logo"] : null, owner: json.containsKey("owner") ? json["owner"] : null, ownerLogo: json.containsKey("owner_logo") ? json["owner_logo"] : null, price: json.containsKey("price") ? json["price"]?.toDouble() : null, licence: json.containsKey("licence") ? json["licence"] : null, description: json.containsKey("description") ? json["description"] : null, shortDescription: json.containsKey("short_description") ? json["short_description"] : null, inputs: json["inputs"] ?? [], outputs: json["outputs"] ?? [], source: json.containsKey("source") ? json["source"] : null, model: json.containsKey("resource_model") ? ResourceModel().deserialize(json["resource_model"]) : null, cpus: json.containsKey("cpus") ? fromListJson(json["cpus"], CPU()) : [], gpus: json.containsKey("gpus") ? fromListJson(json["gpus"], GPU()) : [], ram: json.containsKey("ram") ? RAM().deserialize(json["ram"]) : null, ); } @override Map serialize() => { "id": id, "name": name, "logo": logo, "owner": owner, "owner_logo": ownerLogo, "price": price, "licence": licence, "description": description, "short_description": shortDescription, "inputs": inputs, "outputs": outputs, "source": source, "resource_model": model?.serialize(), "cpus": toListJson(cpus), "gpus": toListJson(gpus), "ram": ram?.serialize(), }; } class CPU extends SerializerDeserializer { CPU({ this.cores, this.platform, this.architecture, this.minimumMemory, this.shared = false, }); double? cores; String? platform; bool shared = false; String? architecture; double? minimumMemory; @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return CPU(); } return CPU( cores: json.containsKey("cores") ? json["cores"]?.toDouble() : null, platform: json.containsKey("platform") ? json["platform"] : null, architecture: json.containsKey("architecture") ? json["architecture"] : null, minimumMemory: json.containsKey("minimumMemory") ? json["minimumMemory"]?.toDouble() : null, shared: json.containsKey("shared") ? json["shared"] : false, ); } @override Map serialize() => { "cores": cores, "platform": platform, "architecture": architecture, "minimumMemory": minimumMemory, "shared": shared, }; } class GPU extends SerializerDeserializer { GPU({ this.cudaCores, this.memory, this.model, this.tensorCores, }); double? cudaCores; double? memory; String? model; double? tensorCores; @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return GPU(); } return GPU( cudaCores: json.containsKey("cuda_cores") ? json["cuda_cores"]?.toDouble() : null, memory: json.containsKey("memory") ? json["memory"]?.toDouble() : null, model: json.containsKey("model") ? json["model"] : null, tensorCores: json.containsKey("tensor_cores") ? json["tensor_cores"]?.toDouble() : null, ); } @override Map serialize() => { "cuda_cores": cudaCores, "memory": memory, "model": model, "tensor_cores": tensorCores, }; } class RAM extends SerializerDeserializer { RAM({ this.ecc = false, this.size, }); bool ecc = false; double? size; @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return RAM(); } return RAM( ecc: json.containsKey("ecc") ? json["ecc"] : false, size: json.containsKey("size") ? json["size"]?.toDouble() : null, ); } @override Map serialize() => { "ecc": ecc, "size": size, }; } class StorageItem extends SerializerDeserializer implements AbstractItem { StorageItem({ this.id, this.name, this.logo, this.owner, this.ownerLogo, this.price, this.source, this.licence, this.description, this.shortDescription, this.inputs = _empty, this.outputs = _empty, this.acronym, this.type, this.size, this.url, this.encryption = false, this.redundancy, this.throughput, this.model, }); @override String? id; @override String? name; @override String? logo; @override String? source; @override String? ownerLogo; @override String? owner; @override String topic = "storage"; @override double? price; @override String? licence; @override List inputs; @override List outputs; @override String? description; @override String? shortDescription; @override ResourceModel? model; // special attributes String? acronym; String? type; int? size; String? url; bool encryption = false; String? redundancy; String? throughput; @override String getName() { return name ?? ""; } @override String getID() { return id ?? ""; } @override deserialize(dynamic json) { try { json = json as Map; } catch (e) { return StorageItem(); } return StorageItem( id: json.containsKey("id") ? json["id"] : null, name: json.containsKey("name") ? json["name"] : null, logo: json.containsKey("logo") ? json["logo"] : null, owner: json.containsKey("owner") ? json["owner"] : null, ownerLogo: json.containsKey("owner_logo") ? json["owner_logo"] : null, price: json.containsKey("price") ? json["price"]?.toDouble() : null, licence: json.containsKey("licence") ? json["licence"] : null, description: json.containsKey("description") ? json["description"] : null, shortDescription: json.containsKey("short_description") ? json["short_description"] : null, inputs: json["inputs"] ?? [], outputs: json["outputs"] ?? [], source: json.containsKey("source") ? json["source"] : null, model: json.containsKey("resource_model") ? ResourceModel().deserialize(json["resource_model"]) : null, acronym: json.containsKey("acronym") ? json["acronym"] : null, type: json.containsKey("type") ? json["type"] : null, size: json.containsKey("size") ? json["size"] : null, url: json.containsKey("url") ? json["url"] : null, encryption: json.containsKey("encryption") ? json["encryption"] : false, redundancy: json.containsKey("redundancy") ? json["redundancy"] : null, throughput: json.containsKey("throughput") ? json["throughput"] : null, ); } @override Map serialize() => { "id": id, "name": name, "logo": logo, "owner": owner, "owner_logo": ownerLogo, "price": price, "licence": licence, "description": description, "short_description": shortDescription, "inputs": inputs, "outputs": outputs, "source": source, "resource_model": model?.serialize(), "acronym": acronym, "type": type, "size": size, "url": url, "encryption": encryption, "redundancy": redundancy, "throughput": throughput, }; }