XmlGlobalAssemblyDefinition.java
/*
* SPDX-FileCopyrightText: none
* SPDX-License-Identifier: CC0-1.0
*/
package gov.nist.secauto.metaschema.core.model.xml.impl;
import gov.nist.secauto.metaschema.core.datatype.markup.MarkupLine;
import gov.nist.secauto.metaschema.core.datatype.markup.MarkupMultiline;
import gov.nist.secauto.metaschema.core.model.AbstractGlobalAssemblyDefinition;
import gov.nist.secauto.metaschema.core.model.IAssemblyInstance;
import gov.nist.secauto.metaschema.core.model.IAssemblyInstanceAbsolute;
import gov.nist.secauto.metaschema.core.model.IAttributable;
import gov.nist.secauto.metaschema.core.model.IChoiceGroupInstance;
import gov.nist.secauto.metaschema.core.model.IChoiceInstance;
import gov.nist.secauto.metaschema.core.model.IContainerFlagSupport;
import gov.nist.secauto.metaschema.core.model.IContainerModelAssemblySupport;
import gov.nist.secauto.metaschema.core.model.IFieldInstanceAbsolute;
import gov.nist.secauto.metaschema.core.model.IFlagInstance;
import gov.nist.secauto.metaschema.core.model.IModelInstanceAbsolute;
import gov.nist.secauto.metaschema.core.model.INamedModelInstanceAbsolute;
import gov.nist.secauto.metaschema.core.model.IResourceLocation;
import gov.nist.secauto.metaschema.core.model.constraint.AssemblyConstraintSet;
import gov.nist.secauto.metaschema.core.model.constraint.IModelConstrained;
import gov.nist.secauto.metaschema.core.model.xml.xmlbeans.GlobalAssemblyDefinitionType;
import gov.nist.secauto.metaschema.core.model.xml.xmlbeans.UseNameType;
import gov.nist.secauto.metaschema.core.util.CollectionUtil;
import gov.nist.secauto.metaschema.core.util.ObjectUtils;
import java.util.Map;
import java.util.Set;
import edu.umd.cs.findbugs.annotations.NonNull;
import nl.talsmasoftware.lazy4j.Lazy;
@SuppressWarnings("PMD.CouplingBetweenObjects")
class XmlGlobalAssemblyDefinition
extends AbstractGlobalAssemblyDefinition<
XmlModule,
IAssemblyInstance,
IFlagInstance,
IModelInstanceAbsolute,
INamedModelInstanceAbsolute,
IFieldInstanceAbsolute,
IAssemblyInstanceAbsolute,
IChoiceInstance,
IChoiceGroupInstance>
implements IXmlObjectBinding {
@NonNull
private final GlobalAssemblyDefinitionType xmlAssembly;
@NonNull
private final Lazy<IContainerFlagSupport<IFlagInstance>> flagContainer;
@NonNull
private final Lazy<IContainerModelAssemblySupport<
IModelInstanceAbsolute,
INamedModelInstanceAbsolute,
IFieldInstanceAbsolute,
IAssemblyInstanceAbsolute,
IChoiceInstance,
IChoiceGroupInstance>> modelContainer;
@NonNull
private final Lazy<IModelConstrained> constraints;
/**
* Constructs a new global assembly definition from an XML representation bound
* to Java objects.
*
* @param xmlObject
* the XML representation bound to Java objects
* @param module
* the containing Metaschema module
*/
public XmlGlobalAssemblyDefinition(
@NonNull GlobalAssemblyDefinitionType xmlObject,
@NonNull XmlModule module) {
super(module);
this.xmlAssembly = xmlObject;
this.flagContainer = ObjectUtils.notNull(Lazy.lazy(() -> XmlFlagContainerSupport.newInstance(xmlObject, this)));
this.modelContainer = ObjectUtils.notNull(
Lazy.lazy(() -> XmlAssemblyModelContainerSupport.of(xmlObject.getModel(), this)));
this.constraints = ObjectUtils.notNull(Lazy.lazy(() -> {
IModelConstrained retval = new AssemblyConstraintSet();
if (xmlObject.isSetConstraint()) {
ConstraintXmlSupport.parse(retval, ObjectUtils.notNull(xmlObject.getConstraint()), module.getSource());
}
return retval;
}));
}
@Override
public IContainerFlagSupport<IFlagInstance> getFlagContainer() {
return ObjectUtils.notNull(flagContainer.get());
}
@Override
public IContainerModelAssemblySupport<
IModelInstanceAbsolute,
INamedModelInstanceAbsolute,
IFieldInstanceAbsolute,
IAssemblyInstanceAbsolute,
IChoiceInstance,
IChoiceGroupInstance> getModelContainer() {
return ObjectUtils.notNull(modelContainer.get());
}
@Override
public IModelConstrained getConstraintSupport() {
return ObjectUtils.notNull(constraints.get());
}
// ----------------------------------------
// - Start XmlBeans driven code - CPD-OFF -
// ----------------------------------------
/**
* Get the underlying XML data.
*
* @return the underlying XML data
*/
@Override
@NonNull
public GlobalAssemblyDefinitionType getXmlObject() {
return xmlAssembly;
}
@Override
public IResourceLocation getLocation(Object itemValue) {
return null;
}
@Override
public String getName() {
return ObjectUtils.requireNonNull(getXmlObject().getName());
}
@Override
public Integer getIndex() {
return getXmlObject().isSetIndex() ? getXmlObject().getIndex().intValue() : null;
}
@Override
public String getUseName() {
return getXmlObject().isSetUseName() ? getXmlObject().getUseName().getStringValue() : null;
}
@Override
public Integer getUseIndex() {
Integer retval = null;
if (getXmlObject().isSetUseName()) {
UseNameType useName = getXmlObject().getUseName();
if (useName.isSetIndex()) {
retval = useName.getIndex().intValue();
}
}
return retval;
}
@Override
public String getFormalName() {
return getXmlObject().isSetFormalName() ? getXmlObject().getFormalName() : null;
}
@SuppressWarnings("null")
@Override
public MarkupLine getDescription() {
return getXmlObject().isSetDescription() ? MarkupStringConverter.toMarkupString(getXmlObject().getDescription())
: null;
}
@Override
public Map<IAttributable.Key, Set<String>> getProperties() {
return ModelFactory.toProperties(CollectionUtil.listOrEmpty(getXmlObject().getPropList()));
}
@Override
public boolean isRoot() {
return getXmlObject().isSetRootName();
}
@Override
public String getRootName() {
return getXmlObject().isSetRootName() ? getXmlObject().getRootName().getStringValue() : null;
}
@Override
public Integer getRootIndex() {
Integer retval = null;
if (getXmlObject().isSetRootName()) {
GlobalAssemblyDefinitionType.RootName rootName = getXmlObject().getRootName();
if (rootName.isSetIndex()) {
retval = rootName.getIndex().intValue();
}
}
return retval;
}
@SuppressWarnings("null")
@Override
public ModuleScope getModuleScope() {
return getXmlObject().isSetScope() ? getXmlObject().getScope() : DEFAULT_MODULE_SCOPE;
}
@SuppressWarnings("null")
@Override
public MarkupMultiline getRemarks() {
return getXmlObject().isSetRemarks() ? MarkupStringConverter.toMarkupString(getXmlObject().getRemarks()) : null;
}
// -------------------------------------
// - End XmlBeans driven code - CPD-ON -
// -------------------------------------
}