com.google.cloud.translate.TranslateImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-translate Show documentation
Show all versions of google-cloud-translate Show documentation
Java idiomatic client for Google Cloud Translate
/*
* Copyright 2016 Google LLC
*
* Licensed 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 com.google.cloud.translate;
import static com.google.cloud.RetryHelper.runWithRetries;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkState;
import com.google.api.services.translate.model.DetectionsResourceItems;
import com.google.api.services.translate.model.LanguagesResource;
import com.google.api.services.translate.model.TranslationsResource;
import com.google.cloud.BaseService;
import com.google.cloud.RetryHelper.RetryHelperException;
import com.google.cloud.translate.spi.v2.TranslateRpc;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import java.util.Arrays;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
final class TranslateImpl extends BaseService implements Translate {
private final TranslateRpc translateRpc;
private static final Function, Detection>
DETECTION_FROM_PB_FUNCTION =
new Function, Detection>() {
@Override
public Detection apply(List detectionPb) {
return Detection.fromPb(detectionPb.get(0));
}
};
TranslateImpl(TranslateOptions options) {
super(options);
translateRpc = options.getTranslateRpcV2();
}
@Override
public List listSupportedLanguages(final LanguageListOption... options) {
try {
return Lists.transform(
runWithRetries(
new Callable>() {
@Override
public List call() {
return translateRpc.listSupportedLanguages(optionMap(options));
}
},
getOptions().getRetrySettings(),
EXCEPTION_HANDLER,
getOptions().getClock()),
Language.FROM_PB_FUNCTION);
} catch (RetryHelperException e) {
throw TranslateException.translateAndThrow(e);
}
}
@Override
public List detect(final List texts) {
try {
List> detectionsPb =
runWithRetries(
new Callable>>() {
@Override
public List> call() {
return translateRpc.detect(texts);
}
},
getOptions().getRetrySettings(),
EXCEPTION_HANDLER,
getOptions().getClock());
Iterator> detectionIterator = detectionsPb.iterator();
Iterator textIterator = texts.iterator();
while (detectionIterator.hasNext() && textIterator.hasNext()) {
List detectionPb = detectionIterator.next();
String text = textIterator.next();
checkState(
detectionPb != null && !detectionPb.isEmpty(), "No detection found for text: %s", text);
checkState(detectionPb.size() == 1, "Multiple detections found for text: %s", text);
}
return Lists.transform(detectionsPb, DETECTION_FROM_PB_FUNCTION);
} catch (RetryHelperException e) {
throw TranslateException.translateAndThrow(e);
}
}
@Override
public List detect(String... texts) {
return detect(Arrays.asList(texts));
}
@Override
public Detection detect(String text) {
return detect(Collections.singletonList(text)).get(0);
}
@Override
public List translate(final List texts, final TranslateOption... options) {
try {
return Lists.transform(
runWithRetries(
new Callable>() {
@Override
public List call() {
return translateRpc.translate(texts, optionMap(options));
}
},
getOptions().getRetrySettings(),
EXCEPTION_HANDLER,
getOptions().getClock()),
Translation.FROM_PB_FUNCTION);
} catch (RetryHelperException e) {
throw TranslateException.translateAndThrow(e);
}
}
@Override
public Translation translate(String text, TranslateOption... options) {
return translate(Collections.singletonList(text), options).get(0);
}
private Map optionMap(Option... options) {
Map optionMap = Maps.newEnumMap(TranslateRpc.Option.class);
for (Option option : options) {
Object prev = optionMap.put(option.getRpcOption(), option.getValue());
checkArgument(prev == null, "Duplicate option %s", option);
}
return optionMap;
}
}