3 /// Storage, parser, builder classes for MIME objects
4 /// (vcard, vevent, vtodo, vjournal)
8 Copyright (C) 2010-2011, Net Direct Inc. (http://www.netdirect.ca/)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #ifndef __BARRY_MIMEIO_H__
24 #define __BARRY_MIMEIO_H__
35 class BXEXPORT MimeBuilder
: public Barry::Builder
37 std::auto_ptr
<std::ifstream
> m_ifs
;
41 explicit MimeBuilder(const std::string
&filename
);
42 explicit MimeBuilder(std::istream
&is
);
44 bool BuildRecord(DBData
&data
, size_t &offset
, const IConverter
*ic
);
45 bool FetchRecord(DBData
&data
, const IConverter
*ic
);
46 bool EndOfFile() const;
48 // return false at end of file, true if a record was read
49 static bool ReadMimeRecord(std::istream
&is
, std::string
&vrec
,
50 std::vector
<std::string
> &types
);
51 // returns true if item is a member of types, doing a
52 // case-insensitive compare
53 static bool IsMember(const std::string
&item
,
54 const std::vector
<std::string
> &types
);