mysqld是MySQL伺服器端主進程,可以說mysqld是MySQL的真正核心,一切工作都是圍繞著mysqld進程進行的。所以要解剖mysql這個龐然大物,mysqld的程式碼是最好的突破口。
一切都是從熟悉的main()函數開始的,其實是從mysqld_main()函數開始的。這些程式碼都在mysqld.cc。 mysqld_main()隨後呼叫了win_main)()。 win_main()函數主要是做了一些初始化的工作。
初始化工作完成之後,MySQL已經準備好接受連線了。然後我們的主角Handle_connections_methods()函數登場了。這個函數的主要工作是新建3個子進程,他們分別接受TCP/IP、命名管道以及共享記憶體這三種方式的連接。一般情況下客戶都是用TCP/IP(socket)來連接MySQL伺服器的,這是最有彈性的通訊方式。但是在嵌入式軟體的應用環境中,需要採用後兩種通訊方式。
簡化後的handle_connections_methods()函數:
static void handle_connections_methods() { mysql_mutex_lock(&LOCK_thread_count); mysql_cond_init(key_COND_handler_count, &COND_handler_count, NULL); handler_count=0; handler_count++; mysql_thread_create(key_thread_handle_con_namedpipes, &hThread, &connection_attrib, handle_connections_namedpipes, 0)); handler_count++; mysql_thread_create(key_thread_handle_con_sockets, &hThread, &connection_attrib, handle_connections_sockets_thread, 0)); handler_count++; mysql_thread_create(key_thread_handle_con_sharedmem, &hThread, &connection_attrib, handle_connections_shared_memory, 0)) while (handler_count > 0) mysql_cond_wait(&COND_handler_count, &LOCK_thread_count); mysql_mutex_unlock(&LOCK_thread_count); }
void create_thread_to_handle_connection(THD *thd) { if (cached_thread_count > wake_thread) { mysql_cond_signal(&COND_thread_cache); } else { mysql_thread_create(key_thread_one_connection, &thd->real_id, &connection_attrib, handle_one_connection, (void*) thd))); } }
handle_one_connection() mysql_thread_create() handle_one_connection() do_handle_one_connection() init_new_connection_thread() init_new_connection_handler_thread() do_command() dispatch_command() mysql_parse() mysql_execuate_command()
#