source: release-kits/lirk3/bin/ant-installer/web/java2html/antinstaller/org/tp23/antinstaller/selfextract/NonExtractor.java.html@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 7.9 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2<HTML>
3<HEAD>
4<LINK REL=STYLESHEET TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
5<META NAME="GENERATOR" CONTENT="Java2HTML Version 1.4">
6<TITLE>org.tp23.antinstaller.selfextract.NonExtractor (Java2HTML)</TITLE>
7</HEAD>
8<BODY><TABLE id="Header" border="0" cellpadding="0" cellspacing="0" width="100%">
9<tr>
10<td colspan="2" width="33%">&nbsp;</td>
11<td align="center" colspan="2" width="33%">
12<font size="4" class="ClassName">NonExtractor.java</font>
13</td>
14<td align="right" colspan="2" width="33%">&nbsp;</td>
15</tr>
16</TABLE>
17<pre CLASS="Classes">
18<FONT CLASS="LN">1 </FONT><A NAME="1"></A> <FONT CLASS="MultiLineComment">/*
19<FONT CLASS="LN">2 </FONT><A NAME="2"></A> * Copyright 2005 Paul Hinds
20<FONT CLASS="LN">3 </FONT><A NAME="3"></A> *
21<FONT CLASS="LN">4 </FONT><A NAME="4"></A> * Licensed under the Apache License, Version 2.0 (the "License");
22<FONT CLASS="LN">5 </FONT><A NAME="5"></A> * you may not use this file except in compliance with the License.
23<FONT CLASS="LN">6 </FONT><A NAME="6"></A> * You may obtain a copy of the License at
24<FONT CLASS="LN">7 </FONT><A NAME="7"></A> *
25<FONT CLASS="LN">8 </FONT><A NAME="8"></A> * http://www.apache.org/licenses/LICENSE-2.0
26<FONT CLASS="LN">9 </FONT><A NAME="9"></A> *
27<FONT CLASS="LN">10</FONT><A NAME="10"></A> * Unless required by applicable law or agreed to in writing, software
28<FONT CLASS="LN">11</FONT><A NAME="11"></A> * distributed under the License is distributed on an "AS IS" BASIS,
29<FONT CLASS="LN">12</FONT><A NAME="12"></A> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30<FONT CLASS="LN">13</FONT><A NAME="13"></A> * See the License for the specific language governing permissions and
31<FONT CLASS="LN">14</FONT><A NAME="14"></A> * limitations under the License.
32<FONT CLASS="LN">15</FONT><A NAME="15"></A> */</FONT>
33<FONT CLASS="LN">16</FONT><A NAME="16"></A><FONT CLASS="Package">package</FONT> <A HREF="../../../../org.tp23.antinstaller.selfextract.index.html" target="packageFrame">org.tp23.antinstaller.selfextract</A>;
34<FONT CLASS="LN">17</FONT><A NAME="17"></A>
35<FONT CLASS="LN">18</FONT><A NAME="18"></A><FONT CLASS="Import">import</FONT> java.io.File;
36<FONT CLASS="LN">19</FONT><A NAME="19"></A>
37<FONT CLASS="LN">20</FONT><A NAME="20"></A><FONT CLASS="Import">import</FONT> <A HREF="../../../../org/tp23/antinstaller/InstallException.java.html">org.tp23.antinstaller.InstallException</A>;
38<FONT CLASS="LN">21</FONT><A NAME="21"></A><FONT CLASS="Import">import</FONT> <A HREF="../../../../org/tp23/antinstaller/runtime/ExecInstall.java.html">org.tp23.antinstaller.runtime.ExecInstall</A>;
39<FONT CLASS="LN">22</FONT><A NAME="22"></A><FONT CLASS="Import">import</FONT> <A HREF="../../../../org/tp23/antinstaller/runtime/exe/FilterChain.java.html">org.tp23.antinstaller.runtime.exe.FilterChain</A>;
40<FONT CLASS="LN">23</FONT><A NAME="23"></A><FONT CLASS="Import">import</FONT> <A HREF="../../../../org/tp23/antinstaller/runtime/exe/FilterFactory.java.html">org.tp23.antinstaller.runtime.exe.FilterFactory</A>;
41<FONT CLASS="LN">24</FONT><A NAME="24"></A>
42<FONT CLASS="LN">25</FONT><A NAME="25"></A><FONT CLASS="FormalComment">/**
43<FONT CLASS="LN">26</FONT><A NAME="26"></A> * This class is a replacement for the SelfExtractor that provides a similar
44<FONT CLASS="LN">27</FONT><A NAME="27"></A> * function to the SelfExtractor but avoids the need to extract all the
45<FONT CLASS="LN">28</FONT><A NAME="28"></A> * files prior to running the build. When using this extractor the project
46<FONT CLASS="LN">29</FONT><A NAME="29"></A> * is run from the Jar but It is the Ant builds responsibility to access
47<FONT CLASS="LN">30</FONT><A NAME="30"></A> * resources from within the Jar the Jar itself can be referenced using
48<FONT CLASS="LN">31</FONT><A NAME="31"></A> * the Ant property "antinstaller.jar". The build file is automatically read
49<FONT CLASS="LN">32</FONT><A NAME="32"></A> * from the Jar.
50<FONT CLASS="LN">33</FONT><A NAME="33"></A> * @author Paul Hinds
51<FONT CLASS="LN">34</FONT><A NAME="34"></A> * @version $Id: NonExtractor.java,v 1.4 2006/12/15 21:16:39 teknopaul Exp $
52<FONT CLASS="LN">35</FONT><A NAME="35"></A> */</FONT>
53<FONT CLASS="LN">36</FONT><A NAME="36"></A><FONT CLASS="Public">public</FONT> <FONT CLASS="Class">class</FONT> NonExtractor <FONT CLASS="Extends">extends</FONT> <A HREF="../../../../org/tp23/antinstaller/selfextract/SelfExtractor.java.html">SelfExtractor</A>{
54<FONT CLASS="LN">37</FONT><A NAME="37"></A>
55<FONT CLASS="LN">38</FONT><A NAME="38"></A> <FONT CLASS="FormalComment">/** used by AntProjectFilter */</FONT>
56<FONT CLASS="LN">39</FONT><A NAME="39"></A> <FONT CLASS="Public">public</FONT> <FONT CLASS="Static">static</FONT> <FONT CLASS="Final">final</FONT> String ANTINSTALLER_JAR_PROPERTY = <FONT CLASS="StringLiteral">"antinstaller.jar"</FONT>;
57<FONT CLASS="LN">40</FONT><A NAME="40"></A> <FONT CLASS="Public">public</FONT> <FONT CLASS="Static">static</FONT> <FONT CLASS="Final">final</FONT> String CONFIG_RESOURCE = <FONT CLASS="StringLiteral">"/org/tp23/antinstaller/runtime/exe/nonextractor.fconfig"</FONT>;
58<FONT CLASS="LN">41</FONT><A NAME="41"></A>
59<FONT CLASS="LN">42</FONT><A NAME="42"></A> <FONT CLASS="FormalComment">/**
60<FONT CLASS="LN">43</FONT><A NAME="43"></A> * Run method to use from the command line. This is fired via an entry in the
61<FONT CLASS="LN">44</FONT><A NAME="44"></A> * MANIFEST.MF in the Jar
62<FONT CLASS="LN">45</FONT><A NAME="45"></A> *@param args The command line arguments
63<FONT CLASS="LN">46</FONT><A NAME="46"></A> */</FONT>
64<FONT CLASS="LN">47</FONT><A NAME="47"></A> <FONT CLASS="Public">public</FONT> <FONT CLASS="Static">static</FONT> <FONT CLASS="Void">void</FONT> main(String[] args) {
65<FONT CLASS="LN">48</FONT><A NAME="48"></A> <FONT CLASS="Try">try</FONT> {
66<FONT CLASS="LN">49</FONT><A NAME="49"></A> <A HREF="../../../../org/tp23/antinstaller/selfextract/SelfExtractor.java.html">SelfExtractor</A> extractor = <FONT CLASS="Null">null</FONT>;
67<FONT CLASS="LN">50</FONT><A NAME="50"></A> extractor = <FONT CLASS="New">new</FONT> <A HREF="../../../../org/tp23/antinstaller/selfextract/NonExtractor.java.html">NonExtractor</A>();
68<FONT CLASS="LN">51</FONT><A NAME="51"></A> <A HREF="../../../../org/tp23/antinstaller/runtime/exe/FilterChain.java.html">FilterChain</A> chain = FilterFactory.factory(CONFIG_RESOURCE);
69<FONT CLASS="LN">52</FONT><A NAME="52"></A> <A HREF="../../../../org/tp23/antinstaller/runtime/ExecInstall.java.html">ExecInstall</A> installExec = <FONT CLASS="New">new</FONT> <A HREF="../../../../org/tp23/antinstaller/runtime/ExecInstall.java.html">ExecInstall</A>(chain);
70<FONT CLASS="LN">53</FONT><A NAME="53"></A> installExec.parseArgs(args, <FONT CLASS="False">false</FONT>);
71<FONT CLASS="LN">54</FONT><A NAME="54"></A>
72<FONT CLASS="LN">55</FONT><A NAME="55"></A> <FONT CLASS="SingleLineComment">// create temporary space for the build to be removed on exit
73<FONT CLASS="LN">56</FONT><A NAME="56"></A></FONT> File temp = extractor.makeTempDir();
74<FONT CLASS="LN">57</FONT><A NAME="57"></A> installExec.setTempRoot(temp);
75<FONT CLASS="LN">58</FONT><A NAME="58"></A> installExec.setInstallRoot(temp);
76<FONT CLASS="LN">59</FONT><A NAME="59"></A> installExec.exec();
77<FONT CLASS="LN">60</FONT><A NAME="60"></A> }
78<FONT CLASS="LN">61</FONT><A NAME="61"></A> <FONT CLASS="Catch">catch</FONT> (<A HREF="../../../../org/tp23/antinstaller/InstallException.java.html">InstallException</A> e) {
79<FONT CLASS="LN">62</FONT><A NAME="62"></A> System.out.println(<FONT CLASS="StringLiteral">"Can't load filter chain: "</FONT> + CONFIG_RESOURCE);
80<FONT CLASS="LN">63</FONT><A NAME="63"></A> e.printStackTrace();
81<FONT CLASS="LN">64</FONT><A NAME="64"></A> }
82<FONT CLASS="LN">65</FONT><A NAME="65"></A> }
83<FONT CLASS="LN">66</FONT><A NAME="66"></A>}
84<FONT CLASS="LN">67</FONT><A NAME="67"></A></pre>
85</BODY>
86</HTML>
Note: See TracBrowser for help on using the repository browser.