06000db634aac62d3b4fa24586416735a9788e67
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / MissingSchemaException.java
1 /*
2  * Copyright (c) 2015 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.mdsal.binding.dom.codec.impl;
9
10 import com.google.common.base.Preconditions;
11 import java.util.Set;
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
14 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
15 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
16
17 /**
18  * Thrown when codec was used with data which are not modeled and available in schema used by codec.
19  */
20 public class MissingSchemaException extends IllegalArgumentException {
21
22     private static final long serialVersionUID = 1L;
23
24     protected MissingSchemaException(final String msg) {
25         super(msg);
26     }
27
28     protected MissingSchemaException(final String msg, final Throwable cause) {
29         super(msg, cause);
30     }
31
32     private static MissingSchemaException create(final String format, final Object... args) {
33         return new MissingSchemaException(String.format(format, args));
34     }
35
36     static void checkModulePresent(final SchemaContext schemaContext, final QName name) {
37         if(schemaContext.findModuleByNamespaceAndRevision(name.getNamespace(), name.getRevision()) == null) {
38             throw MissingSchemaException.create("Module %s is not present in current schema context.",name.getModule());
39         }
40     }
41
42     static void checkModulePresent(final SchemaContext schemaContext, final YangInstanceIdentifier.PathArgument child) {
43         checkModulePresent(schemaContext, extractName(child));
44     }
45
46     private static QName extractName(final PathArgument child) {
47         if(child instanceof YangInstanceIdentifier.AugmentationIdentifier) {
48             final Set<QName> children = ((YangInstanceIdentifier.AugmentationIdentifier) child).getPossibleChildNames();
49             Preconditions.checkArgument(!children.isEmpty(),"Augmentation without childs must not be used in data");
50             return children.iterator().next();
51         }
52         return child.getNodeType();
53     }
54 }