blob: 46ae560f8f51c7ed3019e31bf274daff72c4e178 [file] [log] [blame]
/**
* Copyright 2011-2015 Quickstep Technologies LLC.
* Copyright 2015-2016 Pivotal Software, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
#include "catalog/NUMAPlacementScheme.hpp"
#include <unordered_map>
#include <utility>
#include "catalog/Catalog.pb.h"
#include "glog/logging.h"
namespace quickstep {
bool NUMAPlacementScheme::ProtoIsValid(
const serialization::NUMAPlacementScheme &proto) {
// Check that proto is fully initialized.
if (!proto.IsInitialized()) {
return false;
}
// Check if the number of numa nodes is non-zero.
if (proto.num_numa_nodes() <= 0) {
return false;
}
// Protobuf for NUMAPlacementScheme is valid.
return true;
}
serialization::NUMAPlacementScheme NUMAPlacementScheme::getProto() const {
serialization::NUMAPlacementScheme proto;
// Serialize the number of numa nodes.
proto.set_num_numa_nodes(getNumNUMANodes());
// Serialize the block to NUMA node map.
for (std::unordered_map<block_id, int>::const_iterator block_to_node_iter =
block_to_numa_node_map_.begin();
block_to_node_iter != block_to_numa_node_map_.end();
++block_to_node_iter) {
serialization::NUMAPlacementScheme_BlockToNUMANodeEntry *entry =
proto.add_block_to_numa_node_map();
entry->set_block_id(block_to_node_iter->first);
entry->set_numa_node(block_to_node_iter->second);
}
return proto;
}
NUMAPlacementScheme* NUMAPlacementScheme::ReconstructFromProto(
const serialization::NUMAPlacementScheme &proto,
const std::size_t num_partitions) {
// This call to the constructor will populate the values of partition-to-NUMA
// node map.
NUMAPlacementScheme *placement_scheme = new NUMAPlacementScheme(num_partitions);
DCHECK(ProtoIsValid(proto))
<< "Attempted to create NUMAPlacementScheme from an invalid proto description:\n"
<< proto.DebugString();
// Deserialize block to NUMA node mapping.
for (int i = 0; i < proto.block_to_numa_node_map_size(); ++i) {
placement_scheme->addBlockToNUMANodeMap(
proto.block_to_numa_node_map(i).block_id(),
proto.block_to_numa_node_map(i).numa_node());
}
return placement_scheme;
}
} // namespace quickstep