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.Field;
26  import org.mal_lang.langspec.Variable;
27  import org.mal_lang.langspec.builders.step.StepFieldBuilder;
28  
29  /**
30   * Immutable class representing a field step in a MAL language.
31   *
32   * @since 1.0.0
33   */
34  public final class StepField extends StepReference {
35    private final Field field;
36  
37    private StepField(Asset sourceAsset, Asset targetAsset, Field field) {
38      super(sourceAsset, targetAsset);
39      this.field = requireNonNull(field);
40    }
41  
42    /**
43     * Returns the field of this {@code StepField} object.
44     *
45     * @return the field of this {@code StepField} object
46     * @since 1.0.0
47     */
48    public Field getField() {
49      return this.field;
50    }
51  
52    @Override
53    public JsonObject toJson() {
54      return Json.createObjectBuilder()
55          .add("type", "field")
56          .add("name", this.field.getName())
57          .build();
58    }
59  
60    static StepField fromBuilder(
61        StepFieldBuilder builder,
62        Asset sourceAsset,
63        Map<String, Asset> assets,
64        Map<Variable, Asset> variableTargets) {
65      requireNonNull(builder);
66      requireNonNull(sourceAsset);
67      requireNonNull(assets);
68      requireNonNull(variableTargets);
69      if (!sourceAsset.hasField(builder.getName())) {
70        throw new IllegalArgumentException(
71            String.format("Field \"%s\" not found", builder.getName()));
72      }
73      var field = sourceAsset.getField(builder.getName());
74      return new StepField(sourceAsset, field.getTarget().getAsset(), field);
75    }
76  }