mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			128 lines
		
	
	
	
		
			3.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			128 lines
		
	
	
	
		
			3.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|     This file is part of TON Blockchain Library.
 | |
| 
 | |
|     TON Blockchain Library is free software: you can redistribute it and/or modify
 | |
|     it under the terms of the GNU Lesser General Public License as published by
 | |
|     the Free Software Foundation, either version 2 of the License, or
 | |
|     (at your option) any later version.
 | |
| 
 | |
|     TON Blockchain Library is distributed in the hope that it will be useful,
 | |
|     but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|     GNU Lesser General Public License for more details.
 | |
| 
 | |
|     You should have received a copy of the GNU Lesser General Public License
 | |
|     along with TON Blockchain Library.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
|     Copyright 2017-2020 Telegram Systems LLP
 | |
| */
 | |
| #include "td/utils/common.h"
 | |
| #include "td/utils/format.h"
 | |
| #include "td/utils/logging.h"
 | |
| #include "td/utils/MpscLinkQueue.h"
 | |
| #include "td/utils/port/thread.h"
 | |
| #include "td/utils/tests.h"
 | |
| 
 | |
| class NodeX : public td::MpscLinkQueueImpl::Node {
 | |
|  public:
 | |
|   explicit NodeX(int value) : value_(value) {
 | |
|   }
 | |
|   td::MpscLinkQueueImpl::Node *to_mpsc_link_queue_node() {
 | |
|     return static_cast<td::MpscLinkQueueImpl::Node *>(this);
 | |
|   }
 | |
|   static NodeX *from_mpsc_link_queue_node(td::MpscLinkQueueImpl::Node *node) {
 | |
|     return static_cast<NodeX *>(node);
 | |
|   }
 | |
|   int value() {
 | |
|     return value_;
 | |
|   }
 | |
| 
 | |
|  private:
 | |
|   int value_;
 | |
| };
 | |
| using QueueNode = td::MpscLinkQueueUniquePtrNode<NodeX>;
 | |
| 
 | |
| QueueNode create_node(int value) {
 | |
|   return QueueNode(td::make_unique<NodeX>(value));
 | |
| }
 | |
| 
 | |
| TEST(MpscLinkQueue, one_thread) {
 | |
|   td::MpscLinkQueue<QueueNode> queue;
 | |
| 
 | |
|   {
 | |
|     queue.push(create_node(1));
 | |
|     queue.push(create_node(2));
 | |
|     queue.push(create_node(3));
 | |
|     td::MpscLinkQueue<QueueNode>::Reader reader;
 | |
|     queue.pop_all(reader);
 | |
|     queue.push(create_node(4));
 | |
|     queue.pop_all(reader);
 | |
|     std::vector<int> v;
 | |
|     while (auto node = reader.read()) {
 | |
|       v.push_back(node.value().value());
 | |
|     }
 | |
|     LOG_CHECK((v == std::vector<int>{1, 2, 3, 4})) << td::format::as_array(v);
 | |
| 
 | |
|     v.clear();
 | |
|     queue.push(create_node(5));
 | |
|     queue.pop_all(reader);
 | |
|     while (auto node = reader.read()) {
 | |
|       v.push_back(node.value().value());
 | |
|     }
 | |
|     LOG_CHECK((v == std::vector<int>{5})) << td::format::as_array(v);
 | |
|   }
 | |
| 
 | |
|   {
 | |
|     queue.push_unsafe(create_node(3));
 | |
|     queue.push_unsafe(create_node(2));
 | |
|     queue.push_unsafe(create_node(1));
 | |
|     queue.push_unsafe(create_node(0));
 | |
|     td::MpscLinkQueue<QueueNode>::Reader reader;
 | |
|     queue.pop_all_unsafe(reader);
 | |
|     std::vector<int> v;
 | |
|     while (auto node = reader.read()) {
 | |
|       v.push_back(node.value().value());
 | |
|     }
 | |
|     LOG_CHECK((v == std::vector<int>{3, 2, 1, 0})) << td::format::as_array(v);
 | |
|   }
 | |
| }
 | |
| 
 | |
| #if !TD_THREAD_UNSUPPORTED
 | |
| TEST(MpscLinkQueue, multi_thread) {
 | |
|   td::MpscLinkQueue<QueueNode> queue;
 | |
|   int threads_n = 10;
 | |
|   int queries_n = 1000000;
 | |
|   std::vector<int> next_value(threads_n);
 | |
|   std::vector<td::thread> threads(threads_n);
 | |
|   int thread_i = 0;
 | |
|   for (auto &thread : threads) {
 | |
|     thread = td::thread([&, id = thread_i] {
 | |
|       for (int i = 0; i < queries_n; i++) {
 | |
|         queue.push(create_node(i * threads_n + id));
 | |
|       }
 | |
|     });
 | |
|     thread_i++;
 | |
|   }
 | |
| 
 | |
|   int active_threads = threads_n;
 | |
| 
 | |
|   td::MpscLinkQueue<QueueNode>::Reader reader;
 | |
|   while (active_threads) {
 | |
|     queue.pop_all(reader);
 | |
|     while (auto value = reader.read()) {
 | |
|       auto x = value.value().value();
 | |
|       auto thread_id = x % threads_n;
 | |
|       x /= threads_n;
 | |
|       CHECK(next_value[thread_id] == x);
 | |
|       next_value[thread_id]++;
 | |
|       if (x + 1 == queries_n) {
 | |
|         active_threads--;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   for (auto &thread : threads) {
 | |
|     thread.join();
 | |
|   }
 | |
| }
 | |
| #endif  //!TD_THREAD_UNSUPPORTED
 |