Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 1 | /* -*- 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 Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 21 | #include "timestamp-visitor.h" |
| 22 | #include "../syntax-tree/blob.h" |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 23 | |
| 24 | #include "ns3/nstime.h" |
| 25 | |
| 26 | namespace ns3 { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 27 | namespace ndn { |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 28 | namespace CcnbParser { |
| 29 | |
| 30 | boost::any/*Time*/ |
| 31 | TimestampVisitor::visit (Blob &n) |
| 32 | { |
| 33 | // Buffer n.m_blob; |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 34 | if (n.m_blobSize < 2) |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 35 | throw CcnbDecodingException (); |
| 36 | |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 37 | const char *start = n.m_blob; |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 38 | |
| 39 | intmax_t seconds = 0; |
| 40 | intmax_t nanoseconds = 0; |
| 41 | |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 42 | for (uint32_t i=0; i < n.m_blobSize-2; i++) |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 43 | { |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 44 | seconds = (seconds << 8) | (uint8_t)start[i]; |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 45 | } |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 46 | uint8_t combo = start[n.m_blobSize-2]; // 4 most significant bits hold 4 least significant bits of number of seconds |
| 47 | seconds = (seconds << 4) | (combo >> 4); |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 48 | |
| 49 | nanoseconds = combo & 0x0F; /*00001111*/ // 4 least significant bits hold 4 most significant bits of number of |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 50 | nanoseconds = (nanoseconds << 8) | start[n.m_blobSize-1]; |
| 51 | nanoseconds = (intmax_t) ((nanoseconds / 4096.0/*2^12*/) * 1000000 /*up-convert useconds*/); |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 52 | |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 53 | return boost::any (Time::FromInteger (seconds, Time::S) + Time::FromInteger (nanoseconds, Time::US)); |
Alexander Afanasyev | f21c5be | 2011-08-22 00:35:54 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | boost::any |
| 57 | TimestampVisitor::visit (Udata &n) |
| 58 | { |
| 59 | // std::string n.m_udata; |
| 60 | throw CcnbDecodingException (); |
| 61 | } |
| 62 | |
| 63 | } |
| 64 | } |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 65 | } |