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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* evolution-addressbook-export-list-folders.c
*
* Copyright (C) 2003 Ximian, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* 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.
*
* Author: Gilbert Fang <gilbert.fang@sun.com>
*
*/
#include <config.h>
#include <glib.h>
#include <bonobo-activation/bonobo-activation.h>
#include <libbonobo.h>
#include <libgnome/libgnome.h>
#include <ebook/e-book.h>
#include <ebook/e-book-util.h>
#include "evolution-addressbook-export.h"
static void
action_list_folders_get_cursor_cb (EBook * book, EBookStatus status, ECardCursor * cursor, ActionContext * p_actctx)
{
FILE *outputfile;
long length;
const char *uri;
char *name;
uri = e_book_get_default_book_uri ();
length = e_card_cursor_get_length (cursor);
/*Fix me *
can not get name, should be a bug of e-book.Anyway, should set a default name.
*/
/*name = e_book_get_name (book); */
name = g_strdup (_("Contacts"));
if (p_actctx->action_list_folders.output_file == NULL) {
printf ("\"%s\",\"%s\",%d\n", uri, name, (int) length);
} else {
/*output to a file */
if (!(outputfile = fopen (p_actctx->action_list_folders.output_file, "w"))) {
g_warning (_("Can not open file"));
exit (-1);
}
fprintf (outputfile, "\"%s\",\"%s\",%d\n", uri, name, (int) length);
fclose (outputfile);
}
g_free (name);
g_object_unref (G_OBJECT (book));
bonobo_main_quit ();
}
static void
action_list_folders_open_cb (EBook * book, EBookStatus status, ActionContext * p_actctx)
{
if (E_BOOK_STATUS_SUCCESS == status) {
e_book_get_cursor (book, "(contains \"full_name\" \"\")",
(EBookCursorCallback)action_list_folders_get_cursor_cb, p_actctx);
} else {
g_object_unref (G_OBJECT (book));
g_warning (_("Can not load URI"));
exit (-1);
}
}
static guint
action_list_folders_run (ActionContext * p_actctx)
{
EBook *book;
book = e_book_new ();
e_book_load_default_book (book, (EBookCallback)action_list_folders_open_cb, p_actctx);
return SUCCESS;
}
guint
action_list_folders_init (ActionContext * p_actctx)
{
g_idle_add ((GSourceFunc) action_list_folders_run, p_actctx);
return SUCCESS;
}
|