com.google.api.generator.gapic.composer.ClientLibraryPackageInfoComposer Maven / Gradle / Ivy
// Copyright 2020 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.api.generator.gapic.composer;
import com.google.api.generator.engine.ast.AnnotationNode;
import com.google.api.generator.engine.ast.CommentStatement;
import com.google.api.generator.engine.ast.ConcreteReference;
import com.google.api.generator.engine.ast.JavaDocComment;
import com.google.api.generator.engine.ast.PackageInfoDefinition;
import com.google.api.generator.engine.ast.TypeNode;
import com.google.api.generator.engine.ast.VaporReference;
import com.google.api.generator.gapic.composer.samplecode.SampleCodeWriter;
import com.google.api.generator.gapic.composer.samplecode.ServiceClientHeaderSampleComposer;
import com.google.api.generator.gapic.composer.utils.ClassNames;
import com.google.api.generator.gapic.composer.utils.CommentFormatter;
import com.google.api.generator.gapic.model.GapicContext;
import com.google.api.generator.gapic.model.GapicPackageInfo;
import com.google.api.generator.gapic.model.Sample;
import com.google.api.generator.gapic.model.Service;
import com.google.common.base.Strings;
import java.util.logging.Logger;
import javax.annotation.Generated;
public class ClientLibraryPackageInfoComposer {
private static final Logger LOGGER =
Logger.getLogger(ClientLibraryPackageInfoComposer.class.getName());
private static final String DIVIDER = "=======================";
private static final String PACKAGE_INFO_DESCRIPTION =
"The interfaces provided are listed below, along with usage samples.";
private static final String PACKAGE_INFO_TITLE_PATTERN = "A client to %s";
private static final String SAMPLE_CODE_HEADER_PATTERN = "Sample for %s:";
private static final String SERVICE_DESCRIPTION_HEADER_PATTERN = "Service Description: %s";
public static GapicPackageInfo generatePackageInfo(GapicContext context) {
if (!context.containsServices()) {
LOGGER.warning("Generating empty package info since no services were found");
return null;
}
// Pick some service's package, as we assume they are all the same.
String libraryPakkage = context.services().get(0).pakkage();
PackageInfoDefinition packageInfo =
PackageInfoDefinition.builder()
.setPakkage(libraryPakkage)
.setHeaderCommentStatements(createPackageInfoJavadoc(context))
.setAnnotations(
AnnotationNode.builder()
.setType(TypeNode.withReference(ConcreteReference.withClazz(Generated.class)))
.setDescription("by gapic-generator-java")
.build())
.build();
return GapicPackageInfo.with(packageInfo);
}
private static CommentStatement createPackageInfoJavadoc(GapicContext context) {
JavaDocComment.Builder javaDocCommentBuilder = JavaDocComment.builder();
if (context.hasServiceYamlProto()
&& !Strings.isNullOrEmpty(context.serviceYamlProto().getTitle())) {
javaDocCommentBuilder =
javaDocCommentBuilder.addComment(
String.format(PACKAGE_INFO_TITLE_PATTERN, context.serviceYamlProto().getTitle()));
}
javaDocCommentBuilder = javaDocCommentBuilder.addParagraph(PACKAGE_INFO_DESCRIPTION);
for (Service service : context.services()) {
String javaClientName = ClassNames.getServiceClientClassName(service);
javaDocCommentBuilder =
javaDocCommentBuilder.addParagraph(
String.format("%s %s %s", DIVIDER, javaClientName, DIVIDER));
if (service.hasDescription()) {
String descriptionComment =
CommentFormatter.formatAsJavaDocComment(
service.description(), SERVICE_DESCRIPTION_HEADER_PATTERN);
javaDocCommentBuilder = javaDocCommentBuilder.addUnescapedComment(descriptionComment);
}
javaDocCommentBuilder =
javaDocCommentBuilder.addParagraph(
String.format(SAMPLE_CODE_HEADER_PATTERN, javaClientName));
TypeNode clientType =
TypeNode.withReference(
VaporReference.builder()
.setPakkage(service.pakkage())
.setName(ClassNames.getServiceClientClassName(service))
.build());
Sample packageInfoSampleCode =
ServiceClientHeaderSampleComposer.composeClassHeaderSample(
service, clientType, context.resourceNames(), context.messages());
javaDocCommentBuilder.addSampleCode(
SampleCodeWriter.writeInlineSample(packageInfoSampleCode.body()));
}
return CommentStatement.withComment(javaDocCommentBuilder.build());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy