942d02331f367b020e2bba420bd8b9d965d81b75
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableContainerNodeSchemaAwareBuilder.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.impl.schema.builder.impl;
9
10 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
11 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
12 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
13 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeAttrBuilder;
14 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.valid.DataNodeContainerValidator;
15 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
16
17 public final class ImmutableContainerNodeSchemaAwareBuilder extends ImmutableContainerNodeBuilder {
18
19     private final DataNodeContainerValidator validator;
20
21     private ImmutableContainerNodeSchemaAwareBuilder(final ContainerSchemaNode schema) {
22         this.validator = new DataNodeContainerValidator(schema);
23         super.withNodeIdentifier(new InstanceIdentifier.NodeIdentifier(schema.getQName()));
24     }
25
26     private ImmutableContainerNodeSchemaAwareBuilder(final ContainerSchemaNode schema, final ImmutableContainerNode node) {
27         super(node);
28         this.validator = new DataNodeContainerValidator(schema);
29         super.withNodeIdentifier(new InstanceIdentifier.NodeIdentifier(schema.getQName()));
30     }
31
32     public static DataContainerNodeAttrBuilder<InstanceIdentifier.NodeIdentifier, ContainerNode> create(final ContainerSchemaNode schema) {
33         return new ImmutableContainerNodeSchemaAwareBuilder(schema);
34     }
35
36     public static DataContainerNodeAttrBuilder<InstanceIdentifier.NodeIdentifier, ContainerNode> create(final ContainerSchemaNode schema, final ContainerNode node) {
37         if (!(node instanceof ImmutableContainerNode)) {
38             throw new UnsupportedOperationException(String.format("Cannot initialize from class %s", node.getClass()));
39         }
40         return new ImmutableContainerNodeSchemaAwareBuilder(schema, (ImmutableContainerNode)node);
41     }
42
43     @Override
44     public DataContainerNodeAttrBuilder<InstanceIdentifier.NodeIdentifier, ContainerNode> withNodeIdentifier(final InstanceIdentifier.NodeIdentifier nodeIdentifier) {
45         throw new UnsupportedOperationException("Node identifier created from schema");
46     }
47
48     @Override
49     public DataContainerNodeAttrBuilder<InstanceIdentifier.NodeIdentifier, ContainerNode> withChild(final DataContainerChild<?, ?> child) {
50         validator.validateChild(child.getIdentifier());
51         return super.withChild(child);
52     }
53
54     @Override
55     public ContainerNode build() {
56         // TODO check when statements... somewhere
57         return super.build();
58     }
59 }