* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
#ifndef FLINK_TNEL_STATEMAP_H
#define FLINK_TNEL_STATEMAP_H
#include <stdint.h>
#include <cstdint>
#include "../StateTransformationFunction.h"
#include "runtime/state/internal/InternalKvState.h"
#ifdef EMH_SIZE_TYPE_16BIT
typedef uint16_t size_type;
#elif EMH_SIZE_TYPE_64BIT
typedef uint64_t size_type;
#else
typedef uint32_t size_type;
#endif
template<typename K, typename N, typename S>
class StateMap {
public:
inline bool empty() { return size() == 0; };
virtual inline size_type size() const = 0;
virtual S get(const K &key, const N &nameSpace) = 0;
virtual S get(const K &key, const N &nameSpace) const = 0;
virtual inline bool containsKey(const K& key, const N& nmspace) const = 0;
virtual void put(const K &key, const N &nameSpace, const S &state) = 0;
virtual void put(K&& key, N&& nmspace, S&& state) = 0;
virtual S putAndGetOld(const K &key, const N &nameSpace, const S &state) = 0;
virtual void remove(const K &key, const N &nameSpace) = 0;
virtual S removeAndGetOld(const K &key, const N &nameSpace) = 0;
virtual typename InternalKvState<K, N, S>::StateIncrementalVisitor* getStateIncrementalVisitor(int recommendedMaxNumberOfReturnedRecords) = 0;
virtual ~StateMap() = default;
};
#endif