Skip to content
Snippets Groups Projects

ENH: JsonSchemaExporter accepts do_not_create parameter.

Merged Florian Spreckelsen requested to merge release-v0.9.0 into main
2 files
+ 32
34
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -46,8 +46,9 @@ from typing import List, Optional
from warnings import warn
import jsonschema
import caosdb as db
import linkahead as db
from linkahead.common.datatype import get_list_datatype
from .data_model import CAOSDB_INTERNAL_PROPERTIES, DataModel
# Keywords which are allowed in data model descriptions.
@@ -82,23 +83,6 @@ JSON_SCHEMA_ATOMIC_TYPES = [
]
def _get_listdatatype(dtype):
"""matches a string to check whether the type definition is a list
returns the type within the list or None, if it cannot be matched with a
list definition
"""
# TODO: string representation should be the same as used by the server:
# e.g. LIST<TEXT>
# this should be changed in the module and the old behavour should be
# marked as depricated
match = re.match(r"^LIST[(<](?P<dt>.*)[)>]$", dtype)
if match is None:
return None
else:
return match.group("dt")
# Taken from https://stackoverflow.com/a/53647080, CC-BY-SA, 2018 by
# https://stackoverflow.com/users/2572431/augurar
@@ -412,8 +396,8 @@ debug : bool, optional
# is it a property
and "datatype" in definition
# but not simply an RT of the model
and not (_get_listdatatype(definition["datatype"]) == name and
_get_listdatatype(definition["datatype"]) in self.model)):
and not (get_list_datatype(definition["datatype"]) == name and
get_list_datatype(definition["datatype"]) in self.model)):
# and create the new property
self.model[name] = db.Property(name=name,
@@ -499,9 +483,9 @@ debug : bool, optional
n = self._stringify(n)
if isinstance(e, dict):
if "datatype" in e and _get_listdatatype(e["datatype"]) is not None:
if "datatype" in e and get_list_datatype(e["datatype"]) is not None:
# Reuse the existing datatype for lists.
datatype = db.LIST(_get_listdatatype(e["datatype"]))
datatype = db.LIST(get_list_datatype(e["datatype"]))
else:
# Ignore a possible e["datatype"] here if it's not a list
# since it has been treated in the definition of the
@@ -523,6 +507,9 @@ debug : bool, optional
def _inherit(self, name, prop, inheritance):
if not isinstance(prop, list):
if isinstance(prop, str):
raise YamlDefinitionError(
f"Parents must be a list but is given as string: {name} > {prop}")
raise YamlDefinitionError("Parents must be a list, error in line {}".format(
prop["__line__"]))
@@ -640,19 +627,19 @@ debug : bool, optional
dtype = value.datatype
is_list = False
try:
if _get_listdatatype(value.datatype) is not None:
dtype = _get_listdatatype(value.datatype)
is_list = True
except TypeError as err:
err.args = (*err.args, f"yaml line: {value.__dict__.get('__line__')}")
raise(err)
if dtype in self.model:
if get_list_datatype(dtype) is not None:
dtype = get_list_datatype(dtype)
is_list = True
dtype_name = dtype
if not isinstance(dtype_name, str):
dtype_name = dtype.name
if dtype_name in self.model:
if is_list:
value.datatype = db.LIST(self.model[dtype])
value.datatype = db.LIST(self.model[dtype_name])
else:
value.datatype = self.model[dtype]
value.datatype = self.model[dtype_name]
continue
@@ -674,7 +661,7 @@ debug : bool, optional
continue
raise ValueError("Property {} has an unknown datatype: {}".format(
value.name, value.datatype))
value.name, dtype_name))
def _set_recordtypes(self):
""" properties are defined in first iteration; set remaining as RTs """
Loading