source: release-kits/wirk2/src/wirk2.cpp@ 19380

Last change on this file since 19380 was 19324, checked in by oranfry, 15 years ago

import windows scripts and set ANT_HOME

File size: 6.0 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
20void show_help() {
21
22 cout << "Wirk2 - Windows Release Kit for Greenstone2" << endl;
23 cout << "Helps you to create releases from the Repository" << endl << endl;
24
25 cout << "usage: wirk2 [args]" << endl;
26 cout << " -sim" << endl;
27 cout << " simulation only, don't actually do anything" << endl << endl;
28
29 cout << " -help" << endl;
30 cout << " show this help screen" << endl << endl;
31
32 cout << " -from <target>" << endl;
33 cout << " start execution from the target with the given target address" << endl << endl;
34
35 cout << " -to <target>" << endl;
36 cout << " stop execution just before the target with the given target address" << endl << endl;
37
38 cout << " -descend <target>" << endl;
39 cout << " execute only the target with the given address, including subtargets" << endl << endl;
40
41 cout << " -cp" << endl;
42 cout << " show the classpath being used by wirk2" << endl << endl;
43
44}
45
46
47int main(int argc, char** argv ) {
48
49 string classpath, command;
50
51 //some checks
52 bool ok = true;
53 if ( getenv( "JAVA_HOME" ) == NULL ) {
54 cerr << "Please set JAVA_HOME before running wirk2" << endl;
55 ok = false;
56 }
57 if ( getenv( "WIRK2_HOME" ) == NULL ) {
58 cerr << "Please set WIRK2_HOME before running wirk2" << endl;
59 ok = false;
60 }
61 if ( !ok ) {
62 return -1;
63 }
64 //string PWD = getenv( "CD" );
65
66 //load environment variables
67 string JAVA_HOME = getenv( "JAVA_HOME" );
68 string WIRK2_HOME = getenv( "WIRK2_HOME" );
69 putenv( ("ANT_HOME=" + WIRK2_HOME + "\\core\\ant").c_str() );
70
71 //get the pwd
72 string pwd;
73 system( "CD > cd.dat" );
74 ifstream file( "cd.dat" ) ;
75 getline(file, pwd);
76 file.close();
77 system( "del cd.dat" );
78
79 //set the classpath
80 //classpath = pwd + "\\installer\\classes;" + JAVA_HOME + "\\core\\lib\\tools.jar;" + WIRK2_HOME + "\\core\\lib\\serializer.jar;" + WIRK2_HOME + "\\core\\lib\\xalan.jar;" + WIRK2_HOME + "\\core\\lib\\xercesImpl.jar;" + WIRK2_HOME + "\\core\\lib\\xml-apis.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-antlr.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-apache-bcel.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-apache-bsf.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-apache-log4j.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-apache-oro.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-apache-regexp.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-apache-resolver.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-commons-logging.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-commons-net.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-icontract.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-jai.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-javamail.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-jdepend.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-jmf.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-jsch.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-junit.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-launcher.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-netrexx.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-nodeps.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-starteam.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-stylebook.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-swing.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-trax.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-vaj.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-weblogic.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-xalan1.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\ant-xslp.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\xercesImpl.jar;" + WIRK2_HOME + "\\core\\ant\\lib\\xml-apis.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\ai-icons-amaranth.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\ai-icons-bluecurve.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\ai-icons-crystalsvg.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\ai-icons-eclipse.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\ai-icons-krystaline.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\ant-installer-ext.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\ant-installer.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\jgoodies-edited-1_2_2.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\xercesImpl.jar;" + WIRK2_HOME + "\\core\\ant-installer\\lib\\xml-apis.jar;" + WIRK2_HOME + "\\core\\ant-installer\\classes";
81 //putenv( ("CLASSPATH=" + classpath).c_str() );
82
83 //check that it worked
84 //string changed_classpath = getenv("CLASSPATH");
85 //cout << "classpath: " << changed_classpath << endl;
86
87 //create the command
88 command = WIRK2_HOME + "\\core\\ant\\bin\\ant.bat -f " + WIRK2_HOME + "\\ant-scripts\\build.xml -addressing -Dwirk2.home=" + WIRK2_HOME;
89 //pass on the arguments
90 string a;
91 bool simMode = false;
92 for ( int i=0; i < argc; i++ ) {
93 a = argv[i];
94
95 if ( a.compare("-help") == 0 || a.compare("--help") == 0 ) {
96 show_help();
97 return 0;
98 } else if ( a.compare("-cp") == 0 || a.compare("--cp") == 0 ) {
99 cout << classpath;
100 return 0;
101 } else if ( a.compare("-sim") == 0) {
102 command = command + " " + a;
103 simMode = true;
104 } else {
105 command = command + " " + a;
106 }
107
108 }
109
110 //use forward slashes for everything else
111 //replace_all( pwd, "\\", "/" );
112
113 //set the basedir in the command
114 command = command + " -Dbasedir=";
115 command = command + pwd;
116
117
118
119 //command = command + ".";
120
121 cout
122 << "O-----------------------------------------O" << endl
123 << "| |" << endl
124 << "| WiRK2 |" << endl
125 << "| Windows Release Kit for Greenstone2 |" << endl
126 << "| |" << endl
127 << "O-----------------------------------------O" << endl
128 ;
129
130 cout << "pwd: " << pwd << endl;
131 cout << "command: " << command << endl;
132
133 system( command.c_str() );
134
135 return 0;
136
137}
Note: See TracBrowser for help on using the repository browser.