/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* mime-content_field.c : mime content type field utilities */ /* * * Copyright (C) 1999 Bertrand Guiheneuf . * * 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 */ #include "gmime-content-field.h" #include "gstring-util.h" GMimeContentField * gmime_content_field_new (GString *type, GString *subtype) { GMimeContentField *ct; ct = g_new (GMimeContentField,1); ct->type = type; ct->subtype = subtype; ct->parameters = g_hash_table_new(g_string_hash, g_string_equal_for_hash); } void gmime_content_field_set_parameter(GMimeContentField *content_field, GString *attribute, GString *value) { gboolean attribute_exists; GString *old_attribute; GString *old_value; attribute_exists = g_hash_table_lookup_extended (content_field->parameters, attribute, (gpointer *) &old_attribute, (gpointer *) &old_value); if (attribute_exists) { g_string_assign(old_value, value->str); g_string_free (value, TRUE); g_string_free (attribute, TRUE); } else g_hash_table_insert (content_field->parameters, attribute, value); } static void _print_parameter (gpointer name, gpointer value, gpointer user_data) { CamelStream *stream = (CamelStream *)user_data; camel_stream_write_strings (stream, "; \n ", ((GString *)name)->str, "=", ((GString *)value)->str, NULL); } /** * gmime_content_field_write_to: write a mime content type to a stream * @content_field: content type object * @stream: the stream * * **/ void gmime_content_field_write_to_stream (GMimeContentField *content_field, CamelStream *stream) { if (!content_field) return; if ((content_field->type) && ((content_field->type)->str)) { //fprintf (file, "Content-Type: %s", content_field->type->str); camel_stream_write_strings (stream, "Content-Type: ", content_field->type->str, NULL); if ((content_field->subtype) && ((content_field->subtype)->str)) { //fprintf (file, "/%s", content_field->subtype->str); camel_stream_write_strings (stream, "/", content_field->type->str, NULL); } /* print all parameters */ g_hash_table_foreach (content_field->parameters, _print_parameter, stream); //fprintf (file, "\n"); camel_stream_write_string (stream, "\n"); } }