use of org.mule.runtime.module.extension.internal.capability.xml.schema.model.TopLevelElement in project mule by mulesoft.
the class ExecutableTypeSchemaDelegate method generateNestedRouteElement.
private void generateNestedRouteElement(ExtensionType type, DslElementSyntax routeDsl, NestedRouteModel routeModel) {
NestedChainModel chain = (NestedChainModel) routeModel.getNestedComponents().get(0);
LocalComplexType complexType = builder.getObjectSchemaDelegate().createTypeExtension(MULE_ABSTRACT_EXTENSION_TYPE);
ExplicitGroup routeSequence = new ExplicitGroup();
complexType.getComplexContent().getExtension().setSequence(routeSequence);
generateNestedProcessorElement(complexType.getComplexContent().getExtension(), chain);
registerParameters(complexType.getComplexContent().getExtension(), routeModel.getAllParameterModels());
TopLevelElement routeElement = builder.createTopLevelElement(routeDsl.getElementName(), BigInteger.valueOf(routeModel.getMinOccurs()), MAX_ONE);
routeElement.setComplexType(complexType);
type.getSequence().getParticle().add(objectFactory.createElement(routeElement));
if (routeModel.getMinOccurs() > 0) {
type.getSequence().setMinOccurs(ONE);
}
}
use of org.mule.runtime.module.extension.internal.capability.xml.schema.model.TopLevelElement in project mule by mulesoft.
the class MapSchemaDelegate method generateMapComplexType.
private LocalComplexType generateMapComplexType(DslElementSyntax mapDsl, final ObjectType metadataType) {
final MetadataType valueType = metadataType.getOpenRestriction().get();
final LocalComplexType entryComplexType = new LocalComplexType();
final Attribute keyAttribute = builder.createAttribute(KEY_ATTRIBUTE_NAME, keyType, true, REQUIRED);
entryComplexType.getAttributeOrAttributeGroup().add(keyAttribute);
final LocalComplexType mapComplexType = new LocalComplexType();
final ExplicitGroup mapEntrySequence = new ExplicitGroup();
mapComplexType.setSequence(mapEntrySequence);
DslElementSyntax entryValueDsl = mapDsl.getGeneric(valueType).orElseThrow(() -> new IllegalArgumentException("Illegal DslSyntax definition of the given DictionaryType. The DslElementSyntax for the entry is required"));
final TopLevelElement mapEntryElement = new TopLevelElement();
mapEntryElement.setName(entryValueDsl.getElementName());
mapEntryElement.setMinOccurs(ZERO);
mapEntryElement.setMaxOccurs(UNBOUNDED);
valueType.accept(new MetadataTypeVisitor() {
/**
* For a Map with an {@link ObjectType} as value. The resulting {@link ComplexType} declares a sequence of either a
* {@code ref} or a {@code choice}.
* <p/>
* It creates an element {@code ref} to the concrete element whose {@code type} is the {@link ComplexType} associated to the
* {@code objectType}
* <p/>
* In the case of having a {@link DslElementSyntax#isWrapped wrapped} {@link ObjectType}, then a {@link ExplicitGroup
* Choice} group that can receive a {@code ref} to any subtype that this wrapped type might have, be it either a top-level
* element for the mule schema, or if it can only be declared as child of this element.
*
* If the map's value is another map, then a value attribute is created for the value map.
*
* @param objectType the item's type
*/
@Override
public void visitObject(ObjectType objectType) {
Optional<DslElementSyntax> containedElement = entryValueDsl.getContainedElement(VALUE_ATTRIBUTE_NAME);
if (isMap(objectType) || !containedElement.isPresent()) {
defaultVisit(objectType);
return;
}
final boolean shouldGenerateChildElement = containedElement.get().supportsChildDeclaration() || containedElement.get().isWrapped();
entryComplexType.getAttributeOrAttributeGroup().add(builder.createAttribute(VALUE_ATTRIBUTE_NAME, valueType, !shouldGenerateChildElement, SUPPORTED));
if (shouldGenerateChildElement) {
DslElementSyntax typeDsl = builder.getDslResolver().resolve(objectType).orElseThrow(() -> new IllegalArgumentException(format("The given type [%s] cannot be represented as a child element in Map entries", getId(objectType))));
if (typeDsl.isWrapped()) {
ExplicitGroup choice = builder.createTypeRefChoiceLocalOrGlobal(typeDsl, objectType, ZERO, UNBOUNDED);
entryComplexType.setChoice(choice);
} else {
ExplicitGroup singleItemSequence = new ExplicitGroup();
singleItemSequence.setMaxOccurs("1");
TopLevelElement mapItemElement = builder.createTypeRef(typeDsl, objectType, false);
singleItemSequence.getParticle().add(objectFactory.createElement(mapItemElement));
entryComplexType.setSequence(singleItemSequence);
}
}
}
@Override
public void visitArrayType(ArrayType arrayType) {
entryComplexType.getAttributeOrAttributeGroup().add(builder.createAttribute(VALUE_ATTRIBUTE_NAME, valueType, false, SUPPORTED));
entryComplexType.setSequence(new ExplicitGroup());
LocalComplexType itemComplexType = new LocalComplexType();
MetadataType itemType = arrayType.getType();
itemComplexType.getAttributeOrAttributeGroup().add(builder.createAttribute(VALUE_ATTRIBUTE_NAME, itemType, true, REQUIRED));
DslElementSyntax itemDsl = entryValueDsl.getGeneric(itemType).orElseThrow(() -> new IllegalArgumentException("Illegal DslSyntax definition of the given ArrayType. The DslElementSyntax for the item is required"));
TopLevelElement itemElement = builder.createTopLevelElement(itemDsl.getElementName(), ZERO, UNBOUNDED, itemComplexType);
entryComplexType.getSequence().getParticle().add(objectFactory.createElement(itemElement));
}
@Override
protected void defaultVisit(MetadataType metadataType) {
entryComplexType.getAttributeOrAttributeGroup().add(builder.createValueAttribute(valueType));
}
});
mapEntryElement.setComplexType(entryComplexType);
mapEntrySequence.getParticle().add(objectFactory.createElement(mapEntryElement));
return mapComplexType;
}
use of org.mule.runtime.module.extension.internal.capability.xml.schema.model.TopLevelElement in project mule by mulesoft.
the class MapSchemaDelegate method generateMapElement.
void generateMapElement(ObjectType metadataType, DslElementSyntax paramDsl, String description, boolean required, List<TopLevelElement> all) {
BigInteger minOccurs = required ? ONE : ZERO;
LocalComplexType mapComplexType = generateMapComplexType(paramDsl, metadataType);
TopLevelElement mapElement = builder.createTopLevelElement(paramDsl.getElementName(), minOccurs, MAX_ONE);
mapElement.setAnnotation(builder.createDocAnnotation(description));
mapElement.setComplexType(mapComplexType);
all.add(mapElement);
}
use of org.mule.runtime.module.extension.internal.capability.xml.schema.model.TopLevelElement in project mule by mulesoft.
the class ObjectTypeSchemaDelegate method addChildElementTypeExtension.
/**
* Adds a new {@link TopLevelElement element} to the {@link ExplicitGroup group} {@code all}
*/
private void addChildElementTypeExtension(QName base, String description, String name, boolean required, List<TopLevelElement> all) {
TopLevelElement objectElement = builder.createTopLevelElement(name, required ? ONE : ZERO, MAX_ONE);
objectElement.setAnnotation(builder.createDocAnnotation(description));
objectElement.setComplexType(createTypeExtension(base));
all.add(objectElement);
}
use of org.mule.runtime.module.extension.internal.capability.xml.schema.model.TopLevelElement in project mule by mulesoft.
the class ObjectTypeSchemaDelegate method addImportedTypeElement.
private void addImportedTypeElement(DslElementSyntax paramDsl, String description, MetadataType metadataType, List<TopLevelElement> all, boolean required) {
DslElementSyntax typeDsl = builder.getDslResolver().resolve(metadataType).orElseThrow(() -> new IllegalArgumentException(format("The given type [%s] is not eligible for Import", getId(metadataType))));
if (paramDsl.isWrapped()) {
TopLevelElement objectElement = builder.createTopLevelElement(paramDsl.getElementName(), ZERO, MAX_ONE);
objectElement.setComplexType(new LocalComplexType());
objectElement.setAnnotation(builder.createDocAnnotation(description));
if (typeDsl.isWrapped()) {
objectElement.getComplexType().setChoice(builder.createTypeRefChoiceLocalOrGlobal(typeDsl, metadataType, ZERO, UNBOUNDED));
} else {
ExplicitGroup sequence = new ExplicitGroup();
sequence.setMinOccurs(ONE);
sequence.setMaxOccurs(MAX_ONE);
QName refQName = new QName(paramDsl.getNamespace(), getAbstractElementName(typeDsl), paramDsl.getPrefix());
sequence.getParticle().add(objectFactory.createElement(builder.createRefElement(refQName, false)));
objectElement.getComplexType().setSequence(sequence);
}
all.add(objectElement);
} else {
QName extensionBase = new QName(typeDsl.getNamespace(), sanitizeName(getId(metadataType)), typeDsl.getPrefix());
addChildElementTypeExtension(extensionBase, description, paramDsl.getElementName(), !paramDsl.supportsAttributeDeclaration() && required, all);
}
}
Aggregations