RetroShare/libretroshare/src/serialiser/rstlvgenericmap.h
2018-05-29 21:27:12 +02:00

92 lines
3.5 KiB
C++

/*******************************************************************************
* libretroshare/src/serialiser: rstlvgenericmap.h *
* *
* libretroshare: retroshare core library *
* *
* Copyright 2014 by Robert Fernie <retroshare@lunamutt.com> *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* *
* 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
* *
*******************************************************************************/
#ifndef RS_TLV_GENERIC_MAP_H
#define RS_TLV_GENERIC_MAP_H
#include "serialiser/rstlvitem.h"
#include "serialiser/rstlvgenericparam.h"
#if 0
#include <map>
#include <stdlib.h>
#include <stdint.h>
#endif
/*********************************** RsTlvGenericPairRef ***********************************/
template<class K, class V>
class RsTlvGenericPairRef: public RsTlvItem
{
public:
RsTlvGenericPairRef(uint16_t pair_type,
uint16_t key_type, uint16_t value_type, K &k, V &v)
:mPairType(pair_type), mKeyType(key_type),
mValueType(value_type), mKey(k), mValue(v) { return; }
virtual ~RsTlvGenericPairRef() { return; }
virtual uint32_t TlvSize() const;
virtual void TlvClear();
virtual bool SetTlv(void *data, uint32_t size, uint32_t *offset) const;
virtual bool GetTlv(void *data, uint32_t size, uint32_t *offset);
virtual std::ostream &print(std::ostream &out, uint16_t indent) const;
uint16_t mPairType;
uint16_t mKeyType;
uint16_t mValueType;
K &mKey;
V &mValue;
};
/************************************ RsTlvGenericMapRef ***********************************/
template<class K, class V>
class RsTlvGenericMapRef: public RsTlvItem
{
public:
RsTlvGenericMapRef(uint16_t map_type, uint16_t pair_type,
uint16_t key_type, uint16_t value_type, std::map<K, V> &refmap)
:mMapType(map_type), mPairType(pair_type),
mKeyType(key_type), mValueType(value_type), mRefMap(refmap) { return; }
virtual ~RsTlvGenericMapRef() { return; }
virtual uint32_t TlvSize() const;
virtual void TlvClear();
virtual bool SetTlv(void *data, uint32_t size, uint32_t *offset) const;
virtual bool GetTlv(void *data, uint32_t size, uint32_t *offset);
virtual std::ostream &print(std::ostream &out, uint16_t indent) const;
uint16_t mMapType;
uint16_t mPairType;
uint16_t mKeyType;
uint16_t mValueType;
std::map<K, V> &mRefMap;
};
#include "rstlvgenericmap.inl"
#endif