Skip to content

Commit

Permalink
Completed Java PIT Library and analyzer.
Browse files Browse the repository at this point in the history
Converting to GPL, assuming ownership, and causing changes to be made available on Github as per conversation with Benjamin Dobell here Benjamin-Dobell#1
  • Loading branch information
adamoutler committed Nov 24, 2013
1 parent 8243ab3 commit 7d1ded1
Show file tree
Hide file tree
Showing 30 changed files with 2,931 additions and 721 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Compiled source #
###################
*dist/*.*
*build/*.*

# Private Props #
###################
*nbproject/private/*

34 changes: 15 additions & 19 deletions LICENSE
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
 Copyright (c) 2010-2011 Benjamin Dobell, Glass Echidna

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
/*Copyright (C) 2013 Adam Outler, casual-dev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
23 changes: 23 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
This package is developed using NetBeans IDE v7.4 and licensed under GPLv3.

--Build Instructions--
from the root of this project, run Apache Ant with the command "ant".
Upon ant build of this project, the compiled jar will be compiled into the dist directory.

--Latest Distributable Version--
Package: http://jenkins.casual-dev.com/view/All/job/Build%20libpitX/ws/trunk/X/libpitX/dist/libpit-X.jar
Javadoc: http://jenkins.casual-dev.com/view/All/job/Build%20libpitX/ws/trunk/X/libpitX/dist/javadoc/*zip*/javadoc.zip
Source: http://jenkins.casual-dev.com/view/All/job/Build%20libpitX/ws/trunk/X/libpitX/src/*zip*/src.zip
--Older Versions--
Archives: http://goo.im/devs/AdamOutler/libpitX

--PIT Analysis--
this libaray has a main method which allows you to specify a PIT file for analysis. You can use this online here.
Online PIT analyzer: http://jenkins.casual-dev.com/job/Analyze%20PIT%20File/build

--Online Documentation--
Documentation: http://javadoc.casual-dev.com/namespacecom_1_1casual__dev_1_1libpit_x.html
See this thread for discussion: http://forum.xda-developers.com/showthread.php?t=2540480

--Additional--
This package is extracted from an SVN repository and automatically synchronized during build time. You can find the working source here: https://code.google.com/p/android-casual/source/browse/trunk/#trunk%2FCASUALcore%2Fsrc%2FCASUAL%2Farchiving%2Flibpit
73 changes: 73 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- Commands such as Run, Debug, and Test only use this build script if -->
<!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.-->
<project name="libpit-X" default="default" basedir=".">
<description>Builds, tests, and runs the project libpit-X.</description>
<import file="nbproject/build-impl.xml"/>
<!--
There exist several targets which are by default empty and which can be
used for execution of your tasks. These targets are usually executed
before and after some main targets. They are:
-pre-init: called before initialization of project properties
-post-init: called after initialization of project properties
-pre-compile: called before javac compilation
-post-compile: called after javac compilation
-pre-compile-single: called before javac compilation of single file
-post-compile-single: called after javac compilation of single file
-pre-compile-test: called before javac compilation of JUnit tests
-post-compile-test: called after javac compilation of JUnit tests
-pre-compile-test-single: called before javac compilation of single JUnit test
-post-compile-test-single: called after javac compilation of single JUunit test
-pre-jar: called before JAR building
-post-jar: called after JAR building
-post-clean: called after cleaning build products
(Targets beginning with '-' are not intended to be called on their own.)
Example of inserting an obfuscator after compilation could look like this:
<target name="-post-compile">
<obfuscate>
<fileset dir="${build.classes.dir}"/>
</obfuscate>
</target>
For list of available properties check the imported
nbproject/build-impl.xml file.
Another way to customize the build is by overriding existing main targets.
The targets of interest are:
-init-macrodef-javac: defines macro for javac compilation
-init-macrodef-junit: defines macro for junit execution
-init-macrodef-debug: defines macro for class debugging
-init-macrodef-java: defines macro for class execution
-do-jar: JAR building
run: execution of project
-javadoc-build: Javadoc generation
test-report: JUnit report generation
An example of overriding the target for project execution could look like this:
<target name="run" depends="libpit-X-impl.jar">
<exec dir="bin" executable="launcher.exe">
<arg file="${dist.jar}"/>
</exec>
</target>
Notice that the overridden target depends on the jar target and not only on
the compile target as the regular run target does. Again, for a list of available
properties which you can use, check the target you are overriding in the
nbproject/build-impl.xml file.
-->
</project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed libpit-1.3.jar
Binary file not shown.
6 changes: 0 additions & 6 deletions libpit/.classpath

This file was deleted.

17 changes: 0 additions & 17 deletions libpit/.project

This file was deleted.

Loading

0 comments on commit 7d1ded1

Please sign in to comment.