com.openpojo.reflection.impl.PojoPackageImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpojo Show documentation
Show all versions of openpojo Show documentation
This project was born out of a need to validate all POJOs (Plain Old Java Object) are behaving correctly.
This project has two main aspects to it:
* Make Testing as easy as possible.
* Simplifying identity management (hashCode / equals) using annotation.
/**
* Copyright (C) 2010 Osman Shoukry
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package com.openpojo.reflection.impl;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import com.openpojo.log.utils.MessageFormatter;
import com.openpojo.reflection.PojoClass;
import com.openpojo.reflection.PojoClassFilter;
import com.openpojo.reflection.PojoPackage;
import com.openpojo.reflection.exception.ReflectionException;
import com.openpojo.reflection.java.packageloader.Package;
/**
* This class represents the abstraction of a JAVA Package as PojoPackageImpl.
*
* @author oshoukry
*/
class PojoPackageImpl implements PojoPackage {
private final String packageName;
private final PojoClass packageInfoPojoClass;
private final Package jdkPackage;
public String getName() {
return packageName;
}
public PojoPackageImpl(final String packageName) {
this.packageName = packageName;
if (packageName == null) {
throw new IllegalArgumentException("PackageName can not be null");
}
jdkPackage = new Package(packageName);
if (!isValid()) {
throw ReflectionException.getInstance(MessageFormatter.format("Package [{0}] is not valid", packageName));
}
Class> infoClass = null;
try {
infoClass = Class.forName(packageName + PojoPackage.PACKAGE_DELIMETER + PojoPackage.PACKAGE_INFO);
} catch (ClassNotFoundException e) {
}
if (infoClass != null) {
packageInfoPojoClass = PojoClassFactory.getPojoClass(infoClass);
} else {
packageInfoPojoClass = null;
}
}
private boolean isValid() {
return jdkPackage.isValid();
}
public List getPojoClasses() {
return getPojoClasses(null);
}
public List getPojoClasses(final PojoClassFilter filter) {
List pojoClasses = new LinkedList();
for (Type type : jdkPackage.getTypes()) {
PojoClass pojoClass = PojoClassFactory.getPojoClass((Class>) type);
if (filter == null || filter.include(pojoClass)) {
pojoClasses.add(pojoClass);
}
}
return pojoClasses;
}
public List getPojoSubPackages() {
List pojoPackages = new LinkedList();
for (Package entry : jdkPackage.getSubPackages()) {
pojoPackages.add(new PojoPackageImpl(entry.getPackageName()));
}
return pojoPackages;
}
public T getAnnotation(final Class annotationClass) {
if (packageInfoPojoClass == null) {
return null;
}
return packageInfoPojoClass.getAnnotation(annotationClass);
}
public List extends Annotation> getAnnotations() {
if (packageInfoPojoClass == null) {
return Collections.emptyList();
}
return packageInfoPojoClass.getAnnotations();
}
@Override
public String toString() {
return String.format("PojoPackageImpl [packageName=%s]", packageName);
}
}