# pika/include/pika_server.h pink::ThreadPool* pika_thread_pool_; // line 422
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# 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 之后最后一段文字显示的是”Pika Server going to start”这段话,我认为这个 while(!exit) 是真正处理客户端请求的循环,会执行 DoTimingTask() 这个函数,这个函数也在 pika_server.cc下面
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..."; }
# 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(); }