Editing Loggifier.unkrig.de

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
<meta name="keywords" content="java, logging, inject, automated"></meta>
<meta name="description" content="A tool for automated injection of logging code into Java class files"></meta>
== Motivation ==
== Motivation ==


Line 31: Line 29:
== Getting started ==
== Getting started ==


Click [[Loggifier.unkrig.de / Getting Started|here]] to take the fast track to Loggifier.
I presume that you know what <code>java.util.logging</code> is and why you want to use logging at all (e.g. in favor of an interactive debugger).
 
So let's start with a very simple program:
 
  '''import''' java.util.logging.Logger;
   
  '''public class''' Main {
   
      '''private static final''' Logger LOGGER = Logger.getLogger("Main.USER");
   
      '''public static void''' main(String[] args) {
          System.out.println("HELLO WORLD");
          LOGGER.fine("About to terminate");
      }
  }
 
By default, <code>java.util.logging</code> is disabled, so we don't get any logging output:
 
  '''$ javac Main.java'''
  '''$ java Main'''
  HELLO WORLD
  '''$'''
 
To enable logging, we need to create one more file
 
  # File 'my_logging.properties'.
  .level = FINEST
  handlers = java.util.logging.ConsoleHandler
  java.util.logging.ConsoleHandler.level    = FINEST
  java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
  java.util.logging.SimpleFormatter.format  = [%2$20s] %4$s: %5$s%n
 
, and run our program with the <code>java.util.logging.config.file</code> system property set:
 
  '''$ java -Djava.util.logging.config.file=my_logging.properties Main'''
  HELLO WORLD
  <span style="color:red">[          Main main] FINE: About to terminate</span>
  '''$'''
 
So now let's loggify the <code>Main</code> class! Get <code>de.unkrig.loggifier.jar</code> and <code>de.unkrig.loggifier-runtime.jar</code> from [http://loggifier.unkrig.de/download/] and run:
 
  '''$ ls -l'''
  -rwx------+ 1 aunkrig users 969 Aug 26 11:23 Main.class
  '''$ java -cp de.unkrig.loggifier.jar de.unkrig.loggifier.Main Main.class'''
  '''$ ls -l'''
  -rwx------+ 1 aunkrig users 2314 Aug 26 11:23 Main.class
  '''$'''
 
Not only can you pass class files to LOGGIFER, but also directories, files in ZIP format that contain <code>.class</code> files (e.g. JAR and WAR files), and even ZIP files that contain nested ZIP files with <code>.class</code> files (e.g. EAR files). In
any case, LOGGIFIER will modify the contained <code>.class</code> files "in-place".
 
