blob: dc5be56ac68692cbce5e66e64e6e13676721bcd0 [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.
*/
////////////////////////////////////////////////////////////////////////////////
//
// Public basics module include file for use in other modules
//
///////////////////////////////////////////////////////////////////////////////
#if !defined(HERON_BASICS_H_)
#define HERON_BASICS_H_
#include "glog/logging.h"
#include "basics/sptypes.h"
#include "basics/sprcodes.h"
#include "basics/callback.h"
#include "basics/classcallback.h"
#include "basics/callback1.h"
#include "basics/classcallback1.h"
#include "basics/fileutils.h"
#include "basics/processutils.h"
#include "basics/iputils.h"
#include "basics/strutils.h"
#include "basics/randutils.h"
#include "basics/sockutils.h"
#include "basics/spconsts.h"
#include "basics/ridgen.h"
#include "basics/sphash.h"
#include "basics/spfuncs.h"
#include "basics/sptest.h"
#include "basics/mempool.h"
template <typename T>
using pool_unique_ptr = std::unique_ptr<T, std::function<void(google::protobuf::Message*)>>;
// The standard std::make_unique(...) was introduced starting from C++ 14. Heron uses C++ 11.
// Unfortunatelly we can not bump a compiler version used in Heron since we are tight coupled with
// CentOS 7 whih comes with very old version of GCC (4.8.5). That's why we introduced
// make_unique(...) manually here.
template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args) {
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
// This is a special version to get unique pointer to protobuf message.
// It doesn't allocate anythong on heap. Instead it just acquires the existing (preallocated)
// event from the memory pool. Resulted unique pointer also has a deleter callback which
// returns the event back to the memory pool when that unique pointer destructed.
template<typename T>
pool_unique_ptr<T> make_unique_from_protobuf_pool() {
T* event = nullptr;
event = __global_protobuf_pool_acquire__(event);
return pool_unique_ptr<T>(event, [](google::protobuf::Message* ptr) {
T* event_to_dispose = static_cast<T*>(ptr);
__global_protobuf_pool_release__(event_to_dispose);
});
}
#endif // HERON_BASICS_H_