2004-04-08 14:01:17 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=4:tabstop=4:
|
|
|
|
*/
|
2001-12-28 22:17:20 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
2004-12-01 22:27:03 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
2001-12-28 22:17:20 +00:00
|
|
|
*
|
2004-12-01 22:27:03 +00:00
|
|
|
* The Initial Developer of the Original Code is Christopher Blizzard
|
2001-12-28 22:17:20 +00:00
|
|
|
* <blizzard@mozilla.org>. Portions created by the Initial Developer
|
|
|
|
* are Copyright (C) 2001 the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2003-12-12 23:02:12 +00:00
|
|
|
#include <stdio.h>
|
2004-04-08 14:01:17 +00:00
|
|
|
#include <stdlib.h>
|
2005-04-04 19:08:55 +00:00
|
|
|
#include <string.h>
|
2004-04-08 14:01:17 +00:00
|
|
|
#include <plgetopt.h>
|
2001-12-28 22:17:20 +00:00
|
|
|
#include "XRemoteClient.h"
|
|
|
|
|
2004-04-08 14:01:17 +00:00
|
|
|
static void print_usage(void);
|
|
|
|
|
2001-12-28 22:17:20 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
XRemoteClient client;
|
2004-04-08 14:01:17 +00:00
|
|
|
char *browser = 0;
|
|
|
|
char *profile = 0;
|
|
|
|
char *username = 0;
|
|
|
|
char *command = 0;
|
2001-12-28 22:17:20 +00:00
|
|
|
|
2004-04-08 14:01:17 +00:00
|
|
|
if (argc < 2) {
|
|
|
|
print_usage();
|
2001-12-28 22:17:20 +00:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2004-04-08 14:01:17 +00:00
|
|
|
PLOptStatus os;
|
|
|
|
PLOptState *opt = PL_CreateOptState(argc, argv, "ha:u:p:");
|
|
|
|
while (PL_OPT_EOL != (os = PL_GetNextOpt(opt))) {
|
|
|
|
if (PL_OPT_BAD == os) {
|
|
|
|
print_usage();
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (opt->option) {
|
|
|
|
case 'h':
|
|
|
|
print_usage();
|
|
|
|
return 4;
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
username = strdup(opt->value);
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
browser = strdup(opt->value);
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
profile = strdup(opt->value);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
command = strdup(opt->value);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-28 22:17:20 +00:00
|
|
|
rv = client.Init();
|
|
|
|
// failed to connect to the X server
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// send the command - it doesn't get any easier than this
|
2011-09-29 06:19:26 +00:00
|
|
|
bool success = false;
|
2004-04-08 14:01:17 +00:00
|
|
|
char *error = 0;
|
2007-02-09 01:33:26 +00:00
|
|
|
rv = client.SendCommand(browser, username, profile, command, nsnull,
|
2004-04-08 14:01:17 +00:00
|
|
|
&error, &success);
|
2001-12-28 22:17:20 +00:00
|
|
|
|
|
|
|
// failed to send command
|
2004-04-08 14:01:17 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
fprintf(stderr, "%s: Error: Failed to send command: ", argv[0]);
|
|
|
|
if (error) {
|
|
|
|
fprintf(stderr, "%s\n", error);
|
|
|
|
free(error);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "No error string reported..\n");
|
|
|
|
}
|
|
|
|
|
2001-12-28 22:17:20 +00:00
|
|
|
return 3;
|
2004-04-08 14:01:17 +00:00
|
|
|
}
|
2001-12-28 22:17:20 +00:00
|
|
|
|
|
|
|
// no running window found
|
2004-04-08 14:01:17 +00:00
|
|
|
if (!success) {
|
|
|
|
fprintf(stderr, "%s: Error: Failed to find a running server.\n", argv[0]);
|
2001-12-28 22:17:20 +00:00
|
|
|
return 2;
|
2004-04-08 14:01:17 +00:00
|
|
|
}
|
2001-12-28 22:17:20 +00:00
|
|
|
|
|
|
|
// else, everything is fine.
|
|
|
|
return 0;
|
|
|
|
}
|
2004-04-08 14:01:17 +00:00
|
|
|
|
|
|
|
/* static */
|
|
|
|
void print_usage(void) {
|
|
|
|
fprintf(stderr, "Usage: mozilla-xremote-client [-a firefox|thunderbird|mozilla|any]\n");
|
|
|
|
fprintf(stderr, " [-u <username>]\n");
|
|
|
|
fprintf(stderr, " [-p <profile>] COMMAND\n");
|
|
|
|
}
|