Files
evolution/addressbook/backend/ebook/test-client.c
Christopher James Lahey 0fbeb97f39 Use e_card_get_vcard_assume_utf8 instead of e_card_get_vcard here since
2001-09-02  Christopher James Lahey  <clahey@ximian.com>

	* backend/ebook/e-book.c (e_book_add_card, e_book_commit_card),
	backend/pas/pas-backend-file.c (do_create),
	backend/pas/pas-backend-ldap.c
	(create_card_handler, remove_card_handler, modify_card_handler,
	pas_backend_ldap_process_get_vcard, poll_ldap): Use
	e_card_get_vcard_assume_utf8 instead of e_card_get_vcard here
	since all internal communications and database storage are assumed
	to be utf8.

	* backend/ebook/e-card-simple.c, backend/ebook/e-card-simple.h
	(e_card_simple_duplicate): Simplified this function considerably.
	(e_card_simple_get_vcard_assume_utf8): Added this function.

	* backend/ebook/e-card.c, backend/ebook/e-card.h (e_card_new,
	e_card_load_cards_from_file, e_card_load_cards_from_string): Made
	these functions pay attention to charset attributes.
	(e_card_new_with_default_charset,
	e_card_load_cards_from_file_with_default_charset,
	e_card_load_cards_from_string_with_default_charset): New functions
	that let you change the default charset from UTF-8.
	(e_card_get_vcard): Made this write out charset attributes when
	necessary.
	(e_card_get_vcard_assume_utf8): New function that writes out a
	card without writing out charset attributes.

	* backend/ebook/evolution-vcard-importer.c (book_open_cb),
	backend/ebook/load-gnomecard-addressbook.c (book_open_cb),
	backend/ebook/test-card.c (main),
	gui/component/addressbook-component.c
	(destination_folder_handle_drop), gui/contact-editor/test-editor.c
	(main), gui/contact-list-editor/e-contact-list-editor.c
	(table_drag_data_received_cb), gui/widgets/e-addressbook-view.c
	(selection_received), gui/widgets/e-minicard-control.c
	(pstream_load): Changed the default charset to be used here to
	ISO-8859-1.

	* backend/ebook/load-gnomecard-addressbook.c (add_card_cb),
	backend/ebook/load-pine-addressbook.c (add_card_cb),
	backend/ebook/test-client-list.c (get_cursor_cb),
	backend/ebook/test-client.c (get_cursor_cb, get_card_cb): Use
	e_card_get_vcard_assume_utf8 to print out testing strings.

	* gui/component/select-names/e-select-names-model.c,
	gui/component/select-names/e-select-names-model.h
	(e_select_names_model_contains): Changed this to be const
	EDestination *dest to fix a warning.

	* gui/contact-editor/e-contact-editor.c (e_contact_editor_init):
	Translate window title here.

svn path=/trunk/; revision=12558
2001-09-02 06:27:53 +00:00

