紧接着对 Pika 代码理解(一)的介绍,我在对服务器与客户端的建连这边没弄懂,之前以为建连的开启如下面这段代码,原因在于我启动 Pika 服务器时显示的最后一段话是 “Pika Server going to start”,所以根据我之前 KV 项目的理解认为下面的 while 循环便是 CS 建连的开始
1 2 3 4 5 6 7 8 9 10 11 12
# pika/src/pika_server.cc LOG(INFO) << "Pika Server going to start"; // line 352 while (!exit_) { DoTimingTask(); // wake up every 10 second int try_num = 0; while (!exit_ && try_num++ < 10) { sleep(1); } } LOG(INFO) << "Goodbye..."; }
但是当我去查询 DoTimingTask() 这个函数的时候发现这里的三个 Auto 对应的数据库的 Compact,Purge 这些操作,而且根据上文中的“wake up every 10 second”这句话我认为 CS 的建连一定不是在这里
# pink/src/thread_pool.cc intThreadPool::start_thread_pool(){ // line 56 if (!running_.load()) { should_stop_.store(false); for (size_t i = 0; i < worker_num_; ++i) { workers_.push_back(newWorker(this)); int res = workers_[i]->start(); if (res != 0) { return kCreateThreadError; } } running_.store(true); } return kSuccess; }
# pika/src/pika_server.cc voidPikaServer::Start(){ // line 281 int ret = 0; ret = pika_thread_pool_->start_thread_pool(); if (ret != pink::kSuccess) { delete logger_; db_.reset(); LOG(FATAL) << "Start ThreadPool Error: " << ret << (ret == pink::kCreateThreadError ? ": create thread error " : ": other error"); } ret = pika_dispatch_thread_->StartThread(); if (ret != pink::kSuccess) { delete logger_; db_.reset(); LOG(FATAL) << "Start Dispatch Error: " << ret << (ret == pink::kBindError ? ": bind port " + std::to_string(port_) + " conflict" : ": other error") << ", Listen on this port to handle the connected redis client"; }
我重点看了 CreateWorkerSpecificData 这个函数的实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# pink/src/dispatch_thread.cc intDispatchThread::StartThread(){ // line 65 for (int i = 0; i < work_num_; i++) { int ret = handle_->CreateWorkerSpecificData( &(worker_thread_[i]->private_data_)); if (ret != 0) { return ret; }
ret = worker_thread_[i]->StartThread(); if (ret != 0) { return ret; } if (!thread_name().empty()) { worker_thread_[i]->set_thread_name("WorkerThread"); } } return ServerThread::StartThread(); }
这个函数实现如下,感觉也没有写什么东西….
1 2 3 4 5
# pink/src/server_thread.cc virtualintCreateWorkerSpecificData(void** data)constoverride{ // line 46 UNUSED(data); return0; }