lib: minor cleanups on bookmark parser
[barry.git] / opensync-plugin / src / vcard.h
blobd1c4e728962a2d0b2dfbe12994f315c55684bed4
1 ///
2 /// \file vcard.h
3 /// Conversion routines for vcards
4 ///
6 /*
7 Copyright (C) 2006-2010, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRYSYNC_VCARD_H__
23 #define __BARRYSYNC_VCARD_H__
25 #include <barry/barry.h>
26 #include <stdint.h>
27 #include <string>
29 // forward declarations
30 class BarryEnvironment;
32 class VCardConverter
34 char *m_Data;
35 Barry::Contact m_Contact;
36 uint32_t m_RecordId;
38 public:
39 VCardConverter();
40 explicit VCardConverter(uint32_t newRecordId);
41 ~VCardConverter();
43 // Transfers ownership of m_Data to the caller
44 char* ExtractData();
46 // Parses vevent data
47 bool ParseData(const char *data);
49 // Barry storage operator
50 void operator()(const Barry::Contact &rec);
52 // Barry builder operator
53 bool operator()(Barry::Contact &rec, Barry::Builder &);
55 // Handles calling of the Barry::Controller to fetch a specific
56 // record, indicated by index (into the RecordStateTable).
57 // Returns a g_malloc'd string of data containing the vevent20
58 // data. It is the responsibility of the caller to free it.
59 // This is intended to be passed into the GetChanges() function.
60 static char* GetRecordData(BarryEnvironment *env, unsigned int dbId,
61 Barry::RecordStateTable::IndexType index);
63 // Handles either adding or overwriting a calendar record,
64 // given vevent20 data in data, and the proper environmebnt,
65 // dbId, StateIndex. Set add to true if adding.
66 static bool CommitRecordData(BarryEnvironment *env, unsigned int dbId,
67 Barry::RecordStateTable::IndexType StateIndex, uint32_t recordId,
68 const char *data, bool add, std::string &errmsg);
72 #endif