X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-data-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fdata%2Fimpl%2Fschema%2Ftree%2FSchemaAwareApplyOperation.java;h=a511ddf064b719cb1c0f1320b6da2ec21b98e959;hb=f3a3253eb4a5033515898723fcee5a9819135729;hp=1f33b7c7a7e2d4a528421a7343bc40d7c1ad7ff6;hpb=18377991e7595852d84c3e594153640d7eb2774d;p=yangtools.git diff --git a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/SchemaAwareApplyOperation.java b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/SchemaAwareApplyOperation.java index 1f33b7c7a7..a511ddf064 100644 --- a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/SchemaAwareApplyOperation.java +++ b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/SchemaAwareApplyOperation.java @@ -16,7 +16,6 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.Augmentat import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; import org.opendaylight.yangtools.yang.data.api.schema.tree.ConflictingModificationAppliedException; import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException; -import org.opendaylight.yangtools.yang.data.api.schema.tree.IncorrectDataStructureException; import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType; import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType; import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.TreeNode; @@ -36,16 +35,17 @@ import org.slf4j.LoggerFactory; abstract class SchemaAwareApplyOperation extends ModificationApplyOperation { private static final Logger LOG = LoggerFactory.getLogger(SchemaAwareApplyOperation.class); - static SchemaAwareApplyOperation from(final ContainerSchemaNode schemaNode, final TreeType treeType) { - return new ContainerModificationStrategy(schemaNode, treeType); - } - - public static SchemaAwareApplyOperation from(final DataSchemaNode schemaNode, final TreeType treeType) { - if(treeType == TreeType.CONFIGURATION) { + public static ModificationApplyOperation from(final DataSchemaNode schemaNode, final TreeType treeType) { + if (treeType == TreeType.CONFIGURATION) { Preconditions.checkArgument(schemaNode.isConfiguration(), "Supplied %s does not belongs to configuration tree.", schemaNode.getPath()); } if (schemaNode instanceof ContainerSchemaNode) { - return new ContainerModificationStrategy((ContainerSchemaNode) schemaNode, treeType); + final ContainerSchemaNode containerSchema = (ContainerSchemaNode) schemaNode; + if (containerSchema.isPresenceContainer()) { + return new PresenceContainerModificationStrategy(containerSchema, treeType); + } else { + return new StructuralContainerModificationStrategy(containerSchema, treeType); + } } else if (schemaNode instanceof ListSchemaNode) { return fromListSchemaNode((ListSchemaNode) schemaNode, treeType); } else if (schemaNode instanceof ChoiceSchemaNode) { @@ -168,8 +168,8 @@ abstract class SchemaAwareApplyOperation extends ModificationApplyOperation { checkNotConflicting(path, original.get(), current.get()); } else if(original.isPresent()) { throw new ConflictingModificationAppliedException(path,"Node was deleted by other transaction."); - } else if(current.isPresent()) { - throw new ConflictingModificationAppliedException(path,"Node was created by other transaction."); + } else if (current.isPresent()) { + throw new ConflictingModificationAppliedException(path, "Node was created by other transaction."); } } @@ -202,7 +202,7 @@ abstract class SchemaAwareApplyOperation extends ModificationApplyOperation { // This is a slight optimization: a merge on a non-existing node equals to a write if (currentMeta.isPresent()) { - result = applyMerge(modification,currentMeta.get(), version); + result = applyMerge(modification, currentMeta.get(), version); } else { modification.resolveModificationType(ModificationType.WRITE); result = applyWrite(modification, currentMeta, version); @@ -260,16 +260,14 @@ abstract class SchemaAwareApplyOperation extends ModificationApplyOperation { final Optional current) throws DataValidationFailedException; /** - * Checks if supplied schema node belong to specified Data Tree type. + * Checks if supplied schema node belong to specified Data Tree type. All nodes belong to the operational tree, + * nodes in configuration tree are marked as such. * * @param treeType Tree Type * @param node Schema node * @return */ static boolean belongsToTree(final TreeType treeType, final DataSchemaNode node) { - if(treeType == TreeType.CONFIGURATION) { - return node.isConfiguration(); - } - return true; + return treeType == TreeType.OPERATIONAL || node.isConfiguration(); } }