(In this example, we were using the [[#Command line tool|command line tool]], but there are several other [[#Tools|tools]] to get the job done.)
 
Now what logging do we get now?
 
  '''$ java -Djava.util.logging.config.file=my_logging.properties -cp de.unkrig.loggifier-runtime.jar\;. Main'''
  <span style="color:red">[    Main <clinit>()] FINER: (Main.java:6) ENTRY  args=()</span>
  <span style="color:red">[    Main <clinit>()] FINER: (Main.java:6) RETURN</span>
  <span style="color:red">[ Main main(String[])] FINER: (Main.java:9) ENTRY  args=(args=String[0])</span>
  HELLO WORLD
  <span style="color:red">[          Main main] FINE: About to terminate</span>
  <span style="color:red">[ Main main(String[])] FINER: (Main.java:12) RETURN</span>
  '''$'''
 
Notice that you now need to have the (very small) <code>de.unkrig.loggifier-runtime.jar</code> on the class path, because the injected logging code needs that.
 
By default, LOGGIFIER injects a 'reasonable' amount of logging: You can see how the class initializer of the <code>Main</code> class is executed, then how the <code>main()</code> method is entered and how it returns. Notice how the hand-written logging seamlessly mixes with the automatically injected logging.
 
Effectively, we can now remove the hand-written logging code from our class, because the automatically injected logging
code now does the job:
 
  '''public class''' Main {
   
      '''public static void''' main(String[] args) {
          System.out.println("HELLO WORLD");
      }
  }
 
Now let's compile, loggify and run again:
 
  '''$ java -Djava.util.logging.config.file=my_logging.properties -cp de.unkrig.loggifier-runtime.jar\;. Main'''
  <span style="color:red">[    Main <clinit>()] FINER: (Main.java:6) ENTRY  args=()</span>
  <span style="color:red">[    Main <clinit>()] FINER: (Main.java:6) RETURN</span>
  <span style="color:red">[ Main main(String[])] FINER: (Main.java:9) ENTRY  args=(args=String[0])</span>
  HELLO WORLD
  <span style="color:red">[ Main main(String[])] FINER: (Main.java:12) RETURN</span>
  '''$'''
 
For demonstration, we now set the amount of logging to the highest possible level. There are several ways to configure the injection of logging code: We can pass a [[#Loggification rules|loggification rule]] to the LOGGIFER like '-rule ALL=FINE', or through a <code>@Loggify</code> annotation to any class, constructor or method declaration:
 
  '''import''' de.unkrig.loggifier.runtime.annotation.Loggify;
   
  @Loggify("ALL=FINE")
  '''public class''' Main {
      // ...
 
Then compile, loggify and run again:
 
  '''$ javac Main.java -cp de.unkrig.loggifier-runtime.jar'''
  '''$ java -cp de.unkrig.loggifier.jar de.unkrig.loggifier.Main Main.class'''
  '''$ java -Djava.util.logging.config.file=my_logging.properties -cp de.unkrig.loggifier-runtime.jar\;. Main'''
  <span style="color:red">[    Main <clinit>()] FINE: (Main.java:1) CLINIT Main</span>
  <span style="color:red">[    Main <clinit>()] FINE: (Main.java:9) ENTRY  args=()</span>
  <span style="color:red">[    Main <clinit>()] FINE: (Main.java:9) CONST  "Main.USER"</span>
  <span style="color:red">[    Main <clinit>()] FINE: (Main.java:9) INVOKE Logger.getLogger(String): args=("Main.USER")</span>
  <span style="color:red">[    Main <clinit>()] FINE: (Main.java:9) RESULT Logger.getLogger(String) => java.util.logging.Logger@53c60f74</span>
  <span style="color:red">[    Main <clinit>()] FINE: (Main.java:9) PUT    java.util.logging.Logger@53c60f74 => Main.LOGGER</span>
  <span style="color:red">[    Main <clinit>()] FINE: (Main.java:9) RETURN</span>
  <span style="color:red">[ Main main(String[])] FINE: (Main.java:12) ENTRY  args=(args=String[0])</span>
  <span style="color:red">[ Main main(String[])] FINE: (Main.java:12) GET    System.out => java.io.PrintStream@7020b3a3</span>
  <span style="color:red">[ Main main(String[])] FINE: (Main.java:12) CONST  "HELLO WORLD"</span>
  <span style="color:red">[ Main main(String[])] FINE: (Main.java:12) INVOKE PrintStream.println(String): target=java.io.PrintStream@7020b3a3, args=("HELLO WORLD")</span>
  HELLO WORLD
  <span style="color:red">[ Main main(String[])] FINE: (Main.java:12) RESULT PrintStream.println(String)</span>
  <span style="color:red">[ Main main(String[])] FINE: (Main.java:15) RETURN</span>
  '''$'''
 
(Notice that JAVAC now needs "de.unkrig.loggifier-runtime.jar" on the class path, because "@Loggify" lives there.)
 
Now you can watch how the <code>System.out</code> field is read and the string constant <code>"HELLO WORLD"</code> is used - if you're interested.


== Tools ==
== Tools ==
Line 38: Line 155:


* At build time:
* At build time:
** The LOGGIFIER [[Loggifier.unkrig.de / Tools / Command line tool|command line tool]]
** The LOGGIFIER [[#Command line tool|command line tool]]
** The LOGGIFIER [[Loggifier.unkrig.de / Tools / Eclipse plug-in|ECLIPSE plug-in]]
** The LOGGIFIER [[#ECLIPSE Plugin|ECLIPSE plug-in]]
** The <code><de.unkrig.loggifier></code> [[Loggifier.unkrig.de / Tools / Ant task|ANT task]]
** The &lt;de.unkrig.loggifier> [[#ANT task|ANT task]]
* At runtime:
* At runtime:
** The [[Loggifier.unkrig.de / Tools / LoggifyingClassLoader|LoggifyingClassLoader]]
** The [[#LoggifyingClassLoader|LoggifyingClassLoader]]
** The LOGGIFIER [[Loggifier.unkrig.de / Tools / Java agent|Java agent]]
** With a [[#Java Agent|Java agent]]
 
=== Command line tool ===
 
  '''$ java -cp de.unkrig.loggifier.jar de.unkrig.loggifier.Main -help'''
  Implants logging code into Java class files 'in-place', also in ZIP format
  files (zip, jar, war, ear, ...) and nested ZIP format files.
  Usage:
    java de.unkrig.loggifier.Main [ &lt;option> ] ... &lt;dir-or-file>
    java de.unkrig.loggifier.Main [ &lt;option> ] ... &lt;dir-or-file> &lt;dir-or-file>
    java de.unkrig.loggifier.Main [ &lt;option> ] ... &lt;dir-or-file> ... &lt;dir>
 
  Valid options:
    -keep          Keep copies of original files
    -selector &lt;glob>
                    Loggify only files matching the &lt;glob>, e.g. '**.jar!**Test*.class'
    -rule &lt;rule>    Add the given rule
  The rule format is as follows
    &lt;action>[,&lt;action>]...=&lt;level>[:&lt;expression>]
  &lt;action>    is one of [ALOAD, ARITH, ASTORE, CAST, CATCH, CLINIT, CONST, CONVERT, ENTRY, GET, INVOKE, INSTANCEOF,
              LENGTH, LOAD, NEW, PUT, RESULT, RETURN, STORE, SWITCH, THROW]
  &lt;level>      is one of [ OFF SEVERE WARNING INFO CONFIG FINE FINER FINEST ]
  &lt;expression> is like '(&lt;eq> || &lt;eq>) && !&lt;eq>', where
  &lt;eq>        is '&lt;var> == &lt;glob>', where
  &lt;var>        is one of [ class source line ] (for action 'STORE' also 'name').
  &lt;glob>      is a 'glob pattern' in single quotes like '*main*'.
 
  The exit status is 1 iff errors eccurred during loggification.
 
=== ECLIPSE Plugin ===
 
When the plug-in is installed (see below), you will find a new page in the 'Project Properties' dialog:
 
[[File:Loggifer_project_properties_page.png]]
 
Here you can enable and configure loggification for the project.
 
=== ANT task ===
 
LOGGIFIER defines a new task "&lt;de.unkrig.loggifier>" that loggifies your code just like the command line tool. See the [[#Example|example]] to see how to make the new task accessible from inside your ANT script.
 
==== Attributes ====
 
;selector      :Which class files to instrument, e.g. "~**Test*.class". Default is "all files".
;out          :Where to write the output file or directory. Default is to perform an "in-place" loggification
;keepOriginals :Keep copies of the original files (e.g. <code>.MyClass.class.orig</code> and <code>.MyJar.jar.orig</code>).
 
==== Subelements ====
 
;rule                                :A loggification rule, e.g. 'STORE=FINE'
;Resource Collection (<fileset> etc.) :The files to loggify (.class, .jar, .war, .ear, ...)
 
==== Example ====
 
  <project>
      <taskdef classpath="lib/de.unkrig.loggifier.jar" resource="de/unkrig/loggifier/ant.properties" />
 
      <target name="default">
          <loggifier>
              <rule>ALL=FINE</rule>
              <fileset file="bin/Main.class" />
          </loggifier>
      </target>
  </project>


== Loggification ==
=== LoggifyingClassLoader ===


The LOGGIFIER loads a class file and analyzes the bytecode of the class's constructors and methods. Looking at the code, it identifies "interesting" points where logging code could be inserted. Each of the logging points is characterized by an [[#Logging actions|action]]. For each logging point, the relevant [[#Loggification rules|loggification rules]] are executed, and the first that matches determines at what level the logging event is to be logged (or if no logging code is injected for this logging point). Loggification rules optionally have a [[#Discriminator expression|discriminator expression]], which has a set of [[#Discriminator expression parameters|parameters]].
From inside a running JVM, you can load loggified classes with the help of the <code>de.unkrig.loggifier.LoggifyingClassLoader</code>.


=== Logging actions ===
=== Java Agent ===


Each section of code is characterized by an 'Action'. For example, the JVM bytecodes <code>PUTFIELD</code> and <code>PUTSTATIC</code> are characterized by action '''PUT'''.
Probably the most convenient way to loggify classes at runtime is to start the JVM with the following command line option:


{| class="wikitable"
  java -javaagent:path/to/de.unkrig.loggifier.jar ...
|-
|'''ALOAD'''    ||Log array type, array value, index and element value read from an array
|-
|'''ARITH'''    ||Log operands, operator (+, -, ...) and result of an arithmetic operation
|-
|'''ASTORE'''    ||Log the array, the index and the value being stored in an array
|-
|'''CAST'''      ||Log the type to which the operand is casted
|-
|'''CATCH'''    ||Log the declared catch type and the actually caught exception
|-
|'''CLINIT'''    ||Log the name of a class that is initialized
|-
|'''CONST'''    ||Log the value of a constant being pushed on the operand stack
|-
|'''CONVERT'''  ||Log a value that is arithmetically converted and the conversion result
|-
|'''ENTRY'''    ||Log the target object (if non-static) and the arguments as a method begins execution
|-
|'''GET'''      ||Log declaring class of, name of, source instance of (if non-static) and value read from a field
|-
|'''INVOKE'''    ||Log signature, target object (if non-static) and arguments right before a method is invoked
|-
|'''INSTANCEOF'''||Log the type to which the operand type is compared
|-
|'''LENGTH'''    ||Log the array who's length is determined
|-
|'''LOAD'''      ||Log type of, name of and value read from a local variable
|-
|'''NEW'''      ||Log the type of a new object being instantiated
|-
|'''PUT'''      ||Log declaring class of, name of, target instance of (if non-static) and value assigned to field
|-
|'''RESULT'''    ||Log method signature and invocation result (if not 'void')
|-
|'''RETURN'''    ||Log the value that is being returned by a method (if not 'void')
|-
|'''STORE'''    ||Log value assigned to, type of and name of a local variable
|-
|'''SWITCH'''    ||Log the integer value that a switch is being executed on
|-
|'''THROW'''    ||Log an exception right before it is thrown
|}


=== Loggification rule syntax ===
The LOGGIFIER plugs into the [[http://docs.oracle.com/javase/7/docs/api/java/lang/instrument/package-summary.html|Java programming language agents" API]] (available since Java 5) and implements loggification at class-loading time.


A rule triggers if and only if
== Loggification events ==
* It applies to the action of the loggification point (ENTRY, EXIT, THROW, ...)
* Its discriminator expression (if any) evaluates to TRUE for the actual point (who's properties are availables as variables in the discriminator expression, see above)


The syntax of all loggification rules is:
Generally the LOGGIFER considers various points in the code that could be subject to loggification. Each of these
points is identified by


loggification-rule :=
;action
    ( action { ',' action } | 'ALL' ) '=' level [ ':' discriminator-expression ]
:E.g. 'method entry', 'local variable assignment', 'arithmetic operation' (see [[#Logging actions|logging actions]])
;source
action :=
:The name of the Java source file that JAVAC stores in each .class file if enabled by '-g:source'.
    (One of the actions documented above)
;classAccess
:The accessibility of the class being instrumented ('public', 'protected' or 'private')
level :=
;class
    'SEVERE' | 'WARNING' | 'INFO' | 'CONFIG' | 'FINE' | 'FINER' | 'FINEST'
:The fully qualified name of the class being instrumented, e.g. '{@code pkg.MyClass}'
;methodAccess
discriminator-expression :=
:The accessibility of the method being instrumented ('public', 'protected' or 'private')
    (Syntax defined below)
;method
:The enhanced, dequalified name of the method being instrumented, e.g. 'meth(String, MyClass)' or '<T extends IOException>meth(T, MyClass, List<T>)'
;line
:The line number related to the code point being instrumented that JAVAC stores in each .class file if enabled by '-g:lines'.
;type (only for actions CAST, INSTANCEOF and NEW)
:The relevant type for the operation, e.g. 'pkg.Class', 'pkg.Class[][]', 'int[][]'
;classAndField (only for actions GET and PUT)
:The subject class and field, e.g. 'pkg.Class.field'
;variable (only for actions LOAD and STORE)
:The name of the subject local variable
 
At each loggification point, the LOGGIFIER determines if logging code is to be inserted or not ('discrimination') and
on which level the event will be logged at runtime ('level'). This is achieved by checking the 'loggification
rules'.


Examples of valid loggification rules are:
== Logging actions ==


ALL=FINE
;ALOAD    :Log array type, array value, index and element value read from an array
ENTRY=FINE
;ARITH    :Log operands, operator (+, -, ...) and result of an arithmetic operation
ARITH=FINE
;ASTORE    :Log the array, the index and the value being stored in an array
LOAD,CONVERT,ARITH,STORE=FINE
;CAST      :Log the type to which the operand is casted
ALL=FINE:class =* "de.*"
;CATCH    :Log the declared catch type and the actually caught exception
;CLINIT    :Log the name of a class that is initialized
;CONST    :Log the value of a constant being pushed on the operand stack
;CONVERT  :Log a value that is arithmetically converted and the conversion result
;ENTRY     :Log the target object (if non-static) and the arguments as a method begins execution
;GET      :Log declaring class of, name of, source instance of (if non-static) and value read from a field
;INVOKE    :Log signature, target object (if non-static) and arguments right before a method is invoked
;INSTANCEOF:Log the type to which the operand type is compared
;LENGTH    :Log the array who's length is determined
;LOAD     :Log type of, name of and value read from a local variable
;NEW      :Log the type of a new object being instantiated
;PUT      :Log declaring class of, name of, target instance of (if non-static) and value assigned to field
;RESULT    :Log method signature and invocation result (if not 'void')
;RETURN    :Log the value that is being returned by a method (if not 'void')
;STORE     :Log value assigned to, type of and name of a local variable
;SWITCH    :Log the integer value that a switch is being executed on
;THROW    :Log an exception right before it is thrown


(<code>=*</code> is the 'glob matching operator', e.g. "hello" matches "he*".)
== Loggification rules ==


=== Loggification rule precedence ===
To each loggification point a sequence of loggification rules applies. The first rule that triggers determines the
level on which the point will be logged at runtime. (If the level evaluates to 'OFF' then no logging code is
inserted.)
 
A rule triggers if and only if
* It applies to the action of the loggification point (ENTRY, EXIT, THROW, ...)
* Its discriminator expression (if any) evaluates to TRUE for the actual point (who's properties are availables as variables in the discriminator expression, see above)


The sequence of checked rules for each logging point is as follows:
The sequence of checked rules for each logging point is as follows:
Line 141: Line 313:
:Its values of in reverse order (i.e. the last value/rule takes the highest precedence).
:Its values of in reverse order (i.e. the last value/rule takes the highest precedence).


;If using the four-parameter [[Loggifier.unkrig.de / Tools / LoggifyingClassLoader|LoggifyingClassLoader]] constructor
;If using the four-parameter LoggifyingClassLoader constructor
:The 'logLevelCalculator' argument.
:The 'logLevelCalculator' argument.


;If using the [[Loggifier.unkrig.de / Tools / Ant task|ANT task]]
;If using the ANT task
:<code><rule></code> subelements, in reverse order (i.e. the last <code><rule></code> takes the highest precedence).
:'<rule>' subelements, in reverse order (i.e. the last <rule> takes the highest precedence).


;If using the [[Loggifier.unkrig.de / Tools / Command line tool|LOGGIFIER command line tool]]
;If using the LOGGIFIER command line tool
:The '-rule' options, in reverse order (i.e. the last '-rule' option takes the highest precedence).
:The '-rule' options, in reverse order (i.e. the last '-rule' option takes the highest precedence).


;If using the [[Loggifier.unkrig.de / Tools / Eclipse plug-in|ECLIPSE plug-in]]
;If using the ECLIPSE builder
:The levels on the "Loggifier" property page of each project. (This rule ALWAYS applies, hence the following rules are never executed).
:The levels on the "Loggifier" property page of each project. (This rule ALWAYS applies, hence the following rules are never executed).


;If using the [[Loggifier.unkrig.de / Tools / Java agent|Java agent]]
;Accesses to local variable who's name ends with '__'
:Its argument string passed to the agent, split at '\n', in reverse order (i.e. the last fragment/rule takes the highest precedence).
 
;If the action is LOAD or STORE, and the local variable's name ends with '__'
:FINER
:FINER


;If the action is GET or PUT, and the field's name ends with '__'
;Accesses to fields who's name ends with '__'
:FINER
:FINER


;If the action is NEW, CAST or INSTANCEOF, and the target class's name ends with '__'
;Instantiations of a class who's name ends with '__'
:FINER
 
;If the action is ENTRY, RETURN or THROW
:FINER
:FINER


Line 171: Line 337:
:OFF
:OFF


Notice that non-static fields (a.k.a. 'instance variables') are initialized by the class's constructors. Static fields ('class variables') are initialized by the synthetic <code><clinit>()</code> method, which cannot be annotated in source code.
Notice that non-static fields (a.k.a. 'instance variables) are initialized by the class's constructors. Static fields ('class variables') are initialized by the synthetic '<clinit>()' method, which cannot be annotated in source code.
 
=== Discriminator expression ===
 
Discriminator expressions are implemented by means of <code>de.unkrig.commons.text.expression.ExpressionEvaluator</code>; find the expression syntax documented [http://commons.unkrig.de/javadoc/de/unkrig/commons/text/expression/Parser.html here].
 
=== Discriminator expression parameters ===
 
To provide fine-grained control over loggification, the properties of each loggification point are provided as parameters to the discriminator expression:
 
;action
:One of the [[#Logging actions|documented logging actions]]
;source
:The name of the Java source file that JAVAC stores in each <code>.class</code> file if enabled by <code>-g:source</code>.
;classAccess
:The accessibility of the class being instrumented (<code>public</code>, <code>protected</code> or <code>private</code>)
;class
:The fully qualified name of the class being instrumented, e.g. <code>pkg.MyClass</code>
;methodAccess
:The accessibility of the method being instrumented (<code>public</code>, <code>protected</code> or <code>private</code>)
;method
:The enhanced, dequalified name of the method being instrumented, e.g. <code>meth(String, MyClass)</code> or <code><T extends IOException>meth(T, MyClass, List<T>)</code>
;line
:The line number related to the code point being instrumented that JAVAC stores in each .class file if enabled by <code>-g:lines</code>
;type
:The relevant type for the operation, e.g. <code>pkg.Class</code>, <code>pkg.Class[][]</code>, <code>int[][]</code> (only for actions '''CAST''', '''INSTANCEOF''' and '''NEW''')
;classAndField
:The subject class and field, e.g. <code>pkg.Class.field</code> (only for actions '''GET''' and '''PUT''')
;variable
:The name of the subject local variable (only for actions '''LOAD''' and '''STORE''')
 
At each loggification point, the LOGGIFIER determines if logging code is to be inserted or not ('discrimination') and
on which level the event will be logged at runtime ('level'). This is achieved by checking the 'loggification
rules'.


== Download ==
== Download ==
Please note that all contributions to unkrig.de may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Unkrig.de:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)