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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Authors: Jeffrey Stedfast <fejj@ximian.com>
*
* Copyright 2001-2004 Ximian, Inc. (www.ximian.com)
*
* 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 Street #330, Boston, MA 02111-1307, USA.
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <ctype.h>
#include <string.h>
#include "gmime-object.h"
#include "gmime-stream-mem.h"
#include "gmime-utils.h"
struct _type_bucket {
char *type;
GType object_type;
GHashTable *subtype_hash;
};
struct _subtype_bucket {
char *subtype;
GType object_type;
};
static void g_mime_object_class_init (GMimeObjectClass *klass);
static void g_mime_object_init (GMimeObject *object, GMimeObjectClass *klass);
static void g_mime_object_finalize (GObject *object);
static void init (GMimeObject *object);
static void add_header (GMimeObject *object, const char *header, const char *value);
static void set_header (GMimeObject *object, const char *header, const char *value);
static const char *get_header (GMimeObject *object, const char *header);
static void remove_header (GMimeObject *object, const char *header);
static void set_content_type (GMimeObject *object, GMimeContentType *content_type);
static char *get_headers (GMimeObject *object);
static ssize_t write_to_stream (GMimeObject *object, GMimeStream *stream);
static int strcase_equal (gconstpointer v, gconstpointer v2);
static guint strcase_hash (gconstpointer key);
static void type_registry_init (void);
static GHashTable *type_hash = NULL;
static GObjectClass *parent_class = NULL;
GType
g_mime_object_get_type (void)
{
static GType type = 0;
if (!type) {
static const GTypeInfo info = {
sizeof (GMimeObjectClass),
NULL, /* base_class_init */
NULL, /* base_class_finalize */
(GClassInitFunc) g_mime_object_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (GMimeObject),
16, /* n_preallocs */
(GInstanceInitFunc) g_mime_object_init,
};
type = g_type_register_static (G_TYPE_OBJECT, "GMimeObject", &info, 0);
}
return type;
}
static void
g_mime_object_class_init (GMimeObjectClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
parent_class = g_type_class_ref (G_TYPE_OBJECT);
object_class->finalize = g_mime_object_finalize;
klass->init = init;
klass->add_header = add_header;
klass->set_header = set_header;
klass->get_header = get_header;
klass->remove_header = remove_header;
klass->set_content_type = set_content_type;
klass->get_headers = get_headers;
klass->write_to_stream = write_to_stream;
type_registry_init ();
}
static void
g_mime_object_init (GMimeObject *object, GMimeObjectClass *klass)
{
object->content_type = NULL;
object->headers = g_mime_header_new ();
object->content_id = NULL;
}
static void
g_mime_object_finalize (GObject *object)
{
GMimeObject *mime = (GMimeObject *) object;
if (mime->content_type)
g_mime_content_type_destroy (mime->content_type);
if (mime->headers)
g_mime_header_destroy (mime->headers);
g_free (mime->content_id);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
/**
* g_mime_object_ref:
* @object: mime object
*
* Ref's a MIME object.
**/
void
g_mime_object_ref (GMimeObject *object)
{
g_return_if_fail (GMIME_IS_OBJECT (object));
g_object_ref ((GObject *) object);
}
/**
* g_mime_object_unref:
* @object: mime object
*
* Unref's a MIME object.
**/
void
g_mime_object_unref (GMimeObject *object)
{
g_return_if_fail (GMIME_IS_OBJECT (object));
g_object_unref ((GObject *) object);
}
/**
* g_mime_object_register_type:
* @type: mime type
* @subtype: mime subtype
* @object_type: object type
*
* Registers the object type @object_type for use with the
* #g_mime_object_new_type convenience function.
*
* Note: You may use the wildcard "*" to match any type and/or
* subtype.
**/
void
g_mime_object_register_type (const char *type, const char *subtype, GType object_type)
{
struct _type_bucket *bucket;
struct _subtype_bucket *sub;
g_return_if_fail (object_type != 0);
g_return_if_fail (subtype != NULL);
g_return_if_fail (type != NULL);
type_registry_init ();
bucket = g_hash_table_lookup (type_hash, type);
if (!bucket) {
bucket = g_new (struct _type_bucket, 1);
bucket->type = g_strdup (type);
bucket->object_type = *type == '*' ? object_type : 0;
bucket->subtype_hash = g_hash_table_new (strcase_hash, strcase_equal);
g_hash_table_insert (type_hash, bucket->type, bucket);
}
sub = g_new (struct _subtype_bucket, 1);
sub->subtype = g_strdup (subtype);
sub->object_type = object_type;
g_hash_table_insert (bucket->subtype_hash, sub->subtype, sub);
}
static void
init (GMimeObject *object)
{
/* no-op */
}
/**
* g_mime_object_new_type:
* @type: mime type
* @subtype: mime subtype
*
* Performs a lookup of registered #GMimeObject subclasses, registered
* using #g_mime_object_register_type, to find an appropriate class
* capable of handling MIME parts of type @type/@subtype. If no class
* has been registered to handle that type, it looks for a registered
* class that can handle @type. If that also fails, then it will use
* the generic part class, #GMimePart.
*
* Returns an appropriate #GMimeObject registered to handle mime-types
* of @type/@subtype.
**/
GMimeObject *
g_mime_object_new_type (const char *type, const char *subtype)
{
struct _type_bucket *bucket;
struct _subtype_bucket *sub;
GMimeObject *object;
GType obj_type;
g_return_val_if_fail (type != NULL, NULL);
type_registry_init ();
bucket = g_hash_table_lookup (type_hash, type);
if (!bucket) {
bucket = g_hash_table_lookup (type_hash, "*");
obj_type = bucket ? bucket->object_type : 0;
} else {
if (!(sub = g_hash_table_lookup (bucket->subtype_hash, subtype)))
sub = g_hash_table_lookup (bucket->subtype_hash, "*");
obj_type = sub ? sub->object_type : 0;
}
if (!obj_type) {
/* use the default mime object */
bucket = g_hash_table_lookup (type_hash, "*");
if (bucket) {
sub = g_hash_table_lookup (bucket->subtype_hash, "*");
obj_type = sub ? sub->object_type : 0;
}
if (!obj_type)
return NULL;
}
object = g_object_new (obj_type, NULL, NULL);
GMIME_OBJECT_GET_CLASS (object)->init (object);
return object;
}
static void
sync_content_type (GMimeObject *object)
{
GMimeContentType *content_type;
GMimeParam *params;
GString *string;
char *type, *p;
content_type = object->content_type;
string = g_string_new ("Content-Type: ");
type = g_mime_content_type_to_string (content_type);
g_string_append (string, type);
g_free (type);
params = content_type->params;
if (params)
g_mime_param_write_to_string (params, FALSE, string);
p = string->str;
g_string_free (string, FALSE);
type = p + strlen ("Content-Type: ");
g_mime_header_set (object->headers, "Content-Type", type);
g_free (p);
}
static void
set_content_type (GMimeObject *object, GMimeContentType *content_type)
{
if (object->content_type)
g_mime_content_type_destroy (object->content_type);
object->content_type = content_type;
sync_content_type (object);
}
/**
* g_mime_object_set_content_type:
* @object: MIME object
* @mime_type: MIME type
*
* Sets the content-type for the specified MIME object.
**/
void
g_mime_object_set_content_type (GMimeObject *object, GMimeContentType *mime_type)
{
g_return_if_fail (GMIME_IS_OBJECT (object));
g_return_if_fail (mime_type != NULL);
GMIME_OBJECT_GET_CLASS (object)->set_content_type (object, mime_type);
}
/**
* g_mime_object_get_content_type:
* @object: MIME object
*
* Gets the Content-Type object for the given MIME object or %NULL on
* fail.
*
* Returns the content-type object for the specified MIME object.
**/
const GMimeContentType *
g_mime_object_get_content_type (GMimeObject *object)
{
g_return_val_if_fail (GMIME_IS_OBJECT (object), NULL);
return object->content_type;
}
/**
* g_mime_object_set_content_type_parameter:
* @object: MIME object
* @name: param name
* @value: param value
*
* Sets the content-type param @name to the value @value.
**/
void
g_mime_object_set_content_type_parameter (GMimeObject *object, const char *name, const char *value)
{
g_return_if_fail (GMIME_IS_OBJECT (object));
g_return_if_fail (name != NULL);
g_mime_content_type_set_parameter (object->content_type, name, value);
sync_content_type (object);
}
/**
* g_mime_object_get_content_type_parameter:
* @object: MIME object
* @name: param name
*
* Gets the value of the content-type param @name set on the MIME part
* @object.
*
* Returns the value of the requested content-type param or %NULL on
* if the param doesn't exist.
**/
const char *
g_mime_object_get_content_type_parameter (GMimeObject *object, const char *name)
{
g_return_val_if_fail (GMIME_IS_OBJECT (object), NULL);
g_return_val_if_fail (name != NULL, NULL);
return g_mime_content_type_get_parameter (object->content_type, name);
}
/**
* g_mime_object_set_content_id:
* @object: MIME object
* @content_id: content-id (addr-spec portion)
*
* Sets the Content-Id of the MIME object.
**/
void
g_mime_object_set_content_id (GMimeObject *object, const char *content_id)
{
char *msgid;
g_return_if_fail (GMIME_IS_OBJECT (object));
g_free (object->content_id);
object->content_id = g_strdup (content_id);
msgid = g_strdup_printf ("<%s>", content_id);
g_mime_object_set_header (object, "Content-Id", msgid);
g_free (msgid);
}
/**
* g_mime_object_get_content_id:
* @object: MIME object
*
* Gets the Content-Id of the MIME object or NULL if one is not set.
*
* Returns a const pointer to the Content-Id header.
**/
const char *
g_mime_object_get_content_id (GMimeObject *object)
{
g_return_val_if_fail (GMIME_IS_OBJECT (object), NULL);
return object->content_id;
}
enum {
HEADER_CONTENT_TYPE,
HEADER_CONTENT_ID,
HEADER_UNKNOWN,
};
static char *headers[] = {
"Content-Type",
"Content-Id",
NULL
};
static void
process_header (GMimeObject *object, const char *header, const char *value)
{
GMimeContentType *content_type;
int i;
for (i = 0; headers[i]; i++) {
if (!g_strcasecmp (headers[i], header))
break;
}
switch (i) {
case HEADER_CONTENT_TYPE:
content_type = g_mime_content_type_new_from_string (value);
if (object->content_type)
g_mime_content_type_destroy (object->content_type);
object->content_type = content_type;
break;
case HEADER_CONTENT_ID:
g_free (object->content_id);
object->content_id = g_mime_utils_decode_message_id (value);
break;
default:
break;
}
}
static void
add_header (GMimeObject *object, const char *header, const char *value)
{
process_header (object, header, value);
g_mime_header_add (object->headers, header, value);
}
/**
* g_mime_object_add_header:
* @object: mime object
* @header: header name
* @value: header value
*
* Adds an arbitrary header to the MIME object.
**/
void
g_mime_object_add_header (GMimeObject *object, const char *header, const char *value)
{
g_return_if_fail (GMIME_IS_OBJECT (object));
g_return_if_fail (header != NULL);
g_return_if_fail (value != NULL);
GMIME_OBJECT_GET_CLASS (object)->add_header (object, header, value);
}
static void
set_header (GMimeObject *object, const char *header, const char *value)
{
process_header (object, header, value);
g_mime_header_set (object->headers, header, value);
}
/**
* g_mime_object_set_header:
* @object: mime object
* @header: header name
* @value: header value
*
* Sets an arbitrary header on the MIME object.
**/
void
g_mime_object_set_header (GMimeObject *object, const char *header, const char *value)
{
g_return_if_fail (GMIME_IS_OBJECT (object));
g_return_if_fail (header != NULL);
g_return_if_fail (value != NULL);
GMIME_OBJECT_GET_CLASS (object)->set_header (object, header, value);
}
static const char *
get_header (GMimeObject *object, const char *header)
{
return g_mime_header_get (object->headers, header);
}
/**
* g_mime_object_get_header:
* @object: mime object
* @header: header name
*
* Gets the value of the requested header if it exists or %NULL
* otherwise.
*
* Returns the value of the header @header if it exists or %NULL
* otherwise.
**/
const char *
g_mime_object_get_header (GMimeObject *object, const char *header)
{
g_return_val_if_fail (GMIME_IS_OBJECT (object), NULL);
g_return_val_if_fail (header != NULL, NULL);
return GMIME_OBJECT_GET_CLASS (object)->get_header (object, header);
}
static void
remove_header (GMimeObject *object, const char *header)
{
g_mime_header_remove (object->headers, header);
}
/**
* g_mime_object_remove_header:
* @object: mime object
* @header: header name
*
* Removed the specified header if it exists.
**/
void
g_mime_object_remove_header (GMimeObject *object, const char *header)
{
g_return_if_fail (GMIME_IS_OBJECT (object));
g_return_if_fail (header != NULL);
GMIME_OBJECT_GET_CLASS (object)->remove_header (object, header);
}
static char *
get_headers (GMimeObject *object)
{
return g_mime_header_to_string (object->headers);
}
/**
* g_mime_object_get_headers:
* @object: mime object
*
* Allocates a string buffer containing all of the MIME object's raw
* headers.
*
* Returns an allocated string containing all of the raw MIME headers.
**/
char *
g_mime_object_get_headers (GMimeObject *object)
{
g_return_val_if_fail (GMIME_IS_OBJECT (object), NULL);
return GMIME_OBJECT_GET_CLASS (object)->get_headers (object);
}
static ssize_t
write_to_stream (GMimeObject *object, GMimeStream *stream)
{
return -1;
}
/**
* g_mime_object_write_to_stream:
* @object: mime object
* @stream: stream
*
* Write the contents of the MIME object to @stream.
*
* Returns -1 on fail.
**/
ssize_t
g_mime_object_write_to_stream (GMimeObject *object, GMimeStream *stream)
{
g_return_val_if_fail (GMIME_IS_OBJECT (object), -1);
g_return_val_if_fail (GMIME_IS_STREAM (stream), -1);
return GMIME_OBJECT_GET_CLASS (object)->write_to_stream (object, stream);
}
/**
* g_mime_object_to_string:
* @object: mime object
*
* Allocates a string buffer containing the contents of @object.
*
* Returns an allocated string containing the contents of the mime
* object.
**/
char *
g_mime_object_to_string (GMimeObject *object)
{
GMimeStream *stream;
GByteArray *array;
char *str;
g_return_val_if_fail (GMIME_IS_OBJECT (object), NULL);
array = g_byte_array_new ();
stream = g_mime_stream_mem_new ();
g_mime_stream_mem_set_byte_array (GMIME_STREAM_MEM (stream), array);
g_mime_object_write_to_stream (object, stream);
g_mime_stream_unref (stream);
g_byte_array_append (array, "", 1);
str = array->data;
g_byte_array_free (array, FALSE);
return str;
}
static int
strcase_equal (gconstpointer v, gconstpointer v2)
{
return g_strcasecmp ((const char *) v, (const char *) v2) == 0;
}
static guint
strcase_hash (gconstpointer key)
{
const char *p = key;
guint h = tolower (*p);
if (h)
for (p += 1; *p != '\0'; p++)
h = (h << 5) - h + tolower (*p);
return h;
}
static void
subtype_bucket_foreach (gpointer key, gpointer value, gpointer user_data)
{
g_free (key);
}
static void
type_bucket_foreach (gpointer key, gpointer value, gpointer user_data)
{
struct _type_bucket *bucket = value;
g_free (bucket->type);
if (bucket->subtype_hash) {
g_hash_table_foreach (bucket->subtype_hash, subtype_bucket_foreach, NULL);
g_hash_table_destroy (bucket->subtype_hash);
}
g_free (bucket);
}
static void
type_registry_shutdown (void)
{
g_hash_table_foreach (type_hash, type_bucket_foreach, NULL);
g_hash_table_destroy (type_hash);
}
static void
type_registry_init (void)
{
if (type_hash)
return;
type_hash = g_hash_table_new (strcase_hash, strcase_equal);
g_atexit (type_registry_shutdown);
}
|