204 lines
4.1 KiB
C

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#include <config.h>
#include <glib.h>
#include <gtk/gtkmain.h>
#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>
#include <libgnomeui/gnome-init.h>
#include <bonobo/bonobo-main.h>
#include <liboaf/liboaf.h>
#include "e-book.h"
#define TEST_VCARD \
"BEGIN:VCARD
" \
"FN:Nat
" \
"N:Friedman;Nat;D;Mr.
" \
"BDAY:1977-08-06
" \
"TEL;WORK:617 679 1984
" \
"TEL;CELL:123 456 7890
" \
"EMAIL;INTERNET:nat@nat.org
" \
"EMAIL;INTERNET:nat@ximian.com
" \
"ADR;WORK;POSTAL:P.O. Box 101;;;Any Town;CA;91921-1234;
" \
"END:VCARD
" \
"
"
static CORBA_Environment ev;
static char *cardstr;
static void
init_bonobo (int argc, char **argv)
{
if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE)
g_error (_("Could not initialize Bonobo"));
}
static void
get_cursor_cb (EBook *book, EBookStatus status, ECardCursor *cursor, gpointer closure)
{
long length = e_card_cursor_get_length(cursor);
long i;
/* we just added a card, so the length should be >1 */
printf ("\n%s: %s(): Number of cards is %ld\n",
__FILE__, __FUNCTION__, length);
if (length < 1)
printf ("*** Why isn't this above zero?? ***\n\n");
for ( i = 0; i < length; i++ ) {
ECard *card = e_card_cursor_get_nth(cursor, i);
char *vcard = e_card_get_vcard_assume_utf8(card);
printf("Get all cards callback: [%s]\n", vcard);
g_free(vcard);
gtk_object_unref(GTK_OBJECT(card));
}
}
static void
get_card_cb (EBook *book, EBookStatus status, ECard *card, gpointer closure)
{
char *vcard;
vcard = e_card_get_vcard_assume_utf8(card);
printf ("Card added: [%s]\n", vcard);
g_free(vcard);
gtk_object_unref(GTK_OBJECT(card));
printf ("Getting cards..\n");
e_book_get_cursor(book, "", get_cursor_cb, NULL);
printf ("Done getting all cards.\n");
}
static void
add_card_cb (EBook *book, EBookStatus status, const gchar *id, gpointer closure)
{
GTimer *timer;
printf ("Status: %d\n", status);
printf ("Id: %s\n", id);
timer = g_timer_new ();
g_timer_start (timer);
e_book_get_card (book, id, get_card_cb, closure);
g_timer_stop (timer);
printf ("%g\n", g_timer_elapsed (timer, NULL));
}
static void
get_fields_cb (EBook *book, EBookStatus status, EList *fields, gpointer closure)
{
if (fields) {
EIterator *iter = e_list_get_iterator (fields);
printf ("Supported fields:\n");
for (; e_iterator_is_valid (iter); e_iterator_next (iter)) {
printf (" %s\n", (char*)e_iterator_get (iter));
}
gtk_object_unref(GTK_OBJECT(fields));
}
else {
printf ("No supported fields?\n");
}
e_book_add_vcard(book, cardstr, add_card_cb, NULL);
}
static void
auth_user_cb (EBook *book, EBookStatus status, gpointer closure)
{
printf ("user authenticated\n");
e_book_get_supported_fields (book, get_fields_cb, closure);
}
static void
book_open_cb (EBook *book, EBookStatus status, gpointer closure)
{
e_book_authenticate_user (book, "username", "password", auth_user_cb, NULL);
}
static guint
ebook_create (void)
{
EBook *book;
book = e_book_new ();
if (!book) {
printf ("%s: %s(): Couldn't create EBook, bailing.\n",
__FILE__,
__FUNCTION__);
return FALSE;
}
if (! e_book_load_uri (book, "file:/tmp/test.db", book_open_cb, NULL)) {
printf ("error calling load_uri!\n");
}
return FALSE;
}
static char *
read_file (char *name)
{
int len;
char buff[65536];
char line[1024];
FILE *f;
f = fopen (name, "r");
if (f == NULL)
g_error ("Unable to open %s!\n", name);
len = 0;
while (fgets (line, sizeof (line), f) != NULL) {
strcpy (buff + len, line);
len += strlen (line);
}
fclose (f);
return g_strdup (buff);
}
int
main (int argc, char **argv)
{
CORBA_exception_init (&ev);
gnome_init_with_popt_table ("blah", "0.0", argc, argv, NULL, 0, NULL);
oaf_init (argc, argv);
init_bonobo (argc, argv);
cardstr = NULL;
if (argc == 2)
cardstr = read_file (argv [1]);
if (cardstr == NULL)
cardstr = TEST_VCARD;
gtk_idle_add ((GtkFunction) ebook_create, NULL);
bonobo_main ();
return 0;
}