source: release-kits/wirk3/src/wirk3.cpp@ 15356

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

a few fixes to wirk3

File size: 5.6 KB
Line 
1#include <windows.h>
2
3#include <fstream>
4#include <iostream>
5#include <string>
6
7using namespace std;
8
9void replace_all ( std::string & str, std::string const & pattern, std::string const & replacement ) {
10
11 std::string::size_type start = str.find( pattern, 0 );
12
13 while ( start != str.npos ) {
14 str.replace( start, pattern.size(), replacement );
15 start = str.find( pattern, start+replacement.size() );
16 }
17
18}
19
20int main(int argc, char** argv ) {
21
22 string classpath, command;
23
24 //influential environment variables
25 string JAVA_HOME = getenv( "JAVA_HOME" );
26 string WIRK3_HOME = getenv( "WIRK3_HOME" );
27 //string PWD = getenv( "CD" );
28
29 //get the pwd
30 string pwd;
31 system( "CD > cd.dat" );
32 ifstream file( "cd.dat" ) ;
33 getline(file, pwd);
34 file.close();
35 system( "del cd.dat" );
36
37
38 //set the classpath
39 classpath = pwd + "\\installer\\cp;" + JAVA_HOME + "\\lib\\tools.jar;" + WIRK3_HOME + "\\lib\\serializer.jar;" + WIRK3_HOME + "\\lib\\xalan.jar;" + WIRK3_HOME + "\\lib\\xercesImpl.jar;" + WIRK3_HOME + "\\lib\\xml-apis.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-antlr.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-apache-bcel.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-apache-bsf.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-apache-log4j.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-apache-oro.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-apache-regexp.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-apache-resolver.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-commons-logging.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-commons-net.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-icontract.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-jai.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-javamail.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-jdepend.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-jmf.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-jsch.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-junit.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-launcher.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-netrexx.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-nodeps.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-starteam.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-stylebook.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-swing.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-trax.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-vaj.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-weblogic.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-xalan1.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\ant-xslp.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\xercesImpl.jar;" + WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\lib\\xml-apis.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\ai-icons-amaranth.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\ai-icons-bluecurve.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\ai-icons-crystalsvg.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\ai-icons-eclipse.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\ai-icons-krystaline.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\ant-installer-ext.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\ant-installer.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\jgoodies-edited-1_2_2.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\xercesImpl.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\lib\\xml-apis.jar;" + WIRK3_HOME + "\\bin\\ant-installer\\classes";
40 putenv( ("CLASSPATH=" + classpath).c_str() );
41
42 //check that it worked
43 //string changed_classpath = getenv("CLASSPATH");
44 //cout << "classpath: " << changed_classpath << endl;
45
46 //create the command
47 command = WIRK3_HOME + "\\bin\\apache-ant-1.6.5\\bin\\ant.bat -f " + WIRK3_HOME + "\\ant-scripts\\build.xml -Dwirk3.home=" + WIRK3_HOME;
48 //pass on the arguments
49 string a;
50 for ( int i=0; i < argc; i++ ) {
51 a = argv[i];
52
53 if ( a.compare("-help") == 0 ) {
54 //show_help();
55 return 0;
56
57 } else if ( a.compare("-cp") == 0) {
58 cout << classpath;
59 return 0;
60
61 } else if ( a.compare("-sim") == 0 ) {
62 command += " -Dexecute=false";
63
64 } else if ( a.compare("-descend") == 0 ) {
65 command += " -Dresume.mode=descend";
66
67 } else if ( a.compare("-from") == 0 ) {
68 command = command + " -Dresume.from=" + argv[++i];
69 //from=`echo $2 | sed 's/compile/1/g' | sed 's/create-distributions/2/g' | sed 's/create-installer/3/g' | sed 's/wrap/4/g'`
70 //toexec=$toexec$from
71 } else if ( a.compare("-to") == 0 ) {
72 command = command + " -Dresume.to=" + argv[++i];
73 //to=`echo $2 | sed 's/compile/1/g' | sed 's/create-distributions/2/g' | sed 's/create-installer/3/g' | sed 's/wrap/4/g'`
74 //toexec=$toexec$to
75 } else {
76 command = command + " " + a;
77 }
78
79 }
80
81
82 //use forward slashes for everything else
83 //replace_all( pwd, "\\", "/" );
84
85 //set the basedir in the command
86 command = command + " -Dbasedir=";
87 command = command + pwd;
88
89
90
91 //command = command + ".";
92
93 cout
94 << "O-----------------------------------------O" << endl
95 << "| |" << endl
96 << "| WiRK3 |" << endl
97 << "| Windows Release Kit for Greenstone3 |" << endl
98 << "| |" << endl
99 << "O-----------------------------------------O" << endl
100 ;
101
102 cout << "pwd: " << pwd << endl;
103 cout << "command: " << command << endl;
104
105 system( command.c_str() );
106
107 return 0;
108
109}
Note: See TracBrowser for help on using the repository browser.