2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2004-05-10 12:07:45 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:11:26 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-05-10 12:07:45 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-05-10 12:07:45 +00:00
|
|
|
*
|
2008-04-11 07:11:26 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-05-10 12:07:45 +00:00
|
|
|
*
|
2008-04-11 07:11:26 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-05-10 12:07:45 +00:00
|
|
|
*
|
2008-04-11 07:11:26 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-05-10 12:07:45 +00:00
|
|
|
*
|
2008-04-11 07:11:26 +00:00
|
|
|
* OpenOffice.org 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 Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-05-10 12:07:45 +00:00
|
|
|
*
|
2008-04-11 07:11:26 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-05-10 12:07:45 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
typedef int gboolean;
|
|
|
|
typedef char gchar;
|
|
|
|
typedef struct _GError GError;
|
|
|
|
|
|
|
|
struct _GError
|
|
|
|
{
|
|
|
|
int domain;
|
|
|
|
int code;
|
|
|
|
char *message;
|
|
|
|
};
|
|
|
|
|
2005-05-13 06:31:07 +00:00
|
|
|
typedef enum {
|
|
|
|
GNOME_VFS_OK
|
|
|
|
} GnomeVFSResult;
|
|
|
|
|
2004-05-10 12:07:45 +00:00
|
|
|
/*
|
|
|
|
* Wrapper function which extracs gnome_url_show from libgnome
|
|
|
|
*/
|
|
|
|
|
|
|
|
gboolean gnome_url_show (const char *url, GError **error)
|
|
|
|
{
|
2005-05-13 06:31:07 +00:00
|
|
|
void* handle = dlopen("libgnomevfs-2.so.0", RTLD_LAZY);
|
|
|
|
gboolean ret = 0;
|
2004-05-10 12:07:45 +00:00
|
|
|
|
2006-06-19 13:19:56 +00:00
|
|
|
(void)error; /* avoid warning due to unused parameter */
|
|
|
|
|
2005-05-13 06:31:07 +00:00
|
|
|
if( NULL != handle )
|
2004-05-10 12:07:45 +00:00
|
|
|
{
|
2005-05-13 06:31:07 +00:00
|
|
|
gboolean (* init) (void) =
|
|
|
|
(gboolean (*) (void)) dlsym(handle, "gnome_vfs_init");
|
2004-05-10 12:07:45 +00:00
|
|
|
|
2005-05-13 06:31:07 +00:00
|
|
|
if( NULL != init && init() )
|
|
|
|
{
|
|
|
|
GnomeVFSResult (* func) (const char *url) =
|
|
|
|
(GnomeVFSResult (*) (const char *)) dlsym(handle, "gnome_vfs_url_show");
|
|
|
|
|
|
|
|
if( NULL != func )
|
|
|
|
ret = (GNOME_VFS_OK == func(url));
|
|
|
|
}
|
|
|
|
|
|
|
|
dlclose(handle);
|
2004-05-10 12:07:45 +00:00
|
|
|
}
|
|
|
|
|
2005-05-13 06:31:07 +00:00
|
|
|
return ret;
|
2004-05-10 12:07:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The intended use of this tool is to pass the argument to
|
|
|
|
* the gnome_show_url function of libgnome2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int main(int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
char *fallback;
|
|
|
|
char *index;
|
2010-11-26 06:32:21 +01:00
|
|
|
int retcode = -1;
|
2004-05-10 12:07:45 +00:00
|
|
|
|
|
|
|
if( argc != 2 )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Usage: gnome-open-url <uri>\n" );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( gnome_url_show(argv[1], &error) )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* launch open-url command by replacing gnome-open-url from
|
|
|
|
* the command line. This is the fallback when running on
|
|
|
|
* remote machines with no GNOME installed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
fallback = strdup(argv[0]);
|
|
|
|
index = strstr(fallback, "gnome-open-url");
|
|
|
|
if ( NULL != index )
|
|
|
|
{
|
2006-06-19 13:19:56 +00:00
|
|
|
char *args[3];
|
2004-05-10 12:07:45 +00:00
|
|
|
strncpy(index, "open-url", 9);
|
|
|
|
args[0] = fallback;
|
2006-06-19 13:19:56 +00:00
|
|
|
args[1] = argv[1];
|
|
|
|
args[2] = NULL;
|
2010-11-26 06:32:21 +01:00
|
|
|
retcode = execv(fallback, args);
|
2004-05-10 12:07:45 +00:00
|
|
|
}
|
2010-11-26 06:32:21 +01:00
|
|
|
free(fallback);
|
2004-05-10 12:07:45 +00:00
|
|
|
|
2010-11-26 06:32:21 +01:00
|
|
|
return retcode;
|
2004-05-10 12:07:45 +00:00
|
|
|
}
|
|
|
|
|
2010-10-27 13:11:31 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|