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

proguard.classfile.kotlin.KotlinPropertyMetadata Maven / Gradle / Ivy

Go to download

ProGuardCORE is a free library to read, analyze, modify, and write Java class files.

There is a newer version: 9.1.6
Show newest version
/*
 * ProGuardCORE -- library to process Java bytecode.
 *
 * Copyright (c) 2002-2021 Guardsquare NV
 *
 * 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 proguard.classfile.kotlin;

import java.util.List;
import proguard.classfile.*;
import proguard.classfile.kotlin.flags.*;
import proguard.classfile.kotlin.visitor.*;
import proguard.util.*;

public class KotlinPropertyMetadata extends SimpleProcessable {
  public String name;

  public List typeParameters;

  public KotlinTypeMetadata receiverType;

  public List contextReceivers;

  public List setterParameters;

  public KotlinTypeMetadata type;

  public KotlinVersionRequirementMetadata versionRequirement;

  public KotlinPropertyFlags flags;

  public KotlinPropertyAccessorFlags getterFlags;

  public KotlinPropertyAccessorFlags setterFlags;

  // Extensions.
  public FieldSignature backingFieldSignature;
  // Store the class where the referencedBackingField is declared.
  public Clazz referencedBackingFieldClass;
  public Field referencedBackingField;
  public MethodSignature getterSignature;
  public Method referencedGetterMethod;
  public MethodSignature setterSignature;
  public Method referencedSetterMethod;

  public MethodSignature syntheticMethodForAnnotations;

  public Clazz referencedSyntheticMethodClass;
  public Method referencedSyntheticMethodForAnnotations;

  public MethodSignature syntheticMethodForDelegate;

  public Clazz referencedSyntheticMethodForDelegateClass;
  public Method referencedSyntheticMethodForDelegateMethod;

  public KotlinPropertyMetadata(
      KotlinPropertyFlags flags,
      String name,
      KotlinPropertyAccessorFlags getterFlags,
      KotlinPropertyAccessorFlags setterFlags) {
    this.name = name;
    this.flags = flags;
    this.getterFlags = getterFlags;
    this.setterFlags = setterFlags;
  }

  public void accept(
      Clazz clazz,
      KotlinDeclarationContainerMetadata kotlinDeclarationContainerMetadata,
      KotlinPropertyVisitor kotlinPropertyVisitor) {
    kotlinPropertyVisitor.visitProperty(clazz, kotlinDeclarationContainerMetadata, this);
  }

  void acceptAsDelegated(
      Clazz clazz,
      KotlinDeclarationContainerMetadata kotlinDeclarationContainerMetadata,
      KotlinPropertyVisitor kotlinPropertyVisitor) {
    kotlinPropertyVisitor.visitDelegatedProperty(clazz, kotlinDeclarationContainerMetadata, this);
  }

  public void typeAccept(
      Clazz clazz,
      KotlinDeclarationContainerMetadata kotlinDeclarationContainerMetadata,
      KotlinTypeVisitor kotlinTypeVisitor) {
    kotlinTypeVisitor.visitPropertyType(clazz, kotlinDeclarationContainerMetadata, this, type);
  }

  public void receiverTypeAccept(
      Clazz clazz,
      KotlinDeclarationContainerMetadata kotlinDeclarationContainerMetadata,
      KotlinTypeVisitor kotlinTypeVisitor) {
    if (receiverType != null) {
      kotlinTypeVisitor.visitPropertyReceiverType(
          clazz, kotlinDeclarationContainerMetadata, this, receiverType);
    }
  }

  public void contextReceiverTypesAccept(
      Clazz clazz, KotlinMetadata kotlinMetadata, KotlinTypeVisitor kotlinTypeVisitor) {
    if (contextReceivers != null) {
      for (KotlinTypeMetadata contextReceiver : contextReceivers) {
        kotlinTypeVisitor.visitPropertyContextReceiverType(
            clazz, kotlinMetadata, this, contextReceiver);
      }
    }
  }

  public void setterParametersAccept(
      Clazz clazz,
      KotlinDeclarationContainerMetadata kotlinDeclarationContainerMetadata,
      KotlinValueParameterVisitor kotlinValueParameterVisitor) {
    for (KotlinValueParameterMetadata setterParameter : setterParameters) {
      setterParameter.accept(
          clazz, kotlinDeclarationContainerMetadata, this, kotlinValueParameterVisitor);
    }
  }

  public void typeParametersAccept(
      Clazz clazz,
      KotlinDeclarationContainerMetadata kotlinDeclarationContainerMetadata,
      KotlinTypeParameterVisitor kotlinTypeParameterVisitor) {
    for (KotlinTypeParameterMetadata typeParameter : typeParameters) {
      typeParameter.accept(
          clazz, kotlinDeclarationContainerMetadata, this, kotlinTypeParameterVisitor);
    }
  }

  public void versionRequirementAccept(
      Clazz clazz,
      KotlinDeclarationContainerMetadata kotlinDeclarationContainerMetadata,
      KotlinVersionRequirementVisitor kotlinVersionRequirementVisitor) {
    if (versionRequirement != null) {
      versionRequirement.accept(
          clazz, kotlinDeclarationContainerMetadata, this, kotlinVersionRequirementVisitor);
    }
  }

  // Implementations for Object.
  @Override
  public String toString() {
    return "Kotlin "
        + (flags.isDelegated ? "delegated " : "")
        + "property ("
        + name
        + " | "
        + (backingFieldSignature != null ? "b" : "")
        + "g"
        + (getterFlags.isDefault ? "" : "+")
        + (flags.isVar ? "s" + (setterFlags.isDefault ? "" : "+") : "")
        + ")";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy