com.squareup.wire.schema.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wire-schema Show documentation
Show all versions of wire-schema Show documentation
gRPC and protocol buffers for Android, Kotlin, and Java.
/*
* Copyright (C) 2015 Square, Inc.
*
* 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.squareup.wire.schema;
import com.google.common.collect.ImmutableList;
import com.squareup.wire.schema.internal.parser.ServiceElement;
import java.util.List;
public final class Service {
private final ProtoType protoType;
private final Location location;
private final String name;
private final String documentation;
private final ImmutableList rpcs;
private final Options options;
private Service(ProtoType protoType, Location location, String documentation, String name,
ImmutableList rpcs, Options options) {
this.protoType = protoType;
this.location = location;
this.documentation = documentation;
this.name = name;
this.rpcs = rpcs;
this.options = options;
}
static Service fromElement(ProtoType protoType, ServiceElement element) {
ImmutableList rpcs = Rpc.fromElements(element.getRpcs());
Options options = new Options(Options.SERVICE_OPTIONS, element.getOptions());
return new Service(protoType, element.getLocation(), element.getDocumentation(),
element.getName(), rpcs, options);
}
public Location location() {
return location;
}
public ProtoType type() {
return protoType;
}
public String documentation() {
return documentation;
}
public String name() {
return name;
}
public ImmutableList rpcs() {
return rpcs;
}
/** Returns the RPC named {@code name}, or null if this service has no such method. */
public Rpc rpc(String name) {
for (Rpc rpc : rpcs) {
if (rpc.name().equals(name)) {
return rpc;
}
}
return null;
}
public Options options() {
return options;
}
void link(Linker linker) {
linker = linker.withContext(this);
for (Rpc rpc : rpcs) {
rpc.link(linker);
}
}
void linkOptions(Linker linker) {
linker = linker.withContext(this);
for (Rpc rpc : rpcs) {
rpc.linkOptions(linker);
}
options.link(linker);
}
void validate(Linker linker) {
linker = linker.withContext(this);
for (Rpc rpc : rpcs) {
rpc.validate(linker);
}
}
Service retainAll(Schema schema, MarkSet markSet) {
// If this service is not retained, prune it.
if (!markSet.contains(protoType)) {
return null;
}
ImmutableList.Builder retainedRpcs = ImmutableList.builder();
for (Rpc rpc : rpcs) {
Rpc retainedRpc = rpc.retainAll(schema, markSet);
if (retainedRpc != null && markSet.contains(ProtoMember.get(protoType, rpc.name()))) {
retainedRpcs.add(retainedRpc);
}
}
return new Service(protoType, location, documentation, name, retainedRpcs.build(),
options.retainAll(schema, markSet));
}
static ImmutableList fromElements(String packageName, List elements) {
ImmutableList.Builder services = ImmutableList.builder();
for (ServiceElement service : elements) {
ProtoType protoType = ProtoType.get(packageName, service.getName());
services.add(Service.fromElement(protoType, service));
}
return services.build();
}
static ImmutableList toElements(List services) {
ImmutableList.Builder elements = new ImmutableList.Builder<>();
for (Service service : services) {
elements.add(
new ServiceElement(
service.location,
service.name,
service.documentation,
Rpc.toElements(service.rpcs),
service.options.toElements()
)
);
}
return elements.build();
}
}