blob: 09b52d73101b8bc9e0c7c5238ee7139a2006ac6d [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#ifndef SRC_CPP_SVCS_STMGR_SRC_UTIL_NEIGHBOUR_CALCULATOR_H_
#define SRC_CPP_SVCS_STMGR_SRC_UTIL_NEIGHBOUR_CALCULATOR_H_
#include <ostream>
#include <map>
#include <unordered_set>
#include "proto/messages.h"
#include "network/network.h"
#include "basics/basics.h"
namespace heron {
namespace stmgr {
// A util class to calculate which tasks are upstream/downstream
// for every task. For stateful processing, this is used in two
// places:- a) when sending markers to downstream tasks and
// b) when waiting for all upstream markers before sending
// ckpt message to a particular task
class NeighbourCalculator {
public:
NeighbourCalculator();
virtual ~NeighbourCalculator();
// The main interface to reconsruct upstream/downstream maps
void Reconstruct(const proto::system::PhysicalPlan& _pplan);
// Get the downstream tasks for _task_id
std::unordered_set<sp_int32> get_downstreamers(sp_int32 _task_id);
// Get the upstream tasks for _task_id
std::unordered_set<sp_int32> get_upstreamers(sp_int32 _task_id);
private:
void add(std::map<sp_int32, std::unordered_set<sp_int32>>& _set,
sp_int32 _key, std::unordered_set<sp_int32>& _values);
// This is a map from task_id to all the task_ids
// to which this task should send the checkpoint marker message
std::map<sp_int32, std::unordered_set<sp_int32>> to_send_list_;
// This is a map from task_id to all the task_ids
// from which this task should get the checkpoint marker message
// before it can save its state
std::map<sp_int32, std::unordered_set<sp_int32>> from_recv_list_;
friend std::ostream& operator<<(std::ostream& os, const NeighbourCalculator& obj);
};
std::ostream& operator<<(std::ostream& os, const NeighbourCalculator& obj);
} // namespace stmgr
} // namespace heron
#endif // SRC_CPP_SVCS_STMGR_SRC_UTIL_NEIGHBOUR_CALCULATOR_H_