org.languagetool.rules.ru.RussianSpecificCaseRule Maven / Gradle / Ivy
The newest version!
/* LanguageTool, a natural language style checker
* Copyright (C) 2019 Daniel Naber (http://www.danielnaber.de)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
package org.languagetool.rules.ru;
import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap;
import it.unimi.dsi.fastutil.objects.ObjectOpenHashSet;
import org.languagetool.*;
import org.languagetool.rules.*;
import org.languagetool.tools.StringTools;
import java.util.*;
/**
* A rule that matches words which need a specific upper/lowercase spelling.
* Based on English SpecificCaseRule
* @since 5.0
*/
public class RussianSpecificCaseRule extends Rule {
private static final Set phrases = new ObjectOpenHashSet<>(loadPhrases("/ru/specific_case.txt"));
private static int maxLen;
private static List loadPhrases(String path) {
List l = new ArrayList<>();
List lines = JLanguageTool.getDataBroker().getFromResourceDirAsLines(path);
for (String line : lines) {
if (line.isEmpty() || line.startsWith("#")) {
continue;
}
int parts = line.split(" ").length;
maxLen = Math.max(parts, maxLen);
l.add(line.trim());
}
return l;
}
private static final Map lcToProperSpelling = new Object2ObjectOpenHashMap<>();
static {
for (String phrase : phrases) {
lcToProperSpelling.put(phrase.toLowerCase(), phrase);
}
}
public RussianSpecificCaseRule(ResourceBundle messages) {
super(messages);
super.setCategory(Categories.CASING.getCategory(messages));
setLocQualityIssueType(ITSIssueType.Misspelling);
addExamplePair(Example.wrong("Река рытый банк находится в Прикаспийской низменности."),
Example.fixed("Река Рытый Банк находится в Прикаспийской низменности"));
}
@Override
public final String getId() {
return "RU_SPECIFIC_CASE";
}
@Override
public String getDescription() {
return "Написание специальных наименований в верхнем или нижнем регистре";
}
@Override
public RuleMatch[] match(AnalyzedSentence sentence) {
List matches = new ArrayList<>();
AnalyzedTokenReadings[] tokens = sentence.getTokensWithoutWhitespace();
for (int i = 0; i < tokens.length; i++) {
List l = new ArrayList<>();
int j = 0;
while (l.size() < maxLen && i+j < tokens.length) {
l.add(tokens[i+j].getToken());
j++;
String phrase = String.join(" ", l);
String lcPhrase = phrase.toLowerCase();
String properSpelling = lcToProperSpelling.get(lcPhrase);
if (properSpelling != null && !StringTools.isAllUppercase(phrase) && !phrase.equals(properSpelling)) {
if (i > 0 && tokens[i-1].isSentenceStart() && !StringTools.startsWithUppercase(properSpelling)) {
// avoid suggesting e.g. "vitamin C" at sentence start:
continue;
}
String msg;
if (allWordsUppercase(properSpelling)) {
msg = "Для специальных наименований используйте начальную заглавную букву.";
} else {
msg = "Для специальных наименований используйте предложенное написание заглавных и строчных букв.";
}
RuleMatch match = new RuleMatch(this, sentence, tokens[i].getStartPos(), tokens[i+j-1].getEndPos(), msg);
match.setSuggestedReplacement(properSpelling);
matches.add(match);
}
}
}
return toRuleMatchArray(matches);
}
private boolean allWordsUppercase(String s) {
return Arrays.stream(s.split(" ")).allMatch(StringTools::startsWithUppercase);
}
}