summaryrefslogtreecommitdiff
blob: be84674db37a9c4b3ae1d020e1419ec539806df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
import java.io.IOException;
import java.io.FileNotFoundException;

public class ModelFile
{
   public static boolean load_file
   (
      final String filename
   )
   throws FileNotFoundException
   {
      final QuickParser qp;
      String[] input;
      boolean success;

      qp = new QuickParser(filename);

      for (;;)
      {
         try
         {
            input = qp.parse_line();

            if (input == null)
            {
               qp.finalize();

               return false;
            }
            else if (input.length == 0)
            {
               qp.finalize();

               break;
            }
         }
         catch (final IOException e)
         {
            System.err.println
            (
               "[E] IO error while parsing file \""
               + filename
               + "\":"
               /* FIXME: can be null */
               + e.getMessage()
            );

            return false;
         }

         if (input[0].equals("add_element"))
         {
            success = handle_add_element(input);
         }
         else if (input[0].equals("is_accessed_by"))
         {
            success = handle_is_accessed_by(input);
         }
         else if (input[0].equals("is_waveform_of"))
         {
            success = handle_is_waveform_of(input);
         }
         else if (input[0].equals("is_port_of"))
         {
            success = handle_is_port_of(input);
         }
         else if (input[0].equals("is_architecture_of"))
         {
            success = handle_is_architecture_of(input);
         }
         else if (input[0].equals("belongs_to_architecture"))
         {
            success = handle_belongs_to_architecture(input);
         }
         else if (input[0].equals("is_component_of"))
         {
            success = handle_is_component_of(input);
         }
         else if (input[0].equals("port_maps"))
         {
            success = handle_port_maps(input);
         }
         else
         {
            continue;
         }

         if (!success)
         {
            System.err.println
            (
               "[E] An erroneous instruction was found in file \""
               + filename
               + "\"."
            );

            try
            {
               qp.finalize();
            }
            catch (final Exception e)
            {
               System.err.println("[E] Additionally:");
               e.printStackTrace();
            }

            return false;
         }
      }

      VHDLArchitecture.resolve_all_waveforms();

      return true;
   }

   private static boolean handle_add_element
   (
      final String[] input
   )
   {
      if (input.length != 3)
      {
         return false;
      }

      if (input[1].equals("entity"))
      {
         VHDLEntity.add_element(input[2]);
      }
      else if (input[1].equals("architecture"))
      {
         VHDLArchitecture.add_element(input[2]);
      }
      else if (input[1].equals("waveform"))
      {
         VHDLWaveform.add_element(input[2]);
      }
      else if (input[1].equals("process"))
      {
         VHDLProcess.add_element(input[2]);
      }
      else if (input[1].equals("component"))
      {
         VHDLComponent.add_element(input[2]);
      }

      return true;
   }

   private static boolean handle_is_accessed_by
   (
      final String[] input
   )
   {
      final VHDLProcess ps;
      final VHDLWaveform wfm;

      if (input.length != 3)
      {
         return false;
      }

      ps = VHDLProcess.get_from_id(input[2]);
      wfm = VHDLWaveform.find(input[1]);

      if (wfm != null)
      {
         /*
          * Assumes that otherwise it's a string, but that could also be due to
          * an inconsistent model.
          */

         ps.add_accessed_wfm(wfm);
      }

      return true;
   }

   private static boolean handle_is_waveform_of
   (
      final String[] input
   )
   {
      if (input.length != 3)
      {
         return false;
      }

      Waveforms.register_map(input[1], input[2]);

      return true;
   }

   private static boolean handle_is_port_of
   (
      final String[] input
   )
   {
      if (input.length != 3)
      {
         return false;
      }

      VHDLEntity.get_from_id(input[2]).add_port(input[1]);

      return true;
   }

   private static boolean handle_is_architecture_of
   (
      final String[] input
   )
   {
      final VHDLEntity e;
      final VHDLArchitecture arch;

      if (input.length != 3)
      {
         return false;
      }

      e = VHDLEntity.get_from_id(input[2]);
      arch = VHDLArchitecture.get_from_id(input[1]);

      e.set_architecture(arch);
      arch.set_entity(e);

      return true;
   }

   private static boolean handle_belongs_to_architecture
   (
      final String[] input
   )
   {
      final VHDLArchitecture arch;
      final VHDLProcess ps;
      final VHDLComponent cmp;

      if (input.length != 3)
      {
         return false;
      }

      arch = VHDLArchitecture.get_from_id(input[2]);

      ps = VHDLProcess.find(input[1]);

      if (ps != null)
      {
         arch.add_process(ps);
         ps.set_architecture(arch);

         return true;
      }

      cmp = VHDLComponent.find(input[1]);

      if (cmp != null)
      {
         arch.add_component(cmp);
         cmp.set_architecture(arch);

         return true;
      }

      arch.add_futur_waveform(input[1]);

      return true;
   }

   private static boolean handle_is_component_of
   (
      final String[] input
   )
   {
      if (input.length != 3)
      {
         return false;
      }

      VHDLComponent.get_from_id(input[1]).set_destination
      (
         VHDLEntity.get_from_id(input[2])
      );

      return true;
   }

   private static boolean handle_port_maps
   (
      final String[] input
   )
   {
      if (input.length != 4)
      {
         return false;
      }

      VHDLComponent.get_from_id(input[1]).add_port_map
      (
         input[2],
         input[3]
      );

      return true;
   }

   private ModelFile () {} /* Utility Class */
}