/usr/share/doc/libucommon-dev/a00002.html is in libucommon-doc 3.2.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>UCommon: datetime.cpp</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.3 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>datetime.cpp</h1><p>Example of date & time manipulation.</p>
<div class="fragment"><pre class="fragment"><span class="comment">// Copyright (C) 2006-2010 David Sugar, Tycho Softworks.</span>
<span class="comment">//</span>
<span class="comment">// This file is part of GNU uCommon C++.</span>
<span class="comment">//</span>
<span class="comment">// GNU uCommon C++ is free software: you can redistribute it and/or modify</span>
<span class="comment">// it under the terms of the GNU Lesser General Public License as published </span>
<span class="comment">// by the Free Software Foundation, either version 3 of the License, or</span>
<span class="comment">// (at your option) any later version.</span>
<span class="comment">//</span>
<span class="comment">// GNU uCommon C++ is distributed in the hope that it will be useful,</span>
<span class="comment">// but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<span class="comment">// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
<span class="comment">// GNU Lesser General Public License for more details.</span>
<span class="comment">//</span>
<span class="comment">// You should have received a copy of the GNU Lesser General Public License</span>
<span class="comment">// along with GNU uCommon C++. If not, see <http://www.gnu.org/licenses/>.</span>
<span class="preprocessor">#ifndef DEBUG</span>
<span class="preprocessor"></span><span class="preprocessor">#define DEBUG</span>
<span class="preprocessor"></span><span class="preprocessor">#endif</span>
<span class="preprocessor"></span>
<span class="preprocessor">#include <<a class="code" href="a00210.html" title="Top level include file for the GNU uCommon C++ core library.">ucommon/ucommon.h</a>></span>
<span class="preprocessor">#include <stdio.h></span>
<span class="keyword">using namespace </span>UCOMMON_NAMESPACE;
<span class="keyword">using namespace </span>std;
<span class="keywordtype">int</span> main(<span class="keywordtype">int</span> argc, <span class="keywordtype">char</span> **argv)
{
Date date = Date(2003, 1, 6);
<span class="keywordtype">int</span> exp_year = 2003;
<span class="keywordtype">int</span> exp_month = 1;
<span class="keywordtype">int</span> exp_day = 6;
<span class="keywordtype">int</span> exp_dayofweek = 1;
<a name="a0"></a><a class="code" href="a00214.html#ad412a12981fa5ebe1b83ac1fb48585ef" title="A convenience type when mixing std::string in old compilers that are bad with namespaces...">String</a> exp_stringdate;
<a name="a1"></a><a class="code" href="a00214.html#a7844b6bef86b8b2c8603678e72ef9854" title="Convenience type for struct tm.">tm_t</a> exp_dt;
time_t exp_ctime;
<span class="keywordtype">char</span> buf[20];
snprintf(buf, <span class="keyword">sizeof</span>(buf),
<span class="stringliteral">"%04d-%02d-%02d"</span>, exp_year, exp_month, exp_day);
memset(&exp_dt, 0, <span class="keyword">sizeof</span>(exp_dt));
exp_dt.tm_year = exp_year - 1900;
exp_dt.tm_mon = exp_month - 1;
exp_dt.tm_mday = exp_day;
exp_ctime = mktime(&exp_dt);
assert(exp_year == date[Date::year]);
assert(exp_month == date[Date::month]);
assert(exp_day == date[Date::day]);
assert(exp_dayofweek == date[Date::dow]);
<span class="comment">// test some conversions...</span>
exp_stringdate = date();
assert(<a name="a2"></a><a class="code" href="a00214.html#ae8329c8eceb3e760d48253f1c3386623" title="Compare two socket addresses to see if equal.">eq</a>(*exp_stringdate, <span class="stringliteral">"2003-01-06"</span>));
date.get(buf);
assert(<a class="code" href="a00214.html#ae8329c8eceb3e760d48253f1c3386623" title="Compare two socket addresses to see if equal.">eq</a>(buf, <span class="stringliteral">"2003-01-06"</span>));
assert(exp_ctime == date.getTime());
<span class="comment">// some operator tests...</span>
Date aday = date;
Date nextday(2003, 1, 7);
assert(aday == date);
assert((++aday) == nextday);
assert(aday != date);
assert(date <= aday);
assert(date < aday);
<span class="comment">// play with math and casting operators...</span>
Date newday = nextday + 5l;
assert((<span class="keywordtype">long</span>)newday == 20030112l);
assert((<span class="keywordtype">long</span>)nextday == 20030107l);
assert(newday - nextday == 5);
<span class="comment">// test some math...</span>
assert(20030106l == date.get());
date -= 6;
assert(20021231l == date.get());
<span class="comment">// test invalid date...</span>
date = <span class="stringliteral">"20031306"</span>;
assert(!<a name="a3"></a><a class="code" href="a00214.html#aa074f1a5a7f2741a51a01bc1607fb4a6" title="Convenience function to validate object assuming it is castable to bool.">is</a>(date));
<span class="comment">// conversion check...</span>
date = <span class="stringliteral">"2003-08-04"</span>;
assert((<span class="keywordtype">long</span>)date == 20030804l);
DateTimeString dts(<span class="stringliteral">"2003-02-28 23:59:55"</span>);
<a class="code" href="a00214.html#ae8329c8eceb3e760d48253f1c3386623" title="Compare two socket addresses to see if equal.">eq</a>((<span class="keyword">const</span> <span class="keywordtype">char</span> *)dts, <span class="stringliteral">"2003-02-28 23:59:55"</span>);
DateTime tmp(<span class="stringliteral">"2003-02-28 23:59:55"</span>);
snprintf(buf, <span class="keyword">sizeof</span>(buf), <span class="stringliteral">"%.5f"</span>, (<span class="keywordtype">double</span>)tmp);
assert(<a class="code" href="a00214.html#ae8329c8eceb3e760d48253f1c3386623" title="Compare two socket addresses to see if equal.">eq</a>(buf, <span class="stringliteral">"2452699.99994"</span>));
assert((<span class="keywordtype">long</span>)tmp == 20030228l);
tmp += 5; <span class="comment">// add 5 seconds to force rollover...</span>
assert((<span class="keywordtype">long</span>)tmp == 20030301l);
<span class="keywordflow">return</span> 0;
}
</pre></div> </div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Tue Jul 6 08:22:00 2010 for UCommon by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>
|