Package org.aspectj.org.eclipse.jdt.internal.compiler.classfmt

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.ClassFileReader


  Argument[] arguments = method.arguments;
  int argCount = arguments == null ? 0 : arguments.length;
  if (type.isBinary()) {
    // don't cache the methods of the binary type
    // fall thru if its a constructor with a synthetic argument... find it the slower way
    ClassFileReader reader = classFileReader(type);
    if (reader != null) {
      IBinaryMethod[] methods = reader.getMethods();
      if (methods != null) {
        // build arguments names
        boolean firstIsSynthetic = false;
        if (reader.isMember() && method.isConstructor() && !Flags.isStatic(reader.getModifiers())) { // see https://bugs.eclipse.org/bugs/show_bug.cgi?id=48261
          firstIsSynthetic = true;
          argCount++;
        }
        char[][] argumentTypeNames = new char[argCount][];
        for (int i = 0; i < argCount; i++) {
View Full Code Here


}
/*
* Create binary method handle
*/
IMethod createBinaryMethodHandle(IType type, char[] methodSelector, char[][] argumentTypeNames) {
  ClassFileReader reader = MatchLocator.classFileReader(type);
  if (reader != null) {
    IBinaryMethod[] methods = reader.getMethods();
    if (methods != null) {
      int argCount = argumentTypeNames == null ? 0 : argumentTypeNames.length;
      nextMethod : for (int i = 0, methodsLength = methods.length; i < methodsLength; i++) {
        IBinaryMethod binaryMethod = methods[i];
        char[] selector = binaryMethod.isConstructor() ? type.getElementName().toCharArray() : binaryMethod.getSelector();
View Full Code Here

      final byte[] contents = this.document.getByteContents();
      // see https://bugs.eclipse.org/bugs/show_bug.cgi?id=107124
      // contents can potentially be null if a IOException occurs while retrieving the contents
      if (contents == null) return;
      final String path = this.document.getPath();
      ClassFileReader reader = new ClassFileReader(contents, path == null ? null : path.toCharArray());
 
      // first add type references
      char[] className = replace('/', '.', reader.getName()); // looks like java/lang/String
      // need to extract the package name and the simple name
      int packageNameIndex = CharOperation.lastIndexOf('.', className);
      char[] packageName = null;
      char[] name = null;
      if (packageNameIndex >= 0) {
        packageName = CharOperation.subarray(className, 0, packageNameIndex);
        name = CharOperation.subarray(className, packageNameIndex + 1, className.length);
      } else {
        packageName = CharOperation.NO_CHAR;
        name = className;
      }
      char[] enclosingTypeName = null;
      boolean isNestedType = reader.isNestedType();
      if (isNestedType) {
        if (reader.isAnonymous()) {
          name = CharOperation.NO_CHAR;
        } else {
          name = reader.getInnerSourceName();
        }
        if (reader.isLocal() || reader.isAnonymous()) {
          // set specific ['0'] value for local and anonymous to be able to filter them
          enclosingTypeName = ONE_ZERO;
        } else {
          char[] fullEnclosingName = reader.getEnclosingTypeName();
          int nameLength = fullEnclosingName.length - packageNameIndex - 1;
          if (nameLength <= 0) {
            // See PR 1GIR345: ITPJCORE:ALL - Indexer: NegativeArraySizeException
            return;
          }
          enclosingTypeName = new char[nameLength];
          System.arraycopy(fullEnclosingName, packageNameIndex + 1, enclosingTypeName, 0, nameLength);
        }
      }
      // type parameters
      char[][] typeParameterSignatures = null;
      char[] genericSignature = reader.getGenericSignature();
      if (genericSignature != null) {
        CharOperation.replace(genericSignature, '/', '.');
        typeParameterSignatures = Signature.getTypeParameters(genericSignature);
      }
     
      // eliminate invalid innerclasses (1G4KCF7)
      if (name == null) return;
     
      char[][] superinterfaces = replace('/', '.', reader.getInterfaceNames());
      char[][] enclosingTypeNames = enclosingTypeName == null ? null : new char[][] {enclosingTypeName};
      int modifiers = reader.getModifiers();
      switch (TypeDeclaration.kind(modifiers)) {
        case TypeDeclaration.CLASS_DECL :
          char[] superclass = replace('/', '.', reader.getSuperclassName());
          addClassDeclaration(modifiers, packageName, name, enclosingTypeNames, superclass, superinterfaces, typeParameterSignatures, false);
          break;
        case TypeDeclaration.INTERFACE_DECL :
          addInterfaceDeclaration(modifiers, packageName, name, enclosingTypeNames, superinterfaces, typeParameterSignatures, false);
          break;
        case TypeDeclaration.ENUM_DECL :
          superclass = replace('/', '.', reader.getSuperclassName());
          addEnumDeclaration(modifiers, packageName, name, enclosingTypeNames, superclass, superinterfaces, false);
          break;
        case TypeDeclaration.ANNOTATION_TYPE_DECL :
          addAnnotationTypeDeclaration(modifiers, packageName, name, enclosingTypeNames, false);
          break;
      }     

      // Look for references in class annotations
      IBinaryAnnotation[] annotations = reader.getAnnotations();
      if (annotations != null) {
        for (int a=0, length=annotations.length; a<length; a++) {
          IBinaryAnnotation annotation = annotations[a];
          addBinaryAnnotation(annotation);
        }
      }
      long tagBits = reader.getTagBits() & TagBits.AllStandardAnnotationsMask;
      if (tagBits != 0) {
        addBinaryStandardAnnotations(tagBits);
      }

      // first reference all methods declarations and field declarations
      MethodInfo[] methods = (MethodInfo[]) reader.getMethods();
      if (methods != null) {
        for (int i = 0, max = methods.length; i < max; i++) {
          MethodInfo method = methods[i];
          boolean isConstructor = method.isConstructor();
          char[] descriptor = method.getMethodDescriptor();
          char[][] parameterTypes = decodeParameterTypes(descriptor, isConstructor && isNestedType);
          char[] returnType = decodeReturnType(descriptor);
          char[][] exceptionTypes = replace('/', '.', method.getExceptionTypeNames());
          if (isConstructor) {
            addConstructorDeclaration(className, parameterTypes, exceptionTypes);
          } else {
            if (!method.isClinit()) {
              addMethodDeclaration(method.getSelector(), parameterTypes, returnType, exceptionTypes);
            }
          }
          // look for references in method annotations
          annotations = method.getAnnotations();
          if (annotations != null) {
            for (int a=0, length=annotations.length; a<length; a++) {
              IBinaryAnnotation annotation = annotations[a];
              addBinaryAnnotation(annotation);
            }
          }
        }
      }
      FieldInfo[] fields = (FieldInfo[]) reader.getFields();
      if (fields != null) {
        for (int i = 0, max = fields.length; i < max; i++) {
          FieldInfo field = fields[i];
          char[] fieldName = field.getName();
          char[] fieldType = decodeFieldType(replace('/', '.', field.getTypeName()));
View Full Code Here

  if (this.sourceFileName != null) return this.sourceFileName;

  this.sourceFileName = NO_SOURCE_FILE_NAME;
  if (this.openable.getSourceMapper() != null) {
    BinaryType type = (BinaryType) ((ClassFile) this.openable).getType();
    ClassFileReader reader = MatchLocator.classFileReader(type);
    if (reader != null) {
      String fileName = type.sourceFileName(reader);
      this.sourceFileName = fileName == null ? NO_SOURCE_FILE_NAME : fileName;
    }
  }
View Full Code Here

public NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName) {
  if (!isPackage(qualifiedPackageName)) return null; // most common case

  try {
    ClassFileReader reader = ClassFileReader.read(this.zipFile, qualifiedBinaryFileName);
    if (reader != null) {
      if (this.accessRuleSet == null)
        return new NameEnvironmentAnswer(reader, null);
      String fileNameWithoutExtension = qualifiedBinaryFileName.substring(0, qualifiedBinaryFileName.length() - SuffixConstants.SUFFIX_CLASS.length);
      return new NameEnvironmentAnswer(reader, this.accessRuleSet.getViolatedRestriction(fileNameWithoutExtension.toCharArray()));
View Full Code Here

}

public NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName) {
  if (!doesFileExist(binaryFileName, qualifiedPackageName, qualifiedBinaryFileName)) return null; // most common case

  ClassFileReader reader = null;
  try {
    reader = Util.newClassFileReader(this.binaryFolder.getFile(new Path(qualifiedBinaryFileName)));
  } catch (CoreException e) {
    return null;
  } catch (ClassFormatException e) {
View Full Code Here

      }
    }
  } else {
    byte[] contents = Util.getResourceContentsAsByteArray(file);
    try {
      return new ClassFileReader(contents, file.getFullPath().toString().toCharArray(), true/*fully initialize so as to not keep a reference to the byte array*/);
    } catch (ClassFormatException cfe) {
      //the structure remains unknown
      return null;
    }
  }
View Full Code Here

    String entryName = Util.concatWith(pkg.names, getElementName(), '/');
    ZipEntry ze = zip.getEntry(entryName);
    if (ze != null) {
      byte contents[] = org.aspectj.org.eclipse.jdt.internal.compiler.util.Util.getZipEntryByteContent(ze, zip);
      String fileName = root.getHandleIdentifier() + IDependent.JAR_FILE_ENTRY_SEPARATOR + entryName;
      return new ClassFileReader(contents, fileName.toCharArray(), true/*fully initialize so as to not keep a reference to the byte array*/);
    }
  } finally {
    JavaModelManager.getJavaModelManager().closeZipFile(zip);
  }
  return null;
View Full Code Here

   * </ul>
   * Returns the jdk level
   */
  public static long getJdkLevel(Object targetLibrary) {
    try {
      ClassFileReader reader = null;
      if (targetLibrary instanceof IFolder) {
        IFile classFile = findFirstClassFile((IFolder) targetLibrary); // only internal classfolders are allowed
        if (classFile != null)
          reader = Util.newClassFileReader(classFile);
      } else {
        // root is a jar file or a zip file
        ZipFile jar = null;
        try {
          IPath path = null;
          if (targetLibrary instanceof IResource) {
            path = ((IResource)targetLibrary).getFullPath();
          } else if (targetLibrary instanceof File){
            File f = (File) targetLibrary;
            if (!f.isDirectory()) {
              path = new Path(((File)targetLibrary).getPath());
            }
          }
          if (path != null) {
            jar = JavaModelManager.getJavaModelManager().getZipFile(path);
            for (Enumeration e= jar.entries(); e.hasMoreElements();) {
              ZipEntry member= (ZipEntry) e.nextElement();
              String entryName= member.getName();
              if (org.aspectj.org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(entryName)) {
                reader = ClassFileReader.read(jar, entryName);
                break;
              }
            }
          }
        } catch (CoreException e) {
          // ignore
        } finally {
          JavaModelManager.getJavaModelManager().closeZipFile(jar);
        }
      }
      if (reader != null) {
        return reader.getVersion();
      }
    } catch (CoreException e) {
      // ignore
    } catch(ClassFormatException e) {
      // ignore
View Full Code Here

    for (int i = 0; (i < oldBytes.length) && bytesEqual; i++) {
      if (newBytes[i] != oldBytes[i]) bytesEqual = false;
    }
    if (!bytesEqual) {
      try {
        ClassFileReader reader = new ClassFileReader(oldBytes, lastTime.getFilename().toCharArray());
        // ignore local types since they're only visible inside a single method
        if (!(reader.isLocal() || reader.isAnonymous()) &&
            reader.hasStructuralChanges(newBytes)) {
          structuralChangesSinceLastFullBuild.put(thisTime.getFilename(),new Long(currentBuildTime));
          addDependentsOf(lastTime.getClassName());
        }
      } catch (ClassFormatException e) {
        addDependentsOf(lastTime.getClassName());
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.ClassFileReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.