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;
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.builders.AssociationBuilder;
25  
26  /**
27   * Immutable class representing an association in a MAL language.
28   *
29   * @since 1.0.0
30   */
31  public final class Association {
32    private final String name;
33    private final Meta meta;
34    private final Field leftField;
35    private final Field rightField;
36  
37    private Association(String name, Meta meta, Field leftField, Field rightField) {
38      this.name = requireNonNull(name);
39      this.meta = requireNonNull(meta);
40      this.leftField = requireNonNull(leftField);
41      this.rightField = requireNonNull(rightField);
42      leftField.setAssociation(this);
43      rightField.setAssociation(this);
44    }
45  
46    /**
47     * Returns the name of this {@code Association} object.
48     *
49     * @return the name of this {@code Association} object
50     * @since 1.0.0
51     */
52    public String getName() {
53      return this.name;
54    }
55  
56    /**
57     * Returns the meta info of this {@code Association} object.
58     *
59     * @return the meta info of this {@code Association} object
60     * @since 1.0.0
61     */
62    public Meta getMeta() {
63      return this.meta;
64    }
65  
66    /**
67     * Returns the left field of this {@code Association} object.
68     *
69     * @return the left field of this {@code Association} object
70     * @since 1.0.0
71     */
72    public Field getLeftField() {
73      return this.leftField;
74    }
75  
76    /**
77     * Returns the right field of this {@code Association} object.
78     *
79     * @return the right field of this {@code Association} object
80     * @since 1.0.0
81     */
82    public Field getRightField() {
83      return this.rightField;
84    }
85  
86    JsonObject toJson() {
87      return Json.createObjectBuilder()
88          .add("name", this.name)
89          .add("meta", this.meta.toJson())
90          .add("leftAsset", this.rightField.getAsset().getName())
91          .add("leftField", this.leftField.getName())
92          .add("leftMultiplicity", this.leftField.getMultiplicity().toJson())
93          .add("rightAsset", this.leftField.getAsset().getName())
94          .add("rightField", this.rightField.getName())
95          .add("rightMultiplicity", this.rightField.getMultiplicity().toJson())
96          .build();
97    }
98  
99    static Association fromBuilder(AssociationBuilder builder, Map<String, Asset> assets) {
100     requireNonNull(builder);
101     requireNonNull(assets);
102     if (!assets.containsKey(builder.getLeftAsset())) {
103       throw new IllegalArgumentException(
104           String.format("Asset \"%s\" not found", builder.getLeftAsset()));
105     }
106     if (!assets.containsKey(builder.getRightAsset())) {
107       throw new IllegalArgumentException(
108           String.format("Asset \"%s\" not found", builder.getRightAsset()));
109     }
110     var leftField =
111         new Field(
112             builder.getLeftField(),
113             assets.get(builder.getRightAsset()),
114             builder.getLeftMultiplicity());
115     var rightField =
116         new Field(
117             builder.getRightField(),
118             assets.get(builder.getLeftAsset()),
119             builder.getRightMultiplicity());
120     leftField.setTarget(rightField);
121     rightField.setTarget(leftField);
122     return new Association(
123         builder.getName(), Meta.fromBuilder(builder.getMeta()), leftField, rightField);
124   }
125 }