Updated license
[anna.git] / include / anna / time / internal / TZ.hpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
6 //
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
9 // are met:
10 //
11 //     * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 //     * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
16 // distribution.
17 //     * Neither the name of Google Inc. nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 #ifndef anna_time_internal_TZ_hpp
38 #define anna_time_internal_TZ_hpp
39
40
41 // Standard
42 #include <string>
43
44
45 //------------------------------------------------------------------------------
46 //---------------------------------------------------------------------- #define
47 //------------------------------------------------------------------------------
48
49
50 namespace anna {
51
52 namespace time {
53
54 class TZ {
55
56   bool a_initialized;
57   std::string a_value;
58   bool a_isUnset;
59
60 public:
61
62   TZ() { a_initialized = false; };
63   ~TZ() {};
64
65
66   // sets
67
68   void set(const char *input) {
69     a_initialized = true;
70     a_value = input ? input : "";
71     a_isUnset = !input;
72   }
73
74   TZ & operator = (const TZ &tz) {
75     if(this == &tz) return (*this);
76
77     a_initialized = tz.isInitialized();
78     a_value = tz.getValue();
79     a_isUnset = tz.isUnset();
80     return (*this);
81   }
82
83   // gets
84
85   // Operators
86
87   friend bool operator == (const TZ & tz1, const TZ & tz2) {
88     if(tz1.isInitialized() != tz2.isInitialized())
89       return (false);
90
91     if(tz1.isUnset())
92       return (tz2.isUnset());
93
94     return (tz1.getValue() == tz2.getValue());
95   }
96
97   friend bool operator != (const TZ & tz1, const TZ & tz2) {
98     return (!(tz1 == tz2));
99   }
100
101   const std::string & getValue(void) const throw() {
102     return (a_value);
103   }
104
105
106   bool isInitialized(void) const throw() {
107     return (a_initialized);
108   }
109
110
111   bool isUnset(void) const throw() { return (a_isUnset); }
112   bool isEmpty(void) const throw() { return (getValue() == ""); }
113
114   std::string getShellAssignment(void) const throw() {
115     std::string assignment;
116
117     if(isUnset())
118       assignment = "unset TZ";
119     else {
120       assignment = "TZ=";
121       assignment += getValue();
122     }
123
124     return (assignment);
125   }
126
127 };
128
129
130 }
131 }
132
133 #endif
134