User Tools

Site Tools


install

This is an old revision of the document!


How to Use Ptidej to Identify Occurrences of Design Motifs: A Quick Start

1. Environment

This guide based on the experience on Ecilpes 3.5 in WindowsXP and Fedora Eclipse released with FC11. It should work with any Eclipse version but you must install the C/C++ Development Tooling (CDT) for the C++ creator to work. To do so, install first Eclipse; then go to Help → Install New Software, visit the CDT Web site, and install the CDT Main Features.

2. Checking out the Ptidej Projects

You need an account to access Ptidej SVN repository, please ask Yann-Gaël Guéhéneuc by e-mail. Check out Ptidej using the appropriate Team Set file. If there are build errors after checking out the projects, they usually result of missing project dependencies. Use the quick fix in Eclipse or manually add projects in the project's Java Build Path. Other errors may relate to the incorrect library setting, such as JUnit or JRE.

3. Run in Eclipse

3.1 Ptidej UI Viewer Swing Standalone

Even if some projects fail to build, the Ptidej UI Viewer Swing Standalone can still run thanks to the use of reflection. In Eclipse, run it as an application and watch this video for details on how to use the GUI.

3.2 Batch Mode

Make sure the project Ptidej Solver Tests is successfully built. Some projects are not required though listed in the required projects section of the project properties, under Java Build Path. A working set of projects includes CPL, JChoco, PADL, PADL Analyses, PADL Creator ClassFile, PADL Design Motifs, Ptidej, and Ptidej Solver 4, see also the available Team Project Files. The path to the JAR or class files that you want to analyse must be set in class ptidej.solver.helper.DesignMotifsIdentifer: modify its code to fit your settings and run its main method. The path for the result files is also set in this class.

4. Run as JAR

I Compile the project into a runnable JAR with the Run Configuration in step 3.2 using Eclipse Export on Eclipse 3.5 in WinXP. You will get the error messages below when running this JAR in Fedora where default JDK is OpenJDK1.6:

padl.FileAccessException
at padl.util.repository.file.ClassFileRepository.storeFiles(ClassFileRepository.java:60)
at padl.util.repository.file.ClassFileRepository.getMetaModelFiles(ClassFileRepository.java:115)
at padl.util.repository.file.ClassFileRepository.getFiles(ClassFileRepository.java:134)
at padl.util.repository.constituent.ConstituentRepository.<init>(ConstituentRepository.java:62)
at padl.util.repository.constituent.ConstituentRepository.getInstance(ConstituentRepository.java:37)
at ptidej.solver.helper.DesignMotifIdentificationCaller.analyseCodeLevelModelFromJAR(DesignMotifIdentificationCaller.java:920)
at ptidej.solver.helper.DesignMotifIdentificationCaller.main(DesignMotifIdentificationCaller.java:100)
Loading class files in: ./1_0/org.eclipse.jdt.core/jdtcore.jar
Exception in thread "main" java.lang.NullPointerException
at padl.creator.AbstractClassFileCreator.createElements(AbstractClassFileCreator.java:239)
at padl.creator.AbstractClassFileCreator.create(AbstractClassFileCreator.java:224)
at padl.kernel.impl.CodeLevelModel.create(CodeLevelModel.java:48)
at ptidej.solver.helper.DesignMotifIdentificationCaller.analyseCodeLevelModelFromJAR(DesignMotifIdentificationCaller.java:919)
at ptidej.solver.helper.DesignMotifIdentificationCaller.main(DesignMotifIdentificationCaller.java:100)

So you may consider to run this JAR in the java environment using SunJDK.

5. Memory Usage

For big JAR or class files, give enough memory to the JVM, wit -Xmx2048M you will be able to anlyse the UI part of JDT 3.0.

install.1392533620.txt.gz · Last modified: 2019/10/06 20:37 (external edit)