All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squareup.wire.schema.Extend Maven / Gradle / Ivy

There is a newer version: 5.1.0
Show newest version
/*
 * 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.ExtendElement;
import java.util.List;

public final class Extend {
  private final Location location;
  private final String documentation;
  private final String name;
  private final List fields;
  private ProtoType protoType;

  private Extend(Location location, String documentation, String name,
      List fields) {
    this.location = location;
    this.documentation = documentation;
    this.name = name;
    this.fields = fields;
  }

  static ImmutableList fromElements(String packageName,
      List extendElements) {
    ImmutableList.Builder extendBuilder = new ImmutableList.Builder<>();
    for (ExtendElement extendElement : extendElements) {
      extendBuilder.add(new Extend(extendElement.getLocation(), extendElement.getDocumentation(),
          extendElement.getName(),
          Field.fromElements(packageName, extendElement.getFields(), true)));
    }
    return extendBuilder.build();
  }

  static ImmutableList toElements(List extendList) {
    ImmutableList.Builder elements = new ImmutableList.Builder<>();
    for (Extend extend : extendList) {
      elements.add(new ExtendElement(
          extend.location,
          extend.name,
          extend.documentation,
          Field.toElements(extend.fields)));
    }
    return elements.build();
  }

  public Location location() {
    return location;
  }

  public ProtoType type() {
    return protoType;
  }

  public String documentation() {
    return documentation;
  }

  public List fields() {
    return fields;
  }

  public String getName() {
    return name;
  }

  void link(Linker linker) {
    linker = linker.withContext(this);
    protoType = linker.resolveMessageType(name);
    Type type = linker.get(protoType);
    if (type != null) {
      ((MessageType) type).addExtensionFields(fields);
    }
  }

  void validate(Linker linker) {
    linker = linker.withContext(this);
    linker.validateImport(location(), type());
  }

  public Extend retainAll(Schema schema, MarkSet markSet) {
    ImmutableList retainedFields = Field.retainAll(schema, markSet, protoType, fields);
    if (retainedFields.isEmpty()) return null;
    else return new Extend(location, documentation, name, retainedFields);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy