~charlesk/indicator-datetime/lp-1001595

« back to all changes in this revision

Viewing changes to include/datetime/date-time.h

  • Committer: CI bot
  • Author(s): Charles Kerr
  • Date: 2014-01-31 11:46:08 UTC
  • mfrom: (290.2.86 cpp)
  • Revision ID: ps-jenkins@lists.canonical.com-20140131114608-8sfzhimcfdywmk46
Finally land this. Other, still open bugs will be fixed in subsequent commits. Fixes: 793450, 1271484, 1274046

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *   Charles Kerr <charles.kerr@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef INDICATOR_DATETIME_DATETIME_H
 
21
#define INDICATOR_DATETIME_DATETIME_H
 
22
 
 
23
#include <glib.h> // GDateTime
 
24
 
 
25
#include <ctime> // time_t
 
26
#include <memory> // std::shared_ptr
 
27
 
 
28
namespace unity {
 
29
namespace indicator {
 
30
namespace datetime {
 
31
 
 
32
/**
 
33
 * \brief A simple C++ wrapper for GDateTime to simplify ownership/refcounts
 
34
 */
 
35
class DateTime
 
36
{
 
37
public:
 
38
    static DateTime NowLocal();
 
39
    explicit DateTime(time_t t);
 
40
    explicit DateTime(GDateTime* in=nullptr);
 
41
    DateTime& operator=(GDateTime* in);
 
42
    DateTime& operator=(const DateTime& in);
 
43
    DateTime to_timezone(const std::string& zone) const;
 
44
    void reset(GDateTime* in=nullptr);
 
45
 
 
46
    GDateTime* get() const;
 
47
    GDateTime* operator()() const {return get();}
 
48
 
 
49
    std::string format(const std::string& fmt) const;
 
50
    int day_of_month() const;
 
51
    int64_t to_unix() const;
 
52
 
 
53
    bool operator<(const DateTime& that) const;
 
54
    bool operator!=(const DateTime& that) const;
 
55
    bool operator==(const DateTime& that) const;
 
56
 
 
57
    static bool is_same_day(const DateTime& a, const DateTime& b);
 
58
    static bool is_same_minute(const DateTime& a, const DateTime& b);
 
59
 
 
60
private:
 
61
    std::shared_ptr<GDateTime> m_dt;
 
62
};
 
63
 
 
64
} // namespace datetime
 
65
} // namespace indicator
 
66
} // namespace unity
 
67
 
 
68
#endif // INDICATOR_DATETIME_DATETIME_H