summaryrefslogtreecommitdiffstats
path: root/kpackage/main.cpp
blob: 396fe7b7a95770ef32a12555a0d7950e96657ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
** Copyright (C) 1999,2000 Toivo Pedaste <toivo@ucs.uwa.edu.au>
**
// Author: Damyan Pepper
// Author: Toivo Pedaste
//
// This is the entry point to the program
*/

/*
** 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 2 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 in a file called COPYING; if not, write to
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA 02110-1301, USA.
*/

/*
** Bug reports and questions can be sent to kde-devel@kde.org
*/

#include <stdlib.h>

#include "../config.h"
#include "kpackage.h"

#include <tqfile.h>

#include <tdeapplication.h>
#include <tdeglobal.h>
#include <tdelocale.h>
#include <tdecmdlineargs.h>
#include <options.h>

#include <tdeaboutdata.h>
#include <kdebug.h>

#include <kpTerm.h>
#include "debInterface.h"
#include "debAptInterface.h"
#include "debDpkgInterface.h"
#include "kissInterface.h"
#include "slackInterface.h"
#include "fbsdInterface.h"
#include "rpmInterface.h"
#include "gentooInterface.h"


static const char description[] =
	I18N_NOOP("TDE Package installer");

static TDECmdLineOptions options[] =
{
   { "remote ", I18N_NOOP("Remote host for Debian APT, via SSH"), 0 },
   { "r ", 0, 0},
   { "+[Package]", I18N_NOOP("Package to install"), 0 },
   TDECmdLineLastOption
};

// Globals
KPKG *kpkg;
KPACKAGE *kpackage;
kpPty *kpty;
kpRun *kprun;
kpRun *kpstart;
Opts *opts;

TQString hostName;

pkgInterface *kpinterface[kpinterfaceN];
 
int main(int argc, char **argv)
{
  TDEAboutData aboutData( "kpackage", I18N_NOOP("KPackage"), 
			VERSION, description, TDEAboutData::License_GPL, 
			//    VERSION, description, 0, 
			"(c) 1999-2001, Toivo Pedaste");
  TDECmdLineArgs::init( argc, argv, &aboutData );
  aboutData.addAuthor( "Toivo Pedaste",0, "toivo@ucs.uwa.edu.au");
  TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
  TDEApplication app;
  
  kpkg = 0;
  int j = 0;

// Make sure PATH has the right directories in it
  TQCString path = getenv("PATH");
  path = "PATH=" + path + ":/sbin:/usr/sbin:/usr/local/bin";
  putenv(strdup(path.data()));
	 
  TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
  TQString remoteHost = args->getOption("remote");

  if (remoteHost.isEmpty() || remoteHost == "localhost") {
    hostName = "";
  } else {
    hostName = remoteHost;
  }

  kpty = new kpPty();
  kprun = new kpRun();
  kpstart = new kpRun();

  for (int i = 0; i < kpinterfaceN; i++) {
    kpinterface[i] = 0;
  }

  kdDebug() << "Hostname=" << hostName << "\n";
  opts = new Opts(hostName);

  kpinterface[j++] = new DEBDPKG();
  kpinterface[j++] = new DEBAPT();
  kpinterface[j++] = new KISS();
  kpinterface[j++] = new RPM();
  kpinterface[j++] = new fbsdInterface();
  kpinterface[j++] = new SLACK(); // Also catched BSD packages...
  kpinterface[j++] = new Gentoo();
  
  opts->readLaterSettings();

  if ( app.isRestored() ) {
    if (KPKG::canBeRestored(1)) {
      kpkg =  new KPKG(app.config());  
      kpkg->restore(1);
    }
  } else {
    // Create the main widget and show it
    kpkg = new KPKG(app.config());
    kpkg->show();
  }
  kpkg->setCaption(hostName);

  if (args->count()) {		// an argument has been given
    TQStringList files;
    for(int i = 0; i < args->count(); i++) {
      files.append(args->url(i).url());
    }
    kpackage->openNetFiles(files, FALSE); 
  }  else {	
    if (!kpkg->prop_restart)
      kpackage->setup();
  }
  
  args->clear();

  int r = app.exec();		// execute the application

  return r;			// return the result
}