File: wulfor.cc

package info (click to toggle)
linuxdcpp 1.1.0-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 4,492 kB
  • ctags: 4,874
  • sloc: cpp: 34,798; python: 235; makefile: 13
file content (260 lines) | stat: -rw-r--r-- 8,039 bytes parent folder | download | duplicates (2)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
 * Copyright © 2004-2008 Jens Oknelid, paskharen@gmail.com
 *
 * 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; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * In addition, as a special exception, compiling, linking, and/or
 * using OpenSSL with this program is allowed.
 */

#include <gtk/gtk.h>
#include <glade/glade.h>
#include "IntlUtil.hh"

#include <dcpp/stdinc.h>
#include <dcpp/DCPlusPlus.h>
#include <dcpp/version.h>

#include "version.hh"
#include "settingsmanager.hh"
#include "wulformanager.hh"
#include "WulforUtil.hh"
#include <iostream>
#include <signal.h>

struct CommandlineArgs {
	std::vector<std::string> searchmagnets;
	std::vector<std::string> addmagnets;
	std::vector<std::string> urls;
	bool show;
	bool refresh;
	bool version;
	bool existing;
	CommandlineArgs() : show(FALSE), refresh(FALSE), version(FALSE), existing(FALSE) { }
};

void printVersionInfo() 
{
	// TRANSLATORS: Application version printed on the command line.
	std::cout << F_("%1% version: %2%", % APPNAME % LINUXDCPP_VERSION_STRING) << std::endl;

	// TRANSLATORS: DC++ core library version printed on the command line.
	std::cout << F_("DC++ library version: %1%", % VERSIONSTRING) << std::endl;

	// TRANSLATORS: GTK+ version in major.minor.micro format printed on the command line.
	std::cout << F_("GTK+ version: %1%.%2%.%3%", % gtk_major_version % gtk_minor_version % gtk_micro_version) << std::endl;

	// TRANSLATORS: GLib version in major.minor.micro format printed on the command line.
	std::cout << F_("GLib version: %1%.%2%.%3%", % glib_major_version % glib_minor_version % glib_micro_version) << std::endl;
}

void parseExtraArguments(int argc, char* argv[], CommandlineArgs* args)
{
	for (int i = 1; i < argc; i++)	// i = 1 since argv[0] is prgname
	{
		std::string arg(argv[i]);
		if (WulforUtil::isHubURL(arg))
			args->urls.push_back(arg);
		else if (WulforUtil::isMagnet(arg))
			args->addmagnets.push_back(arg);
	}
}

bool parseArguments(int *argc, char **argv[], CommandlineArgs* args)
{
	gchar **searchmagnet = NULL, **address = NULL, **addmagnet = NULL;
	gboolean show = FALSE, refresh = FALSE, version = FALSE, existing = FALSE;

	GOptionEntry entries[] = {
		{ "add-magnet", 'a', 0, G_OPTION_ARG_STRING_ARRAY, &addmagnet, N_("Attempt to add the magnet link directly to the download queue"), N_("URI") },
		{ "connect", 'c', 0, G_OPTION_ARG_STRING_ARRAY, &address, N_("Connect to the given hub"), N_("URI") },
		{ "existing", 'e', 0, G_OPTION_ARG_NONE, &existing, N_("Send commands to the existing instance (if applicable)"), NULL },
		{ "search-magnet", 'm', 0, G_OPTION_ARG_STRING_ARRAY, &searchmagnet, N_("Search for the given magnet link"), N_("URI") },
		{ "refresh", 'r', 0, G_OPTION_ARG_NONE, &refresh, N_("Initiate filelist refresh"), NULL },
		{ "show", 's', 0, G_OPTION_ARG_NONE, &show, N_("Show the running instance (default action)"), NULL },
		{ "version", 'v', 0, G_OPTION_ARG_NONE, &version, N_("Show version information and exit"), NULL },
		{ NULL }
	};

	GOptionContext *context;
	GError* error = NULL;
	context = g_option_context_new(N_("[URI...]"));
	g_option_context_add_main_entries(context, entries, NULL);
	// with gtk_get_option_group(TRUE) we don't need to call gtk_init with argc & argv in main.
	g_option_context_add_group(context, gtk_get_option_group(TRUE));
	g_option_context_set_summary(context, N_("File-sharing client for the Direct Connect network"));

	if (!g_option_context_parse(context, argc, argv, &error))
	{
		std::cerr << F_("Option parsing failed: %1%", % error->message) << std::endl;
		return FALSE;
	}
	else
	{
		if (show)
			args->show = TRUE;
		if (refresh)
			args->refresh = TRUE;
		if (version)
			args->version = TRUE;
		if (existing)
			args->existing = TRUE;
		if (searchmagnet)
		{
			int i = 0;
			for (gchar* it = searchmagnet[0]; it != NULL; it = searchmagnet[++i])
				args->searchmagnets.push_back(std::string(it));
			g_strfreev(searchmagnet);
		}
		if (addmagnet)
		{
			int i = 0;
			for (gchar* it = addmagnet[0]; it != NULL; it = addmagnet[++i])
				args->addmagnets.push_back(std::string(it));
			g_strfreev(addmagnet);
		}
		if (address)
		{
			int i = 0;
			for (gchar* it = address[0]; it != NULL; it = address[++i])
				args->urls.push_back(std::string(it));
			g_strfreev(address);
		}

		// Handle extra 'file' arguments passed to commandline
		parseExtraArguments(*argc, *argv, args);
	}
	g_option_context_free(context);

	return TRUE;
}

