|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.sleepycat.persist.model.ClassEnhancer
public class ClassEnhancer
Enhances the bytecode of persistent classes to provide efficient access to
fields and constructors, and to avoid special security policy settings for
accessing non-public members. Classes are enhanced if they are annotated
with Entity
or Persistent
.
ClassEnhancer
objects are thread-safe. Multiple threads may
safely call the methods of a shared ClassEnhancer
object.
As described in the package summary, bytecode enhancement may be used either at runtime or offline (at build time).
To use enhancement offline, this class may be used as a main
program
.
For enhancement at runtime, this class provides the low level support needed to transform class bytes during class loading. To configure runtime enhancement you may use one of the following approaches:
je-<version>.jar
or db.jar
file may be used as
an instrumentation agent as follows:
java -javaagent:<BDB-JAR-FILE>=enhance:packageNames ...
packageNames
is a comma separated list of packages containing
persistent classes. Sub-packages of these packages are also searched. If
packageNames
is omitted then all packages known to the current
classloader are searched.
The "-v" option may be included in the comma separated list to print the name of each class that is enhanced.
enhance(java.lang.String, byte[])
method may be called to implement a class loader
that performs enhancement. Using this approach, it is the developer's
responsibility to implement and configure the class loader.
Constructor Summary | |
---|---|
ClassEnhancer()
Creates a class enhancer that searches all packages. |
|
ClassEnhancer(Set<String> packageNames)
Creates a class enhancer that searches a given set of packages. |
Method Summary | |
---|---|
byte[] |
enhance(String className,
byte[] classBytes)
Enhances the given class bytes if the class is annotated with Entity or Persistent . |
boolean |
getVerbose()
Gets verbose mode. |
static void |
main(String[] args)
Enhances classes in the directories specified. |
static void |
premain(String args,
Instrumentation inst)
Enhances classes as specified by a JVM -javaagent argument. |
void |
setVerbose(boolean verbose)
Sets verbose mode. |
byte[] |
transform(ClassLoader loader,
String className,
Class<?> classBeingRedefined,
ProtectionDomain protectionDomain,
byte[] classfileBuffer)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ClassEnhancer()
public ClassEnhancer(Set<String> packageNames)
packageNames
- a set of packages to search for persistent
classes. Sub-packages of these packages are also searched. If empty or
null, all packages known to the current classloader are searched.Method Detail |
---|
public static void main(String[] args) throws Exception
java -cp je-<version>.jar com.sleepycat.persist.model.ClassEnhancer ./classes
The "-v" argument may be specified to print the name of each class file that is enhanced. The total number of class files enhanced will always be printed.
args
- one or more directories containing classes to be enhanced.
Subdirectories of these directories will also be searched. Optionally,
-v may be included to print the name of every class file enhanced.
Exception
public static void premain(String args, Instrumentation inst)
Instrumentation
public void setVerbose(boolean verbose)
True may be specified to print the name of each class file that is enhanced. This property is false by default.
public boolean getVerbose()
setVerbose(boolean)
public byte[] transform(ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer)
transform
in interface ClassFileTransformer
public byte[] enhance(String className, byte[] classBytes)
Entity
or Persistent
.
className
- the class name in binary format; for example,
"my.package.MyClass$Name", or null if no filtering by class name
should be performed.classBytes
- are the class file bytes to be enhanced.
|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |