blob: 9538a1f92a502bae1d375c029e2a27820c07cd52 [file] [log] [blame]
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2011 University of California, Los Angeles
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#ifndef _CCNB_PARSER_BLOCK_H_
#define _CCNB_PARSER_BLOCK_H_
#include "ns3/simple-ref-count.h"
#include "ns3/buffer.h"
#include "ns3/ptr.h"
// visitors
#include "../visitors/ccnb-parser-void-no-argu-visitor.h"
#include "../visitors/ccnb-parser-void-visitor.h"
#include "../visitors/ccnb-parser-no-argu-visitor.h"
#include "../visitors/ccnb-parser-visitor.h"
namespace ns3 {
namespace CcnbParser {
/**
* \ingroup ccnx-ccnb
* \brief Base class for ccnb-encoded node
*
* This class provides a static method to create a new block
* (recursively) from the stream
*
* \see http://www.ccnx.org/releases/latest/doc/technical/BinaryEncoding.html
*/
class Block : public SimpleRefCount<Block>
{
public:
// static int counter;
/**
* \brief Parsing stream (recursively) and creating a parsed BLOCK
* object
*
* \param start buffer iterator pointing to the start position for parsing
* \returns parsed ccnb-encoded block, that could contain more block inside
*/
static Ptr<Block>
ParseBlock (Buffer::Iterator &start);
virtual ~Block ();
virtual void accept( VoidNoArguVisitor &v ) = 0;
virtual void accept( VoidVisitor &v, boost::any param ) = 0;
virtual boost::any accept( NoArguVisitor &v ) = 0;
virtual boost::any accept( Visitor &v, boost::any param ) = 0;
};
// Necessary until Buffer::Iterator gets PeekU8 call
inline
uint8_t
BufferIteratorPeekU8 (Buffer::Iterator &i)
{
uint8_t ret = i.ReadU8 ();
i.Prev ();
return ret;
}
}
}
#endif // _CCNB_PARSER_BLOCK_H_