a04587e005be386c26d4c68c222becfe5dc87ff4
[mdsal.git] / binding / mdsal-binding-generator / src / main / java / org / opendaylight / mdsal / binding / generator / impl / reactor / ModuleAugmentGenerator.java
1 /*
2  * Copyright (c) 2021 PANTHEON.tech, s.r.o. 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.generator.impl.reactor;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.model.api.stmt.AugmentEffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.util.SchemaInferenceStack;
13
14 /**
15  * Generator corresponding to a {@code augment} statement used as a child of a {@code module} statement.
16  */
17 final class ModuleAugmentGenerator extends AbstractAugmentGenerator {
18     ModuleAugmentGenerator(final AugmentEffectiveStatement statement, final AbstractCompositeGenerator<?, ?> parent) {
19         super(statement, parent);
20     }
21
22     @NonNull AugmentRequirement startLinkage(final GeneratorContext context) {
23         setTargetStatement(SchemaInferenceStack.of(context.getEffectiveModelContext())
24             .enterSchemaTree(statement().argument()));
25
26         return new AugmentRequirement(this,
27             context.resolveModule(statement().argument().firstNodeIdentifier().getModule()));
28     }
29 }