Desktop

/* $Id: open.c,v 1.11 2010/04/05 14:28:27 khorben Exp $ */
/* Copyright (c) 2010 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Desktop Browser */
/* 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, version 3 of the License.
*
* 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, see <http://www.gnu.org/licenses/>. */
#include <unistd.h>
#include <stdio.h>
#include <locale.h>
#include <libintl.h>
#include "mime.h"
#include "../config.h"
#define _(string) gettext(string)
/* constants */
#ifndef PREFIX
# define PREFIX "/usr/local"
#endif
#ifndef DATADIR
# define DATADIR PREFIX "/share"
#endif
#ifndef LOCALEDIR
# define LOCALEDIR DATADIR "/locale"
#endif
/* open */
static int _open(char const * type, char const * action, int filec,
char * filev[])
{
int i;
Mime * mime;
int ret = 0;
if((mime = mime_new()) == NULL)
return 1;
for(i = 0; i < filec; i++)
{
if(type == NULL)
{
if(mime_action(mime, action, filev[i]) == 0)
continue;
}
else if(mime_action_type(mime, action, filev[i], type) == 0)
continue;
fprintf(stderr, "%s%s%s%s%s", "open: ", filev[i],
_(": Could not perform action \""), action,
"\"\n");
ret = 1;
}
mime_delete(mime);
return ret;
}
/* usage */
static int _usage(void)
{
fputs(_("Usage: open [-m mime type][-a action] file...\n"
" -m MIME type to force (default: auto-detected)\n"
" -a action to call (default: \"open\")\n"), stderr);
return 1;
}
/* main */
int main(int argc, char * argv[])
{
int o;
char const * action = "open";
char const * type = NULL;
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
while((o = getopt(argc, argv, "a:m:")) != -1)
switch(o)
{
case 'a':
action = optarg;
break;
case 'm':
type = optarg;
break;
default:
return _usage();
}
if(optind == argc)
return _usage();
return _open(type, action, argc - optind, &argv[optind]) == 0 ? 0 : 2;
}