~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/Reduce.java

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
                    Egothor Software License version 1.00
3
 
                    Copyright (C) 1997-2004 Leo Galambos.
4
 
                 Copyright (C) 2002-2004 "Egothor developers"
5
 
                      on behalf of the Egothor Project.
6
 
                             All rights reserved.
7
 
 
8
 
   This  software  is  copyrighted  by  the "Egothor developers". If this
9
 
   license applies to a single file or document, the "Egothor developers"
10
 
   are the people or entities mentioned as copyright holders in that file
11
 
   or  document.  If  this  license  applies  to the Egothor project as a
12
 
   whole,  the  copyright holders are the people or entities mentioned in
13
 
   the  file CREDITS. This file can be found in the same location as this
14
 
   license in the distribution.
15
 
 
16
 
   Redistribution  and  use  in  source and binary forms, with or without
17
 
   modification, are permitted provided that the following conditions are
18
 
   met:
19
 
    1. Redistributions  of  source  code  must retain the above copyright
20
 
       notice, the list of contributors, this list of conditions, and the
21
 
       following disclaimer.
22
 
    2. Redistributions  in binary form must reproduce the above copyright
23
 
       notice, the list of contributors, this list of conditions, and the
24
 
       disclaimer  that  follows  these  conditions  in the documentation
25
 
       and/or other materials provided with the distribution.
26
 
    3. The name "Egothor" must not be used to endorse or promote products
27
 
       derived  from  this software without prior written permission. For
28
 
       written permission, please contact Leo.G@seznam.cz
29
 
    4. Products  derived  from this software may not be called "Egothor",
30
 
       nor  may  "Egothor"  appear  in  their name, without prior written
31
 
       permission from Leo.G@seznam.cz.
32
 
 
33
 
   In addition, we request that you include in the end-user documentation
34
 
   provided  with  the  redistribution  and/or  in the software itself an
35
 
   acknowledgement equivalent to the following:
36
 
   "This product includes software developed by the Egothor Project.
37
 
    http://egothor.sf.net/"
38
 
 
39
 
   THIS  SOFTWARE  IS  PROVIDED  ``AS  IS''  AND ANY EXPRESSED OR IMPLIED
40
 
   WARRANTIES,  INCLUDING,  BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
41
 
   MERCHANTABILITY  AND  FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
42
 
   IN  NO  EVENT  SHALL THE EGOTHOR PROJECT OR ITS CONTRIBUTORS BE LIABLE
43
 
   FOR   ANY   DIRECT,   INDIRECT,  INCIDENTAL,  SPECIAL,  EXEMPLARY,  OR
44
 
   CONSEQUENTIAL  DAMAGES  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
45
 
   SUBSTITUTE  GOODS  OR  SERVICES;  LOSS  OF  USE,  DATA, OR PROFITS; OR
46
 
   BUSINESS  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
47
 
   WHETHER  IN  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
48
 
   OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
49
 
   IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50
 
 
51
 
   This  software  consists  of  voluntary  contributions  made  by  many
52
 
   individuals  on  behalf  of  the  Egothor  Project  and was originally
53
 
   created by Leo Galambos (Leo.G@seznam.cz).
54
 
 */
55
 
package org.egothor.stemmer;
56
 
 
57
 
import java.util.ArrayList;
58
 
import java.util.Arrays;
59
 
import java.util.Iterator;
60
 
import java.util.List;
61
 
 
62
 
/**
63
 
 * The Reduce object is used to remove gaps in a Trie which stores a dictionary.
64
 
 */
65
 
public class Reduce {
66
 
  
67
 
  /**
68
 
   * Constructor for the Reduce object.
69
 
   */
70
 
  public Reduce() {}
71
 
  
72
 
  /**
73
 
   * Optimize (remove holes in the rows) the given Trie and return the
74
 
   * restructured Trie.
75
 
   * 
76
 
   * @param orig the Trie to optimize
77
 
   * @return the restructured Trie
78
 
   */
79
 
  public Trie optimize(Trie orig) {
80
 
    List<CharSequence> cmds = orig.cmds;
81
 
    List<Row> rows = new ArrayList<Row>();
82
 
    List<Row> orows = orig.rows;
83
 
    int remap[] = new int[orows.size()];
84
 
    
85
 
    Arrays.fill(remap, -1);
86
 
    rows = removeGaps(orig.root, rows, new ArrayList<Row>(), remap);
87
 
    
88
 
    return new Trie(orig.forward, remap[orig.root], cmds, rows);
89
 
  }
90
 
  
91
 
  List<Row> removeGaps(int ind, List<Row> old, List<Row> to, int remap[]) {
92
 
    remap[ind] = to.size();
93
 
    
94
 
    Row now = old.get(ind);
95
 
    to.add(now);
96
 
    Iterator<Cell> i = now.cells.values().iterator();
97
 
    for (; i.hasNext();) {
98
 
      Cell c = i.next();
99
 
      if (c.ref >= 0 && remap[c.ref] < 0) {
100
 
        removeGaps(c.ref, old, to, remap);
101
 
      }
102
 
    }
103
 
    to.set(remap[ind], new Remap(now, remap));
104
 
    return to;
105
 
  }
106
 
  
107
 
  /**
108
 
   * This class is part of the Egothor Project
109
 
   */
110
 
  class Remap extends Row {
111
 
    /**
112
 
     * Constructor for the Remap object
113
 
     * 
114
 
     * @param old Description of the Parameter
115
 
     * @param remap Description of the Parameter
116
 
     */
117
 
    public Remap(Row old, int remap[]) {
118
 
      super();
119
 
      Iterator<Character> i = old.cells.keySet().iterator();
120
 
      for (; i.hasNext();) {
121
 
        Character ch = i.next();
122
 
        Cell c = old.at(ch);
123
 
        Cell nc;
124
 
        if (c.ref >= 0) {
125
 
          nc = new Cell(c);
126
 
          nc.ref = remap[nc.ref];
127
 
        } else {
128
 
          nc = new Cell(c);
129
 
        }
130
 
        cells.put(ch, nc);
131
 
      }
132
 
    }
133
 
  }
134
 
}