pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / analyzers / common / src / java / org / apache / lucene / analysis / it / ItalianLightStemmer.java
1 package org.apache.lucene.analysis.it;
2
3 /**
4  * Licensed to the Apache Software Foundation (ASF) under one or more
5  * contributor license agreements.  See the NOTICE file distributed with
6  * this work for additional information regarding copyright ownership.
7  * The ASF licenses this file to You under the Apache License, Version 2.0
8  * (the "License"); you may not use this file except in compliance with
9  * the License.  You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 /* 
21  * This algorithm is updated based on code located at:
22  * http://members.unine.ch/jacques.savoy/clef/
23  * 
24  * Full copyright for that code follows:
25  */
26
27 /*
28  * Copyright (c) 2005, Jacques Savoy
29  * All rights reserved.
30  *
31  * Redistribution and use in source and binary forms, with or without 
32  * modification, are permitted provided that the following conditions are met:
33  *
34  * Redistributions of source code must retain the above copyright notice, this 
35  * list of conditions and the following disclaimer. Redistributions in binary 
36  * form must reproduce the above copyright notice, this list of conditions and
37  * the following disclaimer in the documentation and/or other materials 
38  * provided with the distribution. Neither the name of the author nor the names 
39  * of its contributors may be used to endorse or promote products derived from 
40  * this software without specific prior written permission.
41  * 
42  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
43  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
44  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
45  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
46  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
47  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
48  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
49  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
50  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
51  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
52  * POSSIBILITY OF SUCH DAMAGE.
53  */
54
55 /**
56  * Light Stemmer for Italian.
57  * <p>
58  * This stemmer implements the algorithm described in:
59  * <i>Report on CLEF-2001 Experiments</i>
60  * Jacques Savoy
61  */
62 public class ItalianLightStemmer {
63   
64   public int stem(char s[], int len) {
65     if (len < 6)
66       return len;
67     
68     for (int i = 0; i < len; i++)
69       switch(s[i]) {
70         case 'à': 
71         case 'á':
72         case 'â':
73         case 'ä': s[i] = 'a'; break;
74         case 'ò':
75         case 'ó':
76         case 'ô':
77         case 'ö': s[i] = 'o'; break;
78         case 'è':
79         case 'é':
80         case 'ê':
81         case 'ë': s[i] = 'e'; break;
82         case 'ù':
83         case 'ú':
84         case 'û':
85         case 'ü': s[i] = 'u'; break;
86         case 'ì':
87         case 'í':
88         case 'î':
89         case 'ï': s[i] = 'i'; break;
90       }
91     
92     switch(s[len-1]) {
93       case 'e':
94         if (s[len-2] == 'i' || s[len-2] == 'h')
95           return len - 2;
96         else
97           return len - 1;
98       case 'i':
99         if (s[len-2] == 'h' || s[len-2] == 'i')
100           return len - 2;
101         else
102           return len - 1;
103       case 'a':
104         if (s[len-2] == 'i')
105           return len - 2;
106         else
107           return len - 1;
108       case 'o':
109         if (s[len-2] == 'i')
110           return len - 2;
111         else
112           return len - 1;
113     }
114     
115     return len;
116   }
117 }