lib: added MimeBuilder, to convert MIME records to DBData objects
[barry.git] / src / mimeio.h
blob053a0795b385cc31064791415e5202e1c75601f6
1 ///
2 /// \file mimeio.h
3 /// Storage, parser, builder classes for MIME objects
4 /// (vcard, vevent, vtodo, vjournal)
5 ///
7 /*
8 Copyright (C) 2010, 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__
26 #include "dll.h"
27 #include "builder.h"
28 #include <memory>
29 #include <iosfwd>
31 namespace Barry {
33 class BXEXPORT MimeBuilder : public Barry::Builder
35 std::auto_ptr<std::ifstream> m_ifs;
36 std::istream &m_is;
38 public:
39 explicit MimeBuilder(const std::string &filename);
40 explicit MimeBuilder(std::istream &is);
42 bool BuildRecord(DBData &data, size_t &offset, const IConverter *ic);
43 bool FetchRecord(DBData &data, const IConverter *ic);
44 bool EndOfFile() const;
46 // return false at end of file, true if a record was read
47 static bool ReadMimeRecord(std::istream &is, std::string &vrec,
48 std::string &type);
53 #endif