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

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

dont overwrite startmenu shortcuts for repeat installs unless they are over-installs

File size: 4.9 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\\classes;" + 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 + "\\packages\\ant\\lib\\ant-antlr.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-apache-bcel.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-apache-bsf.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-apache-log4j.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-apache-oro.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-apache-regexp.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-apache-resolver.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-commons-logging.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-commons-net.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-icontract.jar;" + WIRK3_HOME + "\\packages\\ant-1.6.5\\lib\\ant-jai.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-javamail.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-jdepend.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-jmf.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-jsch.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-junit.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-launcher.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-netrexx.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-nodeps.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-starteam.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-stylebook.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-swing.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-trax.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-vaj.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-weblogic.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-xalan1.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\ant-xslp.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\xercesImpl.jar;" + WIRK3_HOME + "\\packages\\ant\\lib\\xml-apis.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\ai-icons-amaranth.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\ai-icons-bluecurve.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\ai-icons-crystalsvg.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\ai-icons-eclipse.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\ai-icons-krystaline.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\ant-installer-ext.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\ant-installer.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\jgoodies-edited-1_2_2.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\xercesImpl.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\lib\\xml-apis.jar;" + WIRK3_HOME + "\\packages\\ant-installer\\classes";
40 putenv( ("CLASSPATH=" + classpath).c_str() );
41
42 //create the command
43 command = WIRK3_HOME + "\\packages\\ant\\bin\\ant.bat -f " + WIRK3_HOME + "\\ant-scripts\\build.xml -addressing -Dwirk3.home=" + WIRK3_HOME;
44 //pass on the arguments
45 string a;
46 bool simMode = false;
47 for ( int i=0; i < argc; i++ ) {
48 a = argv[i];
49
50 if ( a.compare("-help") == 0 ) {
51 //show_help();
52 return 0;
53 } else if ( a.compare("-cp") == 0) {
54 cout << classpath;
55 return 0;
56 } else if ( a.compare("-sim") == 0) {
57 command = command + " " + a;
58 simMode = true;
59 } else {
60 command = command + " " + a;
61 }
62
63 }
64
65 //create directories
66 if ( !simMode ) {
67 system( "IF NOT EXIST installer\\classes MKDIR installer\\classes" );
68 }
69
70
71 //use forward slashes for everything else
72 //replace_all( pwd, "\\", "/" );
73
74 //set the basedir in the command
75 command = command + " -Dbasedir=";
76 command = command + pwd;
77
78
79
80 //command = command + ".";
81
82 cout
83 << "O-----------------------------------------O" << endl
84 << "| |" << endl
85 << "| WiRK3 |" << endl
86 << "| Windows Release Kit for Greenstone3 |" << endl
87 << "| |" << endl
88 << "O-----------------------------------------O" << endl
89 ;
90
91 cout << "pwd: " << pwd << endl;
92 cout << "command: " << command << endl;
93
94 system( command.c_str() );
95
96 return 0;
97
98}
Note: See TracBrowser for help on using the repository browser.