You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.1 KiB

/*
* Copyright (C) 2020 The Android Open Source Project
*
* 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.
*/
#pragma once
#include <condition_variable>
#include <memory>
#include <vector>
#include "common/libs/concurrency/semaphore.h"
#include "common/libs/concurrency/thread_safe_queue.h"
namespace cuttlefish {
namespace confui {
template <typename T>
class Multiplexer {
public:
Multiplexer(int n_qs, int max_elements) : sem_items_{0}, next_{0} {
auto drop_new = [](typename ThreadSafeQueue<T>::QueueImpl* internal_q) {
internal_q->pop_front();
};
for (int i = 0; i < n_qs; i++) {
auto queue = std::make_unique<ThreadSafeQueue<T>>(max_elements, drop_new);
queues_.push_back(std::move(queue));
}
}
int GetNewQueueId() {
CHECK(next_ < queues_.size())
<< "can't get more queues than " << queues_.size();
return next_++;
}
void Push(const int idx, T&& t) {
CheckIdx(idx);
queues_[idx]->Push(t);
sem_items_.SemPost();
}
T Pop() {
// the idx must have an item!
// no waiting in fn()!
sem_items_.SemWait();
for (auto& q : queues_) {
if (q->IsEmpty()) {
continue;
}
return q->Pop();
}
CHECK(false) << "Multiplexer.Pop() should be able to return an item";
// must not reach here
return T{};
}
private:
void CheckIdx(const int idx) {
CHECK(idx >= 0 && idx < queues_.size()) << "queues_ array out of bound";
}
// total items across the queues
Semaphore sem_items_;
std::vector<std::unique_ptr<ThreadSafeQueue<T>>> queues_;
int next_;
};
} // end of namespace confui
} // end of namespace cuttlefish