summaryrefslogtreecommitdiff
path: root/components/services/install/command-line/eazel-package-query.c
blob: c3e074b80c1586f06c0fbaa2305e6bb5c7472846 (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* 
 * Copyright (C) 2000 Eazel, Inc
 *
 * 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., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Authors: Eskil Heyn Olsen <eskil@eazel.com>
 *
 */

#include <config.h>
#include <gnome.h>
#include <liboaf/liboaf.h>
#include <bonobo.h>
#include <sys/utsname.h>

#include <eazel-install-public.h>
#include <eazel-install-query.h>

#include <libtrilobite/helixcode-utils.h>

/* Popt stuff */
char *arg_query;
int arg_owns, arg_provides, arg_requires;

static const struct poptOption options[] = {
	{"query", 'q', POPT_ARG_STRING, &arg_query, 0, N_("Lookup package in the db"), NULL},
	{"owns", 'o', POPT_ARG_NONE, &arg_owns, 0, N_("Who owns specified files"), NULL}, 
	{"provides", 'p', POPT_ARG_NONE, &arg_provides, 0, N_("Who provides specified files"), NULL}, 
	{"requires", 'r', POPT_ARG_NONE, &arg_requires, 0, N_("Who requires specified packages"), NULL}, 
	{NULL, '\0', 0, NULL, 0}
};

int main(int argc, char *argv[]) {
	EazelInstall *service;
	poptContext ctxt;
	GList *packages;
	GList *categories;
	char *str;
	
#if 1
	gnome_init_with_popt_table ("Eazel Package Query", "1.0", argc, argv, options, 0, &ctxt);
	oaf_init (argc, argv);
#else
	gtk_type_init ();
	gnomelib_init ("Eazel Install", "1.0");
	gnomelib_register_popt_table (options, "Eazel Install");
	oaf_init (argc, argv);
	ctxt = gnomelib_parse_args (argc, argv, 0);
#endif

	if (bonobo_init (NULL, NULL, NULL) == FALSE) {
		g_error ("Could not init bonobo");
	}
	bonobo_activate ();

	packages = NULL;
	categories = NULL;
	service = eazel_install_new ();
	g_assert (service != NULL);

	/* If there are more args, get them and parse them as packages */
	while ((str = poptGetArg (ctxt)) != NULL) {
		GList *result;
		GList *iterator;
		EazelInstallSimpleQueryEnum flag;
		
		if (arg_owns) {
			flag = EI_SIMPLE_QUERY_OWNS;			
		} else if (arg_provides) {
			flag = EI_SIMPLE_QUERY_PROVIDES;
		} else if (arg_requires) {
			flag = EI_SIMPLE_QUERY_REQUIRES;
		} else {
			flag = EI_SIMPLE_QUERY_MATCHES;
		}
		
		result = eazel_install_simple_query (service, str, flag, 0, NULL);

		for (iterator = result; iterator; iterator = iterator->next) {
			PackageData *pack;
			pack = (PackageData*)iterator->data;
			
			fprintf (stdout, "Package : %s, %s (\"%40.40s\")\n", pack->name, pack->version, pack->description);
			packagedata_destroy (pack);
		}
		g_list_free (result);
	}
							
	eazel_install_unref (GTK_OBJECT (service));

	return 0;
};