Files
oceanbase/unittest/storage/mockcontainer/mock_ob_location_cache.h
gm 4a92b6d7df reformat source code
according to code styles, 'AccessModifierOffset' should be -2.
2021-06-17 10:40:36 +08:00

142 lines
5.1 KiB
C++

/**
* Copyright (c) 2021 OceanBase
* OceanBase CE is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* 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 PubL v2 for more details.
*/
#ifndef OCEANBASE_SHARE_MOCK_OB_LOCATION_CACHE_H_
#define OCEANBASE_SHARE_MOCK_OB_LOCATION_CACHE_H_
#include "common/ob_partition_key.h"
#include "lib/hash/ob_hashmap.h"
#include "lib/container/ob_iarray.h"
#include "lib/net/ob_addr.h"
#include "share/partition_table/ob_partition_location_cache.h"
namespace oceanbase {
using namespace common;
using namespace common::hash;
namespace share {
class MockObLocationCache : public ObIPartitionLocationCache {
public:
MockObLocationCache()
{}
virtual ~MockObLocationCache()
{}
int init();
public:
int add(const ObPartitionKey& partition, const ObAddr& leader);
int add_overwrite(const ObPartitionKey& partition, const ObAddr& leader);
public:
virtual ObIPartitionLocationCache::PartitionLocationCacheType get_type() const
{
return static_cast<ObIPartitionLocationCache::PartitionLocationCacheType>(PART_LOC_CACHE_TYPE_NORMAL);
}
virtual int get(const uint64_t table_id, const int64_t partition_id, ObPartitionLocation& location,
const int64_t expire_renew_time, bool& is_cache_hit, const bool auto_update = true);
virtual int get(const ObPartitionKey& partition, ObPartitionLocation& location, const int64_t expire_renew_time,
bool& is_cache_hit);
virtual int get(const uint64_t table_id, common::ObIArray<ObPartitionLocation>& locations,
const int64_t expire_renew_time, bool& is_cache_hit, const bool auto_update = true);
virtual int get_strong_leader(const ObPartitionKey& partition, ObAddr& leader, const bool force_renew = false);
virtual int get_leader_by_election(
const common::ObPartitionKey& partition, common::ObAddr& leader, const bool force_renew = false)
{
UNUSEDx(partition, leader, force_renew);
return OB_NOT_SUPPORTED;
}
virtual int nonblock_get(const uint64_t table_id, const int64_t partition_id, ObPartitionLocation& location,
const int64_t cluster_id = -1);
virtual int nonblock_get(
const ObPartitionKey& partition, ObPartitionLocation& location, const int64_t cluster_id = -1);
virtual int nonblock_get(
const uint64_t table_id, const int64_t partition_num, ObIArray<ObPartitionLocation>& locations);
virtual int nonblock_get_strong_leader(const ObPartitionKey& partition, ObAddr& leader);
virtual int nonblock_get_restore_leader(const common::ObPartitionKey& partition, common::ObAddr& leader)
{
UNUSED(partition);
UNUSED(leader);
return common::OB_OP_NOT_ALLOW;
}
virtual int get_standby_leader(
const common::ObPartitionKey& partition, common::ObAddr& leader, const bool force_renew = false)
{
UNUSEDx(partition, leader, force_renew);
return common::OB_OP_NOT_ALLOW;
}
virtual int nonblock_renew(const ObPartitionKey& partition, const int64_t expire_renew_time,
const int64_t specific_cluster_id = common::OB_INVALID_ID);
virtual int nonblock_renew_with_limiter(
const common::ObPartitionKey& partition, const int64_t expire_renew_time, bool& is_limited);
virtual int get_link_table_location(const uint64_t table_id, ObPartitionLocation& location)
{
UNUSED(table_id);
UNUSED(location);
return common::OB_OP_NOT_ALLOW;
}
virtual int get_across_cluster(const common::ObPartitionKey& partition, const int64_t expire_renew_time,
ObPartitionLocation& location, const int64_t cluster_id = common::OB_INVALID_ID)
{
UNUSED(partition);
UNUSED(expire_renew_time);
UNUSED(location);
UNUSED(cluster_id);
return common::OB_OP_NOT_ALLOW;
}
virtual int nonblock_get_strong_leader_without_renew(
const common::ObPartitionKey& partition, common::ObAddr& leader, const int64_t cluster_id = common::OB_INVALID_ID)
{
UNUSED(partition);
UNUSED(leader);
UNUSED(cluster_id);
return common::OB_OP_NOT_ALLOW;
}
virtual int get_leader_across_cluster(const common::ObPartitionKey& partition, common::ObAddr& leader,
const int64_t cluster_id, const bool force_renew = false)
{
UNUSED(partition);
UNUSED(leader);
UNUSED(cluster_id);
UNUSED(force_renew);
return common::OB_OP_NOT_ALLOW;
}
virtual int batch_process_tasks(const common::ObIArray<ObLocationAsyncUpdateTask>& tasks, bool& stopped)
{
UNUSEDx(tasks, stopped);
return common::OB_NOT_SUPPORTED;
}
virtual int process_barrier(const ObLocationAsyncUpdateTask& task, bool& stopped)
{
UNUSEDx(task, stopped);
return common::OB_NOT_SUPPORTED;
}
virtual int64_t get_primary_cluster_id() const
{
return common::OB_INVALID_ID;
}
private:
static const int64_t BUCKET_NUM = 137;
private:
ObHashMap<ObPartitionKey, ObAddr> partition_addr_map_;
};
} // namespace share
} // namespace oceanbase
#endif