blob: efea82a51b9550a08d22366dba55486063b37717 [file] [log] [blame]
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070021#include "timestamp-visitor.h"
22#include "../syntax-tree/blob.h"
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070023
24#include "ns3/nstime.h"
25
Alexander Afanasyev1043c702013-07-15 16:21:09 -070026NDN_NAMESPACE_BEGIN
27
28namespace wire {
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070029namespace CcnbParser {
30
31boost::any/*Time*/
32TimestampVisitor::visit (Blob &n)
33{
34 // Buffer n.m_blob;
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070035 if (n.m_blobSize < 2)
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070036 throw CcnbDecodingException ();
37
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070038 const char *start = n.m_blob;
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070039
40 intmax_t seconds = 0;
41 intmax_t nanoseconds = 0;
42
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070043 for (uint32_t i=0; i < n.m_blobSize-2; i++)
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070044 {
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070045 seconds = (seconds << 8) | (uint8_t)start[i];
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070046 }
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070047 uint8_t combo = start[n.m_blobSize-2]; // 4 most significant bits hold 4 least significant bits of number of seconds
48 seconds = (seconds << 4) | (combo >> 4);
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070049
50 nanoseconds = combo & 0x0F; /*00001111*/ // 4 least significant bits hold 4 most significant bits of number of
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070051 nanoseconds = (nanoseconds << 8) | start[n.m_blobSize-1];
52 nanoseconds = (intmax_t) ((nanoseconds / 4096.0/*2^12*/) * 1000000 /*up-convert useconds*/);
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070053
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070054 return boost::any (Time::FromInteger (seconds, Time::S) + Time::FromInteger (nanoseconds, Time::US));
Alexander Afanasyevf21c5be2011-08-22 00:35:54 -070055}
56
57boost::any
58TimestampVisitor::visit (Udata &n)
59{
60 // std::string n.m_udata;
61 throw CcnbDecodingException ();
62}
63
Alexander Afanasyev1043c702013-07-15 16:21:09 -070064} // CcnbParser
65} // wire
66
67NDN_NAMESPACE_END