summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/matching/NondetWordAutoms.scala
blob: 3afa3d376d19a3333587e7696e8372d7187f5356 (plain) (blame)
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
package scala.tools.nsc.matching ;
import java.util._ ;

mixin class NondetWordAutoms {
/** a nondeterministic word automaton.
 *  states are represented (implicitly) as Integer objects.
 */
class NondetWordAutom  {
  // BEGIN stuff from FiniteAutom

  //final static Integer FINTAG = new Integer(0);

  /** number of states */
  var nstates: int =_;

  /** the 'alphabet' */
  var labels:  HashSet = _;

  /** the set of final states, here as a TreeMap */
  var finals: TreeMap = _;

  /** dfa: HashMap trans: Object -> Integer
   *  nfa: HashMap trans: Object -> Vector [ Integer ]
   *
   *  nfa: Integer  ->(Object -> Vector [ Int ])
   *       [q]     |->( a |-> { q' | (q,a,q') in \deltaright } )
   *
   *  dfa: Integer  ->(Object -> Int)
   *       [q]     |->( a |-> q' | \deltaright(q,a) = q' } )
   */

  var _deltaq:Array[HashMap] = _;

  var _defaultq:Array[Vector] = _; // this gives the default transitions

  //public HashMap deltaq[];

  // --- accessor methods

  /** returns number of states
   def nstates():  int = {
   return nstates;
   }
   */

  /** returns the labels
   def labels():  HashSet = {
   return _labels;
   }
   */

  /** returns the transitions
   */
  def deltaq(  state: int ):HashMap = {
    return _deltaq( state );
  }

  /** returns the transitions
   */
  def deltaq(  state: Integer ): HashMap = {
    return _deltaq( state.intValue() );
  }

  /** returns the transitions
   */
  def defaultq( state: int  ): Vector = {
    return _defaultq( state );
  }

  /** returns the transitions
   */
   def defaultq( state:Integer  ): Vector = {
     return _defaultq( state.intValue() );
   }


  /** returns true if the state is final
   */
  def isFinal( state:int  ): boolean = {
    return ((finals != null)
            && (finals.get( new Integer( state )) != null));
  }

  /** returns true if the state is final
   */
  def isFinal( state:Integer  ): boolean = {
    return ((finals != null) && finals.containsKey( state ));
  }

  /** returns true if the state is final
   */
  def finalTag(  state: Integer ):     Integer = {
    return finals.get( state ).asInstanceOf[Integer];
  }


  def finalTag( state:int  ): Integer = {
    return finals.get( new Integer (state )).asInstanceOf[Integer];
  }

  /** returns true if the set of states contains at least one final state
   */
  def containsFinal( Q:TreeSet  ): boolean = {
    var  it = Q.iterator();
    while(it.hasNext()) {
      if( isFinal( it.next().asInstanceOf[Integer]))
        return true;
    }
    return false;
  }


  /** returns true if there are no finite states
   */
  def isEmpty(): boolean = finals.isEmpty();

  // END stuff from FiniteAutom


  // inherited from FiniteAutom

  // set of *distinct* objects that may label transitions
  // see Object.hashCode() to see why this works

  //HashSet labels;
  //TreeMap finals;

  var initials: TreeSet = _; // ? need this ?
  // ---

  // Object deltaq -->
  // HashMap deltaq[]; // this gives the transitions of q;

  var leftTrans: boolean = _;
  var rightTrans:    boolean = _;

  /** if true, this automaton behaves as a special left transducer.
   *  if a run succeeds, the result is not "true" but the entire
   *  run of the automaton as a sequence of (label,state) - pairs.
   *  used for binding variables.
   */
   def producesRun(): boolean = {
     return leftTrans;
   }

    def consumesRun():    boolean = {
      return rightTrans;
    }

  def initial( i: Integer  ):      boolean  = {
    return initials.contains( i );
  }
  var qbinders: Array[Vector] = _;

  /** returns all states accessible from Qsrc via label.
   *  used by class DetWordAutomaton.
   */
  def getSide ( Qsrc:TreeSet , label:Object  ): TreeSet = {
    //Console.println("NWA::getSide(Qsrc="+Qsrc);
    val Qdest = new TreeSet();
    var it = Qsrc.iterator();
    while(it.hasNext())  {// state
      val q = it.next().asInstanceOf[Integer].intValue();
      val ps = deltaq( q ).get( label ).asInstanceOf[Vector];
      //Console.println("deltaq(q) = "+deltaq(q));
      //Console.println("_deltaq(q) = "+_deltaq(q));
      //Console.println("ps = "+ps);
      if( null != ps ) {
	Qdest.addAll( ps );
      }
      //Console.println("defq = "+_defaultq( q ));
      Qdest.addAll( _defaultq( q ) );
    }
    //Console.println("DONE-NWA::getSide");
    return Qdest;
  }

  /** returns the transitions
   */
  def defaultq( P1: Set  ): Object  = {
      val defTarget = new TreeSet();
    var p1 = P1.iterator();
    while(p1.hasNext()) {
      val q1 = p1.next().asInstanceOf[Integer].intValue();
      //System.out.println("   q1:"+q1+ " defa: "+defaultq( q1 ));
      defTarget.addAll( _defaultq( q1 ) );
    }
    return defTarget;
  }


  /** first match policy: among several final states, the smallest one is
   *   chosen. used by class DetWordAutomaton
   */
  def finalTag( Q:Set  ): Integer = {

    var min = Integer.MAX_VALUE ;
    var it = Q.iterator();
    while(it.hasNext()) {
      val state = it.next().asInstanceOf[Integer];
      val tag = finals.get( state ).asInstanceOf[Integer];
      if( tag != null ) {
        if( tag.intValue() < min )
          min = tag.intValue();
      }
    }

    if ( min == Integer.MAX_VALUE )
      scala.Predef.error( "there should be a final state ");

    return new Integer( min );
  }

  /*
   void tmap(int offs, TreeMap t) = {
   TreeMap nt = new TreeMap();
   for(Iterator it = t.keySet().iterator(); it.hasNext(); ) = {
   Integer key = (Integer) it.next();
   Integer newkey = new Integer( key.intValue() + offs );
   Integer val = (Integer) t.get( key );
   Integer newval = new Integer( val.intValue() + offs );

   nt.put( newkey, newval );
   }
   return nt;
   }
   */
  // hashmaps, treemaps
  def mapmap(src:Map, offset:int , dest:Map , mapkeys:boolean , mapvals:boolean ): Map = {
    var it = src.keySet().iterator();
    while(it.hasNext()) {
      var key = it.next();
      var value = src.get( key );
      if( mapkeys ) key = new Integer( key.asInstanceOf[Integer].intValue()
                                      + offset );
      if( mapvals ) value = vmap( offset, value.asInstanceOf[Vector] ) ;
      /* new Integer( ((Integer)val).intValue()
       + offset );
       */
      dest.put( key, value );
    }
    return dest;
  }

  def vmap(offs:int , v:Vector  ):  Vector = {
    if( v == null )
      return null;
    var res = new Vector( v.size() );
    var it = v.iterator();
    while(it.hasNext()) {
      val item = it.next().asInstanceOf[Integer];
      res.add( new Integer( item.intValue() + offs ));
    }
    return res;

  }

  /*
   void relocate_defaultq( int offs, Vector   _defaultq[] ) = {
   for( int i = 0; i < this.nstates; i++ ) = {
   _defaultq[ i + offset ] = vmap( offset, ((Vector[])defaultq)[ i ]);
   }
   }
   */

  /** copies the values in the fields of this object into the
   *  arguments, possibly adding an offset.
   */
  def relocate( offset:int, _finals:TreeMap, _deltaq1:Array[HashMap], _defaultq1:Array[Vector], _qbinders1:Array[Vector] ): Unit = {

    mapmap( finals, offset, _finals, true, false);
    var i = 0;
    while(i < this.nstates) {

      _deltaq1  ( i + offset ) =
        mapmap( deltaq( i ), offset, new HashMap(), false, true).asInstanceOf[HashMap];

      _defaultq1( i + offset ) = vmap( offset, this.defaultq( i ) );
      i = i + 1;
    }
    if ((_qbinders1 != null) &&( qbinders != null )) {
      i = 0;
      while(i < this.nstates ) {
        //System.out.println("hallo"+qbinders);
        //System.out.println("qbinders[ i ] :"+qbinders[ i ]);
        //assert _qbinders != null;
        //System.out.println("_qbinders :"+_qbinders);

        _qbinders1( i + offset ) = qbinders( i );
        i = i + 1
      }
    }
  }


  /** if there is more than one initial state, a new initial state
   *  is created, with index 0
   */
  def normalize( initials:TreeSet , reloc:boolean  ): Unit = {
    //if( initials.size() == 1 )
    //      return;

    var idelta   = new HashMap();
    var idefault = new TreeSet();

    var q0 = new Integer( 0 );

    var it = initials.iterator();
    while(it.hasNext()) {

      val ostate = it.next().asInstanceOf[Integer];

      val finTag = finals.get( ostate ).asInstanceOf[Integer] ;
      if(( finTag != null ) && ( finals.get( q0 )  == null))
        finals.put( q0, finTag );


      var tmp = deltaq( ostate );

      if( reloc )
        tmp = mapmap( tmp, 1, new HashMap(), false, true ).asInstanceOf[HashMap];

      val labs = tmp.keySet().iterator();
      while(labs.hasNext()) {
        val lab     = labs.next();
        var itarget = idelta.get( lab ).asInstanceOf[Vector];
        if( null == itarget )
          idelta.put( lab, {itarget = new Vector(); itarget});
        val otarget = tmp.get( lab ).asInstanceOf[Vector];
        itarget.addAll( otarget );
      }
      //System.out.println( "normalize:defaultq[ "+ostate+" ] "+((Vector[]) defaultq) [ ostate.intValue() ]);
      if( defaultq( ostate ) != null )
        idefault.addAll( defaultq( ostate )  );
    }

    if( reloc ) {
      val m = 1 + this.nstates;
      val _finals    = new TreeMap();
      val _deltaq    = new Array[HashMap]( m );
      val _defaultq = new Array[Vector]( m );
      var _qbinders: Array[Vector] = null;

      if( qbinders != null )
        _qbinders = new Array[Vector]( m );

      relocate( 1, _finals, _deltaq, _defaultq, _qbinders );

      this.nstates  = m;
      this.finals   = _finals;
      this._deltaq   = _deltaq;
      this._defaultq = _defaultq;
      this.qbinders = _qbinders;
    }

    this._deltaq  ( 0 ) = idelta;
    //System.out.println("normalize:deltaq[ 0 ]"+ idelta );
    this._defaultq( 0 ) = new Vector( idefault );

    //System.out.println("normalize:defaultq[ 0 ]"+ idefault );

    this.initials = new TreeSet();
    this.initials.add( q0 );
  }


      /** called from Berry-Sethi construction.
       */

       def this(nstates:int, _labels:HashSet, initials: TreeSet, finals:TreeMap, deltaq:Array[HashMap], defaultq:Array[Vector], qbinders:Object ) = {
         this();
         //Console.println("NWA::this(. . . . )");
         this.nstates = nstates;
         this.labels = _labels;
         this.initials = initials;
         this.finals = finals;
         this._deltaq = deltaq;
         this._defaultq = defaultq;
         this.qbinders = qbinders.asInstanceOf[Array[Vector]];
         //print();
         //System.exit(0);
       }



  var offset:Array[int] = _; // only used if constructed from multiple

  def collectLabels( nfa:Array[NondetWordAutom ] ): Unit = {
    this.labels = new HashSet();
    var i = 0;
    while(i < nfa.length) {
      this.labels.addAll( nfa( i ).labels );
      i = i + 1
    }
  }

  def collectOffsets( nfa:Array[NondetWordAutom] ): Unit = {
    this.offset = new Array[int]( nfa.length + 1 );
    offset( 0 ) = 1; // we have a new initial state
    var i = 0;
    while(i < nfa.length ) {
      offset( i + 1 ) = nfa( i ).nstates + offset( i );
      i = i + 1
    }
  }

  /** collapses several normalized NondetWordAutom objects into one.
   */

  def this( nfa: Array[NondetWordAutom] ) = {
    this();
    //Console.println("NWA::this(.)");

    //this.m
    val m = nfa.length;
    //System.out.println("enter NondetWordSwitch, "
    //                   +"combining " + m + " automata");

    collectLabels( nfa );
    collectOffsets( nfa );

    //Console.println(" X 1");


    this.nstates = offset( nfa.length ); //m - 1 ] + nfa[ m - 1 ].nstates;


    this.finals = new TreeMap();

    this.qbinders = new Array[Vector]( nstates );

    // new initial state gets all transitions from all initial states

    this._deltaq        = new Array[HashMap]( nstates );
    this._defaultq      = new Array[Vector]( nstates );
    //Console.println(" X 2");

    //TreeSet defaultqSet = new TreeSet();
    _deltaq( 0 ) = new HashMap(); // 0 = our new initial state

    val initials = new TreeSet();

    var i = 0;
    while(i < m) {
      //System.out.println("i (current NFA):"+i);

      val n = nfa( i );

      val offs = offset( i );

      initials.add( new Integer( offs ));

      n.relocate( offs,
                 this.finals,
                 this._deltaq,
                 this._defaultq,
                 this.qbinders );
      i = i + 1;
    }

    normalize( initials, false );
    //Console.println("Leave-NWA::this(.)");
  }




  def print(): Unit = {

    Console.print("NFA on labels "+ this.labels);

    if( offset != null ) {
      Console.print("offset");
      var k = 0;
      while(k < offset.length) {
        if( k > 0)
          Console.print(", ");
        Console.print(offset(k));
        k = k + 1;
      }
    }
    Console.println;

    Console.print("max state number :" + (nstates - 1)  );

    Console.println("initials" + initials);

    Console.println("finals" + finals);

    var i = 0;
    while(i < nstates) {
      Console.print("state: " + i);
      if( finals.containsKey( new Integer( i )) ){
        Console.print("*"); //final
      }
      Console.print("  transitions: {");
      var arrows:HashMap  = deltaq( i );

      var it = arrows.keySet().iterator();
      while(it.hasNext()) {
        val label = it.next();
        val targets = arrows.get( label ).asInstanceOf[Vector];
        val jt = targets.iterator();
        while(jt.hasNext()) {
          val p = jt.next().asInstanceOf[Integer];
          Console.print("("+label+","+p+")");
        }
      }

      Console.print("} ");
      Console.print(" default transitions: "+_defaultq( i ));
      if( null != qbinders )
        Console.println(" binders "+qbinders( i ));
      Console.println;
      i = i + 1;
    }
  }


}

}