Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused code #1745

Merged
merged 1 commit into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public AnalyzerDescriptor(String locale) {
+ "#" //$NON-NLS-1$
+ HelpBasePlugin.getDefault().getBundle().getHeaders().get(Constants.BUNDLE_VERSION)
+ "?locale=" + locale; //$NON-NLS-1$
this.luceneAnalyzer = new DefaultAnalyzer(locale);
this.luceneAnalyzer = new DefaultAnalyzer();
this.lang = locale;
}
}
Expand All @@ -65,7 +65,7 @@ public AnalyzerDescriptor(String locale) {
* @return Returns a Analyzer
*/
public Analyzer getAnalyzer() {
return new SmartAnalyzer(lang, luceneAnalyzer);
return new SmartAnalyzer(luceneAnalyzer);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,94 +16,16 @@
*******************************************************************************/
package org.eclipse.help.internal.search;

import java.text.BreakIterator;
import java.util.Locale;
import java.util.StringTokenizer;

import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.Tokenizer;
import org.apache.lucene.analysis.core.LowerCaseFilter;
import org.apache.lucene.analysis.standard.StandardTokenizer;
import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.Platform;

/**
* Lucene Analyzer. LowerCaseFilter->StandardTokenizer
*/
public final class DefaultAnalyzer extends Analyzer {

private Locale locale;

/**
* Creates a new analyzer using the given locale.
*/
public DefaultAnalyzer(String localeString) {
super();
// Create a locale object for a given locale string
Locale userLocale = getLocale(localeString);

// Check if the locale is supported by BreakIterator
// check here to do it only once.
Locale[] availableLocales = BreakIterator.getAvailableLocales();
for (Locale availableLocale : availableLocales) {
if (userLocale.equals(availableLocale)) {
locale = userLocale;
break;
}
}
if (locale == null && userLocale.getDisplayVariant().length() > 0) {
// Check if the locale without variant is supported by BreakIterator
Locale countryLocale = Locale.of(userLocale.getLanguage(), userLocale.getCountry());
for (Locale availableLocale : availableLocales) {
if (countryLocale.equals(availableLocale)) {
locale = countryLocale;
break;
}
}
}
if (locale == null && userLocale.getCountry().length() > 0) {
// Check if at least the language is supported by BreakIterator
Locale language = Locale.of(userLocale.getLanguage(), ""); //$NON-NLS-1$
for (Locale availableLocale : availableLocales) {
if (language.equals(availableLocale)) {
locale = language;
break;
}
}
}

if (locale == null) {
// Locale is not supported, will use en_US
ILog.of(getClass()).error(
"Text Analyzer could not be created for locale {0}. An analyzer that extends org.eclipse.help.luceneAnalyzer extension point needs to be plugged in for locale " //$NON-NLS-1$
+ localeString
+ ", or Java Virtual Machine needs to be upgraded to version with proper support for locale {0}.", //$NON-NLS-1$
null);
locale = Locale.of("en", "US"); //$NON-NLS-1$ //$NON-NLS-2$
}
}

/**
* Creates a Locale object out of a string representation
*/
private Locale getLocale(String clientLocale) {
if (clientLocale == null)
clientLocale = Platform.getNL();
if (clientLocale == null)
clientLocale = Locale.getDefault().toString();

// break the string into tokens to get the Locale object
StringTokenizer locales = new StringTokenizer(clientLocale, "_"); //$NON-NLS-1$
if (locales.countTokens() == 1)
return Locale.of(locales.nextToken(), ""); //$NON-NLS-1$
else if (locales.countTokens() == 2)
return Locale.of(locales.nextToken(), locales.nextToken());
else if (locales.countTokens() == 3)
return Locale.of(locales.nextToken(), locales.nextToken(), locales.nextToken());
else
return Locale.getDefault();
}

/*
* Can't use try-with-resources because the Lucene internally reuses
* components. See {@link org.apache.lucene.analysis.Analyzer.ReuseStrategy}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,10 @@ public final class SmartAnalyzer extends AnalyzerWrapper {
Analyzer pluggedInAnalyzer;
Analyzer exactAnalyzer;

/**
* Constructor for SmartAnalyzer.
*/
public SmartAnalyzer(String locale, Analyzer pluggedInAnalyzer) {
public SmartAnalyzer(Analyzer pluggedInAnalyzer) {
super(PER_FIELD_REUSE_STRATEGY);
this.pluggedInAnalyzer = pluggedInAnalyzer;
this.exactAnalyzer = new DefaultAnalyzer(locale);
this.exactAnalyzer = new DefaultAnalyzer();
}

@Override
Expand Down
Loading