View Javadoc
1   /*
2    * Copyright 2020-2022 Foreseeti AB <https://foreseeti.com>
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.mal_lang.langspec.step;
18  
19  import static java.util.Objects.requireNonNull;
20  
21  import jakarta.json.Json;
22  import jakarta.json.JsonObject;
23  import java.util.Map;
24  import org.mal_lang.langspec.Asset;
25  import org.mal_lang.langspec.Variable;
26  import org.mal_lang.langspec.builders.step.StepVariableBuilder;
27  
28  /**
29   * Immutable class representing a variable step in a MAL language.
30   *
31   * @since 1.0.0
32   */
33  public final class StepVariable extends StepReference {
34    private final Variable variable;
35  
36    private StepVariable(Asset sourceAsset, Asset targetAsset, Variable variable) {
37      super(sourceAsset, targetAsset);
38      this.variable = requireNonNull(variable);
39    }
40  
41    /**
42     * Returns the variable of this {@code StepVariable} object.
43     *
44     * @return the variable of this {@code StepVariable} object
45     * @since 1.0.0
46     */
47    public Variable getVariable() {
48      return this.variable;
49    }
50  
51    @Override
52    public JsonObject toJson() {
53      return Json.createObjectBuilder()
54          .add("type", "variable")
55          .add("name", this.variable.getName())
56          .build();
57    }
58  
59    static StepVariable fromBuilder(
60        StepVariableBuilder builder,
61        Asset sourceAsset,
62        Map<String, Asset> assets,
63        Map<Variable, Asset> variableTargets) {
64      requireNonNull(builder);
65      requireNonNull(sourceAsset);
66      requireNonNull(assets);
67      requireNonNull(variableTargets);
68      if (!sourceAsset.hasVariable(builder.getName())) {
69        throw new IllegalArgumentException(
70            String.format("Variable \"%s\" not found", builder.getName()));
71      }
72      var variable = sourceAsset.getVariable(builder.getName());
73      var targetAsset = variableTargets.get(variable);
74      return new StepVariable(sourceAsset, targetAsset, variable);
75    }
76  }