lib: set default rectype for Bookmarks to 1
[barry.git] / src / r_bookmark.h
blob8a47e36e800fe8c8bad70e81c9edc3254df31c89
1 ///
2 /// \file r_bookmark.h
3 /// Record parsing class for call logs
4 ///
6 /*
7 Copyright (C) 2008-2009, Nicolas VIVIEN
8 Copyright (C) 2005-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_RECORD_BOOKMARK_H__
24 #define __BARRY_RECORD_BOOKMARK_H__
26 #include "dll.h"
27 #include "record.h"
28 #include <vector>
29 #include <string>
30 #include <stdint.h>
32 namespace Barry {
34 // forward declarations
35 class IConverter;
37 class BXEXPORT Bookmark
39 public:
40 typedef std::vector<UnknownField> UnknownsType;
42 uint8_t RecType;
43 uint32_t RecordId;
45 std::string Name;
46 std::string Icone;
47 std::string URL;
49 enum BrowserIdentityType
51 IdentityAuto = 0,
52 IdentityBlackBerry,
53 IdentityFireFox,
54 IdentityInternetExplorer,
55 IdentityUnknown
57 BrowserIdentityType BrowserIdentity;
59 enum DisplayModeType
61 DisplayAuto = 0,
62 DisplayColomn,
63 DisplayPage,
64 DisplayUnknown
66 DisplayModeType DisplayMode;
68 enum JavaScriptModeType
70 JavaScriptAuto = 0,
71 JavaScriptEnabled,
72 JavaScriptDisabled,
73 JavaScriptUnknown
75 JavaScriptModeType JavaScriptMode;
77 UnknownsType Unknowns;
79 protected:
81 public:
82 Bookmark();
83 ~Bookmark();
85 // Parser / Builder API (see parser.h / builder.h)
86 const unsigned char* ParseField(const unsigned char *begin,
87 const unsigned char *end, const IConverter *ic = 0);
88 uint8_t GetRecType() const { return RecType; }
89 uint32_t GetUniqueId() const { return RecordId; }
90 void SetIds(uint8_t Type, uint32_t Id) { RecType = Type; RecordId = Id; }
91 void ParseHeader(const Data &data, size_t &offset);
92 void ParseFields(const Data &data, size_t &offset, const IConverter *ic = 0);
94 void Clear();
96 void Dump(std::ostream &os) const;
98 // Sorting - use enough data to make the sorting as
99 // consistent as possible
100 bool operator<(const Bookmark &other) const;
102 // database name
103 static const char * GetDBName() { return "Browser Bookmarks"; }
104 static uint8_t GetDefaultRecType() { return 1; }
107 BXEXPORT inline std::ostream& operator<<(std::ostream &os, const Bookmark &msg) {
108 msg.Dump(os);
109 return os;
112 } // namespace Barry
114 #endif