/* Copyright 2016 The TensorFlow Authors. All Rights Reserved. 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. ==============================================================================*/ #ifndef TENSORFLOW_CORE_LIB_GTL_PRIORITY_QUEUE_UTIL_H_ #define TENSORFLOW_CORE_LIB_GTL_PRIORITY_QUEUE_UTIL_H_ #include #include #include namespace tensorflow { namespace gtl { // Removes the top element from a std::priority_queue and returns it. // Supports movable types. template T ConsumeTop(std::priority_queue* q) { // std::priority_queue is required to implement pop() as if it // called: // std::pop_heap() // c.pop_back() // unfortunately, it does not provide access to the removed element. // If the element is move only (such as a unique_ptr), there is no way to // reclaim it in the standard API. std::priority_queue does, however, expose // the underlying container as a protected member, so we use that access // to extract the desired element between those two calls. using Q = std::priority_queue; struct Expose : Q { using Q::c; using Q::comp; }; auto& c = q->*&Expose::c; auto& comp = q->*&Expose::comp; std::pop_heap(c.begin(), c.end(), comp); auto r = std::move(c.back()); c.pop_back(); return r; } } // namespace gtl } // namespace tensorflow #endif // TENSORFLOW_CORE_LIB_GTL_PRIORITY_QUEUE_UTIL_H_