
org.apache.lucene.benchmark.byTask.tasks.NewLocaleTask Maven / Gradle / Ivy
The newest version!
/*
* 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.
*/
package org.apache.lucene.benchmark.byTask.tasks;
import java.util.Locale;
import org.apache.lucene.benchmark.byTask.PerfRunData;
/**
* Set a {@link java.util.Locale} for use in benchmarking.
*
* Locales can be specified as BCP-47 language tag or as ROOT or empty string.
*
*
* de
: Language "de"
* en-US
: Language "en", country "US"
* ROOT
: The root (language-agnostic) Locale
* - <empty string>: Erase the Locale (null)
*
*/
public class NewLocaleTask extends PerfTask {
private String tag;
/**
* Create a new {@link java.util.Locale} and set it in the getRunData() for use by all future
* tasks.
*/
public NewLocaleTask(PerfRunData runData) {
super(runData);
}
static Locale createLocale(String tag) {
if (tag == null || tag.length() == 0) return null;
if (tag.equalsIgnoreCase("ROOT")) {
return Locale.ROOT;
}
return new Locale.Builder().setLanguageTag(tag).build();
}
@Override
public int doLogic() throws Exception {
Locale locale = createLocale(tag);
getRunData().setLocale(locale);
System.out.println(
"Changed Locale to: "
+ (locale == null
? "null"
: (locale.getDisplayName(Locale.ENGLISH).length() == 0) ? "root locale" : locale));
return 1;
}
@Override
public void setParams(String params) {
super.setParams(params);
tag = params;
}
@Override
public boolean supportsParams() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy