/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright (C) 2000-2003 Ximian Inc. * * Authors: Michael Zucchi * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU 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 * 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. */ #ifndef _CAMEL_MIME_PARSER_H #define _CAMEL_MIME_PARSER_H #ifdef __cplusplus extern "C" { #pragma } #endif /* __cplusplus */ #include #include #include #include #define CAMEL_MIME_PARSER(obj) CAMEL_CHECK_CAST (obj, camel_mime_parser_get_type (), CamelMimeParser) #define CAMEL_MIME_PARSER_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, camel_mime_parser_get_type (), CamelMimeParserClass) #define CAMEL_IS_MIME_PARSER(obj) CAMEL_CHECK_TYPE (obj, camel_mime_parser_get_type ()) typedef struct _CamelMimeParserClass CamelMimeParserClass; /* NOTE: if you add more states, you may need to bump the start of the END tags to 16 or 32, etc - so they are the same as the matching start tag, with a bit difference */ enum _camel_mime_parser_state { CAMEL_MIME_PARSER_STATE_INITIAL, CAMEL_MIME_PARSER_STATE_PRE_FROM, /* data before a 'From' line */ CAMEL_MIME_PARSER_STATE_FROM, /* got 'From' line */ CAMEL_MIME_PARSER_STATE_HEADER, /* toplevel header */ CAMEL_MIME_PARSER_STATE_BODY, /* scanning body of message */ CAMEL_MIME_PARSER_STATE_MULTIPART, /* got multipart header */ CAMEL_MIME_PARSER_STATE_MESSAGE, /* rfc822 message */ CAMEL_MIME_PARSER_STATE_PART, /* part of a multipart */ CAMEL_MIME_PARSER_STATE_END = 8, /* bit mask for 'end' flags */ CAMEL_MIME_PARSER_STATE_EOF = 8, /* end of file */ CAMEL_MIME_PARSER_STATE_PRE_FROM_END, /* pre from end */ CAMEL_MIME_PARSER_STATE_FROM_END, /* end of whole from bracket */ CAMEL_MIME_PARSER_STATE_HEADER_END, /* dummy value */ CAMEL_MIME_PARSER_STATE_BODY_END, /* end of message */ CAMEL_MIME_PARSER_STATE_MULTIPART_END, /* end of multipart */ CAMEL_MIME_PARSER_STATE_MESSAGE_END, /* end of message */ }; struct _CamelMimeParser { CamelObject parent; struct _CamelMimeParserPrivate *priv; }; struct _CamelMimeParserClass { CamelObjectClass parent_class; void (*message) (CamelMimeParser *parser, void *headers); void (*part) (CamelMimeParser *parser); void (*content) (CamelMimeParser *parser); }; CamelType camel_mime_parser_get_type (void); CamelMimeParser *camel_mime_parser_new (void); /* quick-fix for parser not erroring, we can find out if it had an error afterwards */ int camel_mime_parser_errno (CamelMimeParser *parser); /* using an fd will be a little faster, but not much (over a simple stream) */ int camel_mime_parser_init_with_fd (CamelMimeParser *parser, int fd); int camel_mime_parser_init_with_stream (CamelMimeParser *parser, CamelStream *stream); /* get the stream or fd back of the parser */ CamelStream *camel_mime_parser_stream (CamelMimeParser *parser); int camel_mime_parser_fd (CamelMimeParser *parser); /* scan 'From' separators? */ void camel_mime_parser_scan_from (CamelMimeParser *parser, gboolean scan_from); /* Do we want to know about the pre-from data? */ void camel_mime_parser_scan_pre_from (CamelMimeParser *parser, gboolean scan_pre_from); /* what headers to save, MUST include ^Content-Type: */ int camel_mime_parser_set_header_regex (CamelMimeParser *parser, char *matchstr); /* normal interface */ enum _camel_mime_parser_state camel_mime_parser_step (CamelMimeParser *parser, char **buf, size_t *buflen); void camel_mime_parser_unstep (CamelMimeParser *parser); void camel_mime_parser_drop_step (CamelMimeParser *parser); enum _camel_mime_parser_state camel_mime_parser_state (CamelMimeParser *parser); /* read through the parser */ int camel_mime_parser_read (CamelMimeParser *parser, const char **databuffer, int len); /* get content type for the current part/header */ CamelContentType *camel_mime_parser_content_type (CamelMimeParser *parser); /* get/change raw header by name */ const char *camel_mime_parser_header (CamelMimeParser *parser, const char *name, int *offset); /* get all raw headers. READ ONLY! */ struct _camel_header_raw *camel_mime_parser_headers_raw (CamelMimeParser *parser); /* get multipart pre/postface */ const char *camel_mime_parser_preface (CamelMimeParser *parser); const char *camel_mime_parser_postface (CamelMimeParser *parser); /* return the from line content */ const char *camel_mime_parser_from_line (CamelMimeParser *parser); /* add a processing filter for body contents */ int camel_mime_parser_filter_add (CamelMimeParser *parser, CamelMimeFilter *filter); void camel_mime_parser_filter_remove (CamelMimeParser *parser, int id); /* these should be used with caution, because the state will not track the seeked position */ /* FIXME: something to bootstrap the state? */ off_t camel_mime_parser_tell (CamelMimeParser *parser); off_t camel_mime_parser_seek (CamelMimeParser *parser, off_t offset, int whence); off_t camel_mime_parser_tell_start_headers (CamelMimeParser *parser); off_t camel_mime_parser_tell_start_from (CamelMimeParser *parser); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* ! _CAMEL_MIME_PARSER_H */ sd-ports-gnome/commit/x11/fbdesk?h=dependabot/npm_and_yarn/devel/electron6/files/ini-1.3.8&id=a5fddeafcdb2cab1016827038e317a262dad4857'>commitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* x11/fbdesk: Fix build with libc++ 3.8.0pi2016-04-301-0/+11
* Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.mat2016-04-011-2/+2
* - Switch to options helpersamdmi32015-09-171-14/+4
* MASTER_SITES cleanup.mat2015-05-141-1/+1
* - Remove Mk/bsd.efl.mkgblach2014-12-271-2/+1
* Bump portrevision after png updatebapt2014-12-261-1/+1
* Properly support png 1.5antoine2014-12-242-13/+138
* Stage supportantoine2014-01-051-5/+2
* Cleanup of the unowned ports in the x11 directoryeadler2013-10-131-2/+2
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* Add explicit dependency on pkgconfbapt2013-08-311-5/+2
* - Remove MAKE_JOBS_SAFE variableak2013-08-151-1/+0
* - update png to 1.5.10dinoex2012-06-012-4/+21
* Convert to new options frameworkbapt2012-05-311-7/+8
* - Fix MASTER_SITESehaupt2011-08-091-7/+6
* - Get Rid MD5 supportmiwi2011-03-191-1/+0
* - fix build for png-1.4.1dinoex2010-03-301-0/+11
* - update to 1.4.1dinoex2010-03-281-2/+2
* - update to jpeg-8dinoex2010-02-051-1/+1
* For ports maintained by ports@FreeBSD.org, remove names and/ordougb2009-12-211-3/+0
* - bump all port that indirectly depends on libjpeg and have not yet been bump...dinoex2009-07-311-1/+1