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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camelMedium.c : Abstract class for a medium
*
* Authors: Bertrand Guiheneuf <bertrand@helixcode.com>
* Michael Zucchi <notzed@ximian.com>
*
* Copyright 1999, 2000 Ximian, Inc. (www.ximian.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <ctype.h>
#include "camel-medium.h"
#define d(x)
static CamelDataWrapperClass *parent_class = NULL;
/* Returns the class for a CamelMedium */
#define CM_CLASS(so) CAMEL_MEDIUM_CLASS (CAMEL_OBJECT_GET_CLASS(so))
static gboolean is_offline (CamelDataWrapper *data_wrapper);
static void add_header (CamelMedium *medium, const char *name,
const void *value);
static void set_header (CamelMedium *medium, const char *name, const void *value);
static void remove_header (CamelMedium *medium, const char *name);
static const void *get_header (CamelMedium *medium, const char *name);
static GArray *get_headers (CamelMedium *medium);
static void free_headers (CamelMedium *medium, GArray *headers);
static CamelDataWrapper *get_content_object (CamelMedium *medium);
static void set_content_object (CamelMedium *medium,
CamelDataWrapper *content);
static void
camel_medium_class_init (CamelMediumClass *camel_medium_class)
{
CamelDataWrapperClass *camel_data_wrapper_class =
CAMEL_DATA_WRAPPER_CLASS (camel_medium_class);
parent_class = CAMEL_DATA_WRAPPER_CLASS (camel_type_get_global_classfuncs (camel_data_wrapper_get_type ()));
/* virtual method overload */
camel_data_wrapper_class->is_offline = is_offline;
/* virtual method definition */
camel_medium_class->add_header = add_header;
camel_medium_class->set_header = set_header;
camel_medium_class->remove_header = remove_header;
camel_medium_class->get_header = get_header;
camel_medium_class->get_headers = get_headers;
camel_medium_class->free_headers = free_headers;
camel_medium_class->set_content_object = set_content_object;
camel_medium_class->get_content_object = get_content_object;
}
static void
camel_medium_init (gpointer object, gpointer klass)
{
CamelMedium *camel_medium = CAMEL_MEDIUM (object);
camel_medium->content = NULL;
}
static void
camel_medium_finalize (CamelObject *object)
{
CamelMedium *medium = CAMEL_MEDIUM (object);
if (medium->content)
camel_object_unref (medium->content);
}
CamelType
camel_medium_get_type (void)
{
static CamelType camel_medium_type = CAMEL_INVALID_TYPE;
if (camel_medium_type == CAMEL_INVALID_TYPE) {
camel_medium_type = camel_type_register (CAMEL_DATA_WRAPPER_TYPE, "medium",
sizeof (CamelMedium),
sizeof (CamelMediumClass),
(CamelObjectClassInitFunc) camel_medium_class_init,
NULL,
(CamelObjectInitFunc) camel_medium_init,
(CamelObjectFinalizeFunc) camel_medium_finalize);
}
return camel_medium_type;
}
static gboolean
is_offline (CamelDataWrapper *data_wrapper)
{
return parent_class->is_offline (data_wrapper) ||
camel_data_wrapper_is_offline (CAMEL_MEDIUM (data_wrapper)->content);
}
static void
add_header (CamelMedium *medium, const char *name, const void *value)
{
g_warning("No %s::add_header implemented, adding %s", camel_type_to_name(CAMEL_OBJECT_GET_TYPE(medium)), name);
}
/**
* camel_medium_add_header:
* @medium: a #CamelMedium object
* @name: name of the header
* @value: value of the header
*
* Adds a header to a #CamelMedium.
**/
void
camel_medium_add_header (CamelMedium *medium, const char *name, const void *value)
{
g_return_if_fail (CAMEL_IS_MEDIUM (medium));
g_return_if_fail (name != NULL);
g_return_if_fail (value != NULL);
CM_CLASS (medium)->add_header(medium, name, value);
}
static void
set_header (CamelMedium *medium, const char *name, const void *value)
{
g_warning("No %s::set_header implemented, setting %s", camel_type_to_name(CAMEL_OBJECT_GET_TYPE(medium)), name);
}
/**
* camel_medium_set_header:
* @medium: a #CamelMedium object
* @name: name of the header
* @value: value of the header
*
* Sets the value of a header. Any other occurances of the header
* will be removed. Setting a %NULL header can be used to remove
* the header also.
**/
void
camel_medium_set_header (CamelMedium *medium, const char *name, const void *value)
{
g_return_if_fail (CAMEL_IS_MEDIUM (medium));
g_return_if_fail (name != NULL);
if (value == NULL)
CM_CLASS(medium)->remove_header(medium, name);
else
CM_CLASS(medium)->set_header(medium, name, value);
}
static void
remove_header(CamelMedium *medium, const char *name)
{
g_warning("No %s::remove_header implemented, removing %s", camel_type_to_name(CAMEL_OBJECT_GET_TYPE(medium)), name);
}
/**
* camel_medium_remove_header:
* @medium: a #CamelMedium
* @name: the name of the header
*
* Removes the named header from the medium. All occurances of the
* header are removed.
**/
void
camel_medium_remove_header(CamelMedium *medium, const char *name)
{
g_return_if_fail (CAMEL_IS_MEDIUM (medium));
g_return_if_fail (name != NULL);
CM_CLASS(medium)->remove_header(medium, name);
}
static const void *
get_header(CamelMedium *medium, const char *name)
{
g_warning("No %s::get_header implemented, getting %s", camel_type_to_name(CAMEL_OBJECT_GET_TYPE(medium)), name);
return NULL;
}
/**
* camel_medium_get_header:
* @medium: a #CamelMedium object
* @name: the name of the header
*
* Gets the value of the named header in the medium, or %NULL if
* it is unset. The caller should not modify or free the data.
*
* If the header occurs more than once, only retrieve the first
* instance of the header. For multi-occuring headers, use
* :get_headers().
*
* Returns the value of the named header, or %NULL
**/
const void *
camel_medium_get_header(CamelMedium *medium, const char *name)
{
g_return_val_if_fail (CAMEL_IS_MEDIUM (medium), NULL);
g_return_val_if_fail (name != NULL, NULL);
return CM_CLASS (medium)->get_header (medium, name);
}
static GArray *
get_headers(CamelMedium *medium)
{
g_warning("No %s::get_headers implemented", camel_type_to_name(CAMEL_OBJECT_GET_TYPE(medium)));
return NULL;
}
/**
* camel_medium_get_headers:
* @medium: a #CamelMedium object
*
* Gets an array of all header name/value pairs (as
* CamelMediumHeader structures). The values will be decoded
* to UTF-8 for any headers that are recognized by Camel. The
* caller should not modify the returned data.
*
* Returns the array of headers, which must be freed with
* #camel_medium_free_headers.
**/
GArray *
camel_medium_get_headers(CamelMedium *medium)
{
g_return_val_if_fail (CAMEL_IS_MEDIUM (medium), NULL);
return CM_CLASS (medium)->get_headers (medium);
}
static void
free_headers (CamelMedium *medium, GArray *headers)
{
g_warning("No %s::free_headers implemented", camel_type_to_name(CAMEL_OBJECT_GET_TYPE(medium)));
}
/**
* camel_medium_free_headers:
* @medium: a #CamelMedium object
* @headers: an array of headers returned from #camel_medium_get_headers
*
* Frees @headers.
**/
void
camel_medium_free_headers (CamelMedium *medium, GArray *headers)
{
g_return_if_fail (CAMEL_IS_MEDIUM (medium));
g_return_if_fail (headers != NULL);
CM_CLASS (medium)->free_headers (medium, headers);
}
static CamelDataWrapper *
get_content_object(CamelMedium *medium)
{
return medium->content;
}
/**
* camel_medium_get_content_object:
* @medium: a #CamelMedium object
*
* Getss a data wrapper that represents the content of the medium,
* without its headers.
*
* Returns a #CamelDataWrapper containing @medium's content
**/
CamelDataWrapper *
camel_medium_get_content_object (CamelMedium *medium)
{
g_return_val_if_fail (CAMEL_IS_MEDIUM (medium), NULL);
return CM_CLASS (medium)->get_content_object (medium);
}
static void
set_content_object (CamelMedium *medium, CamelDataWrapper *content)
{
if (medium->content)
camel_object_unref (medium->content);
camel_object_ref (content);
medium->content = content;
}
/**
* camel_medium_set_content_object:
* @medium: a #CamelMedium object
* @content: a #CamelDataWrapper object
*
* Sets the content of @medium to be @content.
**/
void
camel_medium_set_content_object (CamelMedium *medium,
CamelDataWrapper *content)
{
g_return_if_fail (CAMEL_IS_MEDIUM (medium));
g_return_if_fail (CAMEL_IS_DATA_WRAPPER (content));
CM_CLASS (medium)->set_content_object (medium, content);
}
|