aboutsummaryrefslogtreecommitdiffstats
path: root/camel/gmime-content-field.c
blob: e5eb81155e18f7dcec967b5c32b36b1a404f2a5e (plain) (blame)
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
/* -*- 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 <Bertrand.Guiheneuf@inria.fr> .
 *
 * 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)
{
    FILE *file = (FILE *)user_data;
    
    fprintf (file, "; \n    %s=%s", ((GString *)name)->str, ((GString *)value)->str);
}

/**
 * gmime_content_field_write_to_file: write a mime content type to a file
 * @content_field: content type object
 * @file: file to write the content type field
 * 
 * 
 **/
void
gmime_content_field_write_to_file(GMimeContentField *content_field, FILE *file)
{
    g_assert(content_field);
    if ((content_field->type) && ((content_field->type)->str)) {
        fprintf (file, "Content-Type: %s", content_field->type->str);
        if ((content_field->subtype) && ((content_field->subtype)->str)) {
            fprintf (file, "/%s", content_field->subtype->str);
        }
        /* print all parameters */
        g_hash_table_foreach (content_field->parameters, _print_parameter, file);
        fprintf (file, "\n");
    }
}