int handleArguments(const CommandlineArgs &args) 
{

	int retval = 1;
	if (args.refresh)
		retval = WulforUtil::writeIPCCommand("refresh");
	for (std::vector<std::string>::const_iterator it = args.searchmagnets.begin();
			retval > 0 && it != args.searchmagnets.end(); ++it)
	{
		retval = WulforUtil::writeIPCCommand(std::string("search-magnet ") + *it);
	}
	for (std::vector<std::string>::const_iterator it = args.addmagnets.begin();
			retval > 0 && it != args.addmagnets.end(); ++it)
	{
		retval = WulforUtil::writeIPCCommand(std::string("add-magnet ") + *it);
	}
	for (std::vector<std::string>::const_iterator it = args.urls.begin();
			retval > 0 && it != args.urls.end(); ++it)
	{
		retval = WulforUtil::writeIPCCommand(std::string("connect ") + *it);
	}

	if (retval > 0 && args.show) 
	{
		retval = WulforUtil::writeIPCCommand("show");
	}

	return retval;
}

int main(int argc, char *argv[])
{
	CommandlineArgs args;

	std::string downloadPath;
	dcpp::Util::PathsMap pathsMap;
	pathsMap[dcpp::Util::PATH_RESOURCES] = _DATADIR;
	pathsMap[dcpp::Util::PATH_LOCALE] = _DATADIR "/locale";
	if (g_get_user_special_dir(G_USER_DIRECTORY_DOWNLOAD) != NULL)
	{
		downloadPath = g_get_user_special_dir(G_USER_DIRECTORY_DOWNLOAD);
		pathsMap[dcpp::Util::PATH_DOWNLOADS] = downloadPath + PATH_SEPARATOR_STR;
	}
	dcpp::Util::initialize(pathsMap);

	IntlUtil::initialize();

	if (!parseArguments(&argc, &argv, &args))
	{
		return -1;
	}

	if (args.version)
	{
		printVersionInfo();
		return 0;
	}

	// Check if profile is locked
	if (WulforUtil::profileIsLocked())
	{
		int retval = handleArguments(args);

		if (retval < 0) 
		{
			std::cerr << F_("Failed to communicate with existing instance: %1%", % dcpp::Util::translateError(retval)) << std::endl;
			return -1;
		}

		if (retval == 1 && WulforUtil::writeIPCCommand("show") <= 0)	
		{
			// Show profile lock error only if profile is locked and talking to running instance
			// fails for some reason
			std::string message = _("Unable to communicate with existing instance and only one instance is allowed per profile.");

			GtkWidget *dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", message.c_str());
			gtk_dialog_run(GTK_DIALOG(dialog));
			gtk_widget_destroy(dialog);

			return -1;
		}

		return 0;
	}

	if (args.existing) // If we're still here and --existing was given, bail out since no running instance was found
	{
		std::cerr << _("No running instance found") << std::endl;
		return 0;
	}

	// Start the DC++ client core
	dcpp::startup(NULL, NULL);

	dcpp::TimerManager::getInstance()->start();

	g_thread_init(NULL);
	gdk_threads_init();
	glade_init();
	g_set_application_name(_("LinuxDC++"));

	signal(SIGPIPE, SIG_IGN);

	WulforSettingsManager::newInstance();
	WulforManager::start();
	handleArguments(args);
	gdk_threads_enter();
	gtk_main();
	gdk_threads_leave();
	WulforManager::stop();
	WulforSettingsManager::deleteInstance();

	dcpp::shutdown();

	return 0;
}