|
|
LogMX Parser Development
Page summary:
|
Useful links:
|
LogMX can use three types of parsers to extract log entries from files:
Log4j Pattern Parsers, Simple Parsers, and Java Class Parsers.
Creating the two first types of parsers consist in describing your file format directly through LogMX
graphical interface, then LogMX will create for you an internal Parser matching this format.
This page deals with the third type of parsers: Java Class Parsers. You can implement a LogMX Parser
by writing only one Java Class. Then copying this class file in a dedicated LogMX folder will allow you
to use this Parser, the same way you use the two first parser types.
Creating such a Java Class Parser is the most powerful way to parse any kind of file, from a simple
text file to a complex HTML/XML file.
Eclipse development environment
LogMX distribution includes an Eclipse project for developing parsers.
Here is how to prepare your development environment for Eclipse:
- Project import
In Eclipse, click on "File" menu, then "Import". Choose "Existing Projects into Workspace" in the dialog box
and click on the "Next>" button.
Click on the "Browse" button (in the upper right corner) and select LogMX directory before clicking the "OK" button.
You can unselect "LogMX Managers" if you don't want to write LogMX managers (see manager dev).
Then click on the "Finish" button.
- Project configuration (Jar file path)
In the "Package Explorer" view (usually on the left), right click on the new project "LogMX Parsers", and select
"Properties". In the new dialog box, choose "Java Build Path" (usually on the left), and go to the "Libraries" tab.
Double-click the line "LOGMX_HOME/jar/logmx.jar". Click on the "Variable" button, then the "New" button. In front
of "Name", type "LOGMX_HOME", then click on the "Folder" button to choose your LogMX directory (e.g.
C:\Program Files\LogMX). Finally, click on "OK" buttons to go back to the "Libraries" tab.
Eclipse project configuration: 'LOGMX_HOME' variable
- Project configuration (LogMX API Javadoc link)
Always in project properties dialog box, expand the item "LOGMX_HOME/jar/logmx.jar" and double-click on
"Javadoc location". Click the "Browse" button and select the "help/api" directory of your LogMX distribution.
To finish, click on "OK" buttons to go back to Eclipse main window.
Eclipse project configuration: LogMX API Javadoc link
- Creating your Parser
In the "Package Explorer" view, right-click on the "src" directory of your project, and then click
on the "New" > "Class" option. In the new dialog box, type a package name in front of "Package"
(e.g. "my.parser"). In front of "Name", type your Parser class name (e.g. "TestParser").
In front of "Superclass", type "com.lightysoft.logmx.mgr.LogFileParser" (or you can start typing
"LogFile" and use Ctrl-Space completion). Ensure option "Inherited abstract methods" is
checked, and then click on the "Finish" button.
Parser class creation with Eclipse
You are now ready to implement your parser, see section Parser implementation for
more information.
Parser development with Eclipse (here, LogMX API javadoc helping developper)
Ant development environment
LogMX distribution includes an Ant build file for developing parsers.
Here is how to develop a LogMX Parser using Ant:
- Creating Parser class file
In "parsers/src" directory of your LogMX distribution, create directories matching your
packages name (e.g. create "my/parser/" for packages "my.parser"). Create your java class
source file in your package directory (e.g. file "TestParser.java" in "my/parser/").
You are now ready to implement your parser, see section Parser implementation for
more information.
- Compiling Parser class file
Open a shell in the "parsers" directory of your LogMX distribution, and simply type
"ant" to compile in "classes" directory all parsers present
in "src" directory.
Here is the list of all available targets: (use "ant -p"
to get it from your shell)
| (default target) |
build-dev |
Build parsers for development (no optimize, all debug symbols) |
|
build-prod |
Build parsers for production (optimized, no debug symbol) |
|
clean |
Remove all generated class files |
|
mkoutdir |
Create classes output directory |
Writing a LogMX Java Parser consists in creating a Java class that extends the abstract
class LogFileParser and implementing
its abstract methods.
To get detailed information on these methods you have to implement, see our on-line
javadoc or
read it from your LogMX distribution (under "help/api").
For a complete example of Parser implementation, see "SampleParser.java" in directory "parsers/src/sample/parser"
of your LogMX distribution, or see it online: Parser class sample.
If you have any problem or question, please visit our
Parser Development Forum or
contact us.
Here is how to test your Parser in LogMX:
-
Parser compilation
Compile your Parser to "parser/classes" (see above to compile it with Eclipse or Ant).
NOTE: If you have several versions of Java installed, be sure to run LogMX with a Java version greater
or equal to the version of the compiler you use to compile your Parser (you can run LogMX with
Java 1.6 to use a Parser compiled with Java 1.5, but you cannot run it with Java 1.5 to use a Parser
compiled with Java 1.6).
To get the version you use to run LogMX, go to "Help" menu, "About" option, and click on the
blue "i" icon in the left bottom corner: version is specified in front of property "java.version"
in the upper table.
To get the version you use to compile your Parser:
• with Eclipse, right-click on your Eclipse project and select the "Properties" option.
Then click on "Java compiler" in the left pane.
• with Ant, check your JAVA_HOME environment variable.
If you don't have such a variable, Ant will use the JDK directory of your PATH
environment variable: type "java -version" in your shell to get this Java version.
-
Parser installation
In the "Tools" LogMX menu, click on "Options...". In the dialog box that appeared, go to the "Parsers" tab
and click on the green "+" button on the right. In the new dialog box, go to "Java parser class" and
select your Parser in the main tree (as you can see in this dialog box, you can add Parsers included in a Jar file).
Of course, you have to do this only once, then LogMX will try to use this parser for every file you will open.
Parser installation in LogMX
-
Parser test
To test your parser, simply open a log file written in a format your Parser handles.
If LogMX opens your file in raw-text mode or you get an error message, first try to make your
parser the first parser to be used: in "Tools/Options/Parsers" dialog box, click on your parser
and move it to the top of the list using the green-up-arrow button in the right pane.
If LogMX is still not able to open your log file properly and this file begins with
many lines before describing the first log entry, increase the amount of lines to read
from file before switching to next Parser if no entry found (bottom of "Tools/Options/Parsers" dialog box).
Parser configuration in LogMX
If you recompile your parser, you shouldn't have to restart LogMX to use the last version of your parser
if you check the option "Reload Java Parsers for each file load" in the dialog above (this option can be turned off
for better performance, your Parser class file will then be stored in a cache).
|
Copyright © 2012 LightySoft. All rights reserved.
|
|