3 /// Record parsing class for the task database.
7 Copyright (C) 2005-2010, Net Direct Inc. (http://www.netdirect.ca/)
8 Copyright (C) 2009, Ryan Li(ryan@ryanium.com)
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_SMS_H__
24 #define __BARRY_RECORD_SMS_H__
34 // forward declarations
40 typedef Barry::UnknownsType UnknownsType
;
52 MessageType MessageStatus
;
60 DeliveryType DeliveryStatus
; // not implemented yet
68 uint64_t Timestamp
; // milliseconds from Jan 1, 1970
69 uint64_t ServiceCenterTimestamp
; // not applicable for non-incoming messages
71 enum DataCodingSchemeType
77 DataCodingSchemeType DataCodingScheme
;
81 std::vector
<std::string
> Addresses
;
84 UnknownsType Unknowns
;
90 time_t GetTime() const;
91 time_t GetServiceCenterTime() const;
92 void SetTime(const time_t timestamp
, unsigned int milliseconds
= 0);
93 void SetServiceCenterTime(const time_t timestamp
, unsigned int milliseconds
= 0);
95 const unsigned char* ParseField(const unsigned char *begin
, const unsigned char *end
, const IConverter
*ic
= 0);
96 uint8_t GetRecType() const { return RecType
; }
97 uint32_t GetUniqueId() const { return RecordId
; }
98 void SetIds(uint8_t Type
, uint32_t Id
) { RecType
= Type
; RecordId
= Id
; }
99 void ParseHeader(const Data
&data
, size_t &offset
);
100 void ParseFields(const Data
&data
, size_t &offset
, const IConverter
*ic
= 0);
101 void BuildHeader(Data
&data
, size_t &offset
) const;
105 void Dump(std::ostream
&os
) const;
107 static std::string
ConvertGsmToUtf8(const std::string
&);
110 bool operator<(const Sms
&other
) const {
111 return Timestamp
< other
.Timestamp
;
115 static const char * GetDBName() { return "SMS Messages"; }
116 static uint8_t GetDefaultRecType() { return 5; }
119 BXEXPORT
inline std::ostream
& operator<<(std::ostream
&os
, const Sms
&msg
) {