Improve SchemaInferenceStack.enterSchemaTree()
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / PathExpressionImpl.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o.  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.model.util;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.base.MoreObjects.ToStringHelper;
13 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
14 import org.eclipse.jdt.annotation.NonNullByDefault;
15 import org.eclipse.jdt.annotation.Nullable;
16
17 /**
18  * A simple XPathExpression implementation.
19  *
20  * @deprecated Users are advised to supply their own implementation of PathExpression.
21  */
22 @Deprecated(forRemoval = true)
23 @NonNullByDefault
24 public final class PathExpressionImpl extends AbstractPathExpression {
25     private final @Nullable Steps steps;
26     private final boolean absolute;
27
28     @SuppressFBWarnings(value = "NP_STORE_INTO_NONNULL_FIELD", justification = "Non-grok on SpotBugs part")
29     public PathExpressionImpl(final String xpath, final boolean absolute) {
30         super(xpath);
31         this.absolute = absolute;
32         this.steps = null;
33     }
34
35     public PathExpressionImpl(final String xpath, final Steps steps) {
36         super(xpath);
37         this.steps = requireNonNull(steps);
38         this.absolute = steps instanceof LocationPathSteps
39                 && ((LocationPathSteps) steps).getLocationPath().isAbsolute();
40     }
41
42     @Override
43     public boolean isAbsolute() {
44         return absolute;
45     }
46
47     @Override
48     public Steps getSteps() {
49         final Steps loc = steps;
50         if (loc == null) {
51             throw new UnsupportedOperationException("Steps have not been provided");
52         }
53         return loc;
54     }
55
56     @Override
57     protected ToStringHelper addToStringAttributes(final ToStringHelper helper) {
58         return super.addToStringAttributes(helper.add("absolute", absolute).add("steps", steps));
59     }
60 }