| /* |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| * |
| */ |
| |
| using System; |
| |
| namespace Lucene.Net.Analysis.Fa |
| { |
| /* |
| * Normalizer for Persian. |
| * <p> |
| * Normalization is done in-place for efficiency, operating on a termbuffer. |
| * <p> |
| * Normalization is defined as: |
| * <ul> |
| * <li>Normalization of various heh + hamza forms and heh goal to heh. |
| * <li>Normalization of farsi yeh and yeh barree to arabic yeh |
| * <li>Normalization of persian keheh to arabic kaf |
| * </ul> |
| * |
| */ |
| public class PersianNormalizer { |
| public const char YEH = '\u064A'; |
| |
| public const char FARSI_YEH = '\u06CC'; |
| |
| public const char YEH_BARREE = '\u06D2'; |
| |
| public const char KEHEH = '\u06A9'; |
| |
| public const char KAF = '\u0643'; |
| |
| public const char HAMZA_ABOVE = '\u0654'; |
| |
| public const char HEH_YEH = '\u06C0'; |
| |
| public const char HEH_GOAL = '\u06C1'; |
| |
| public const char HEH = '\u0647'; |
| |
| /* |
| * Normalize an input buffer of Persian text |
| * |
| * @param s input buffer |
| * @param len length of input buffer |
| * @return length of input buffer after normalization |
| */ |
| public int Normalize(char[] s, int len) { |
| |
| for (int i = 0; i < len; i++) { |
| switch (s[i]) { |
| case FARSI_YEH: |
| case YEH_BARREE: |
| s[i] = YEH; |
| break; |
| case KEHEH: |
| s[i] = KAF; |
| break; |
| case HEH_YEH: |
| case HEH_GOAL: |
| s[i] = HEH; |
| break; |
| case HAMZA_ABOVE: // necessary for HEH + HAMZA |
| len = Delete(s, i, len); |
| i--; |
| break; |
| default: |
| break; |
| } |
| } |
| |
| return len; |
| } |
| |
| /* |
| * Delete a character in-place |
| * |
| * @param s Input Buffer |
| * @param pos Position of character to delete |
| * @param len length of input buffer |
| * @return length of input buffer after deletion |
| */ |
| protected int Delete(char[] s, int pos, int len) { |
| if (pos < len) |
| Array.Copy(s, pos + 1, s, pos, len - pos - 1); |
| |
| return len - 1; |
| } |
| |
| } |
| } |