Tree-wide cleanup of trailing whitespace
[barry.git] / src / r_task.h
blobd73a3069c8164f2c811f7fa928811eea7ed96c3f
1 ///
2 /// \file r_task.h
3 /// Record parsing class for the task database.
4 ///
6 /*
7 Copyright (C) 2005-2009, 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__
26 #include "dll.h"
27 #include "record.h"
28 #include "r_recur_base.h"
29 #include <vector>
30 #include <string>
31 #include <stdint.h>
33 namespace Barry {
35 // forward declarations
36 class IConverter;
38 class BXEXPORT Task : public RecurBase
40 public:
41 typedef std::vector<UnknownField> UnknownsType;
43 uint8_t RecType;
44 uint32_t RecordId;
46 uint8_t TaskType;
47 std::string Summary;
48 std::string Notes;
49 std::string Categories;
50 std::string UID;
52 time_t StartTime;
53 time_t DueTime;
54 time_t AlarmTime;
55 int TimeZoneCode;
57 enum AlarmFlagType
59 Date = 1,
60 Relative
62 AlarmFlagType AlarmType;
64 enum PriorityFlagType
66 High = 0,
67 Normal,
68 Low
70 PriorityFlagType PriorityFlag;
72 enum StatusFlagType
74 NotStarted = 0,
75 InProgress,
76 Completed,
77 Waiting,
78 Deferred
80 StatusFlagType StatusFlag;
82 bool DueDateFlag; // true if due date is set
84 // unknown
85 UnknownsType Unknowns;
87 public:
88 Task();
89 ~Task();
91 const unsigned char* ParseField(const unsigned char *begin,
92 const unsigned char *end, const IConverter *ic = 0);
93 uint8_t GetRecType() const { return RecType; }
94 uint32_t GetUniqueId() const { return RecordId; }
95 void SetIds(uint8_t Type, uint32_t Id) { RecType = Type; RecordId = Id; }
96 void ParseHeader(const Data &data, size_t &offset);
97 void ParseFields(const Data &data, size_t &offset, const IConverter *ic = 0);
98 void BuildHeader(Data &data, size_t &offset) const;
100 void Clear();
102 void Dump(std::ostream &os) const;
103 bool operator<(const Task &other) const { return Summary < other.Summary; }
105 // database name
106 static const char * GetDBName() { return "Tasks"; }
107 static uint8_t GetDefaultRecType() { return 2; }
111 BXEXPORT inline std::ostream& operator<<(std::ostream &os, const Task &msg) {
112 msg.Dump(os);
113 return os;
116 } // namespace Barry
118 #endif