3 /// Record parsing class for the task database.
7 Copyright (C) 2005-2010, Net Direct Inc. (http://www.netdirect.ca/)
8 Copyright (C) 2007, Brian Edginton
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_TASK_H__
24 #define __BARRY_RECORD_TASK_H__
28 #include "r_recur_base.h"
35 // forward declarations
38 class BXEXPORT Task
: public RecurBase
41 typedef std::vector
<UnknownField
> UnknownsType
;
48 CategoryList Categories
;
54 unsigned short TimeZoneCode
;
55 bool TimeZoneValid
; // true if the record contained a
63 AlarmFlagType AlarmType
;
71 PriorityFlagType PriorityFlag
;
81 StatusFlagType StatusFlag
;
83 bool DueDateFlag
; // true if due date is set
86 UnknownsType Unknowns
;
89 static AlarmFlagType
AlarmProto2Rec(uint8_t a
);
90 static uint8_t AlarmRec2Proto(AlarmFlagType a
);
92 static PriorityFlagType
PriorityProto2Rec(uint8_t p
);
93 static uint8_t PriorityRec2Proto(PriorityFlagType p
);
95 static StatusFlagType
StatusProto2Rec(uint8_t s
);
96 static uint8_t StatusRec2Proto(StatusFlagType s
);
102 const unsigned char* ParseField(const unsigned char *begin
,
103 const unsigned char *end
, const IConverter
*ic
= 0);
104 uint8_t GetRecType() const { return RecType
; }
105 uint32_t GetUniqueId() const { return RecordId
; }
106 void SetIds(uint8_t Type
, uint32_t Id
) { RecType
= Type
; RecordId
= Id
; }
107 void ParseHeader(const Data
&data
, size_t &offset
);
108 void ParseFields(const Data
&data
, size_t &offset
, const IConverter
*ic
= 0);
109 void BuildHeader(Data
&data
, size_t &offset
) const;
110 void BuildFields(Data
&data
, size_t &offset
, const IConverter
*ic
= 0) const;
114 void Dump(std::ostream
&os
) const;
115 bool operator<(const Task
&other
) const;
118 static const char * GetDBName() { return "Tasks"; }
119 static uint8_t GetDefaultRecType() { return 2; }
123 BXEXPORT
inline std::ostream
& operator<<(std::ostream
&os
, const Task
&msg
) {