diff --git a/main.cpp b/main.cpp index f4ecab8..0937947 100644 --- a/main.cpp +++ b/main.cpp @@ -6,6 +6,8 @@ #include #include #include +#include +#include struct User { @@ -15,12 +17,16 @@ struct User { }; std::map users; -std::map has_login; // 换成 std::chrono::seconds 之类的 +std::map has_login; // 换成 std::chrono::seconds 之类的 + +// std::mutex mtx; +std::shared_mutex mtx; // 作业要求1:把这些函数变成多线程安全的 // 提示:能正确利用 shared_mutex 加分,用 lock_guard 系列加分 std::string do_register(std::string username, std::string password, std::string school, std::string phone) { User user = {password, school, phone}; + std::unique_lock grd(mtx); if (users.emplace(username, user).second) return "注册成功"; else @@ -29,9 +35,12 @@ std::string do_register(std::string username, std::string password, std::string std::string do_login(std::string username, std::string password) { // 作业要求2:把这个登录计时器改成基于 chrono 的 - long now = time(NULL); // C 语言当前时间 + std::unique_lock grd(mtx); + using namespace std::chrono; + steady_clock::time_point now = steady_clock::now(); if (has_login.find(username) != has_login.end()) { - int sec = now - has_login.at(username); // C 语言算时间差 + // int sec = now - has_login.at(username); // C 语言算时间差 + int sec = duration_cast(now - has_login.at(username)).count(); return std::to_string(sec) + "秒内登录过"; } has_login[username] = now; @@ -44,6 +53,9 @@ std::string do_login(std::string username, std::string password) { } std::string do_queryuser(std::string username) { + std::shared_lock grd(mtx); + if (users.find(username) == users.end()) + return "用户名错误"; auto &user = users.at(username); std::stringstream ss; ss << "用户名: " << username << std::endl; @@ -54,10 +66,12 @@ std::string do_queryuser(std::string username) { struct ThreadPool { + std::vector pool; void create(std::function start) { // 作业要求3:如何让这个线程保持在后台执行不要退出? // 提示:改成 async 和 future 且用法正确也可以加分 std::thread thr(start); + pool.push_back(std::move(thr)); } }; @@ -72,7 +86,7 @@ std::string phone[] = {"110", "119", "120", "12315"}; } int main() { - for (int i = 0; i < 262144; i++) { + for (int i = 0; i < 10000; i++) { tpool.create([&] { std::cout << do_register(test::username[rand() % 4], test::password[rand() % 4], test::school[rand() % 4], test::phone[rand() % 4]) << std::endl; }); @@ -85,5 +99,10 @@ int main() { } // 作业要求4:等待 tpool 中所有线程都结束后再退出 + for(auto &it: tpool.pool) + { + // std::cout << "on joining" ; + it.join(); //join在哪儿就等待在哪儿 + } return 0; }