2017-08-23 23:53:20 +00:00
|
|
|
#include <iostream>
|
2017-09-28 14:55:17 +00:00
|
|
|
#include <sstream>
|
2017-08-23 23:53:20 +00:00
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
2017-09-28 18:18:29 +00:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
2017-08-23 23:53:20 +00:00
|
|
|
#include "unity.h"
|
|
|
|
|
2017-08-31 23:18:14 +00:00
|
|
|
#if __GTHREADS && __GTHREADS_CXX0X
|
|
|
|
|
2017-09-28 14:55:17 +00:00
|
|
|
#define LOG_LOCAL_LEVEL CONFIG_LOG_DEFAULT_LEVEL
|
|
|
|
#include "esp_log.h"
|
|
|
|
const static char *TAG = "pthread_test";
|
|
|
|
|
2017-08-31 23:18:14 +00:00
|
|
|
static std::shared_ptr<int> global_sp;
|
|
|
|
static std::mutex mtx;
|
|
|
|
static std::recursive_mutex recur_mtx;
|
2017-08-23 23:53:20 +00:00
|
|
|
|
2017-08-25 18:24:17 +00:00
|
|
|
static void thread_do_nothing() {}
|
|
|
|
|
|
|
|
static void thread_main()
|
|
|
|
{
|
2017-08-23 23:53:20 +00:00
|
|
|
int i = 0;
|
2017-08-24 19:52:49 +00:00
|
|
|
std::cout << "thread_main CXX " << std::hex << std::this_thread::get_id() << std::endl;
|
2017-11-14 08:43:32 +00:00
|
|
|
std::chrono::milliseconds dur = std::chrono::milliseconds(300);
|
2017-08-24 19:52:49 +00:00
|
|
|
|
2017-08-25 18:24:17 +00:00
|
|
|
while (i < 3) {
|
|
|
|
int old_val, new_val;
|
|
|
|
|
2017-08-31 23:18:14 +00:00
|
|
|
// mux test
|
|
|
|
mtx.lock();
|
2017-08-25 18:24:17 +00:00
|
|
|
old_val = *global_sp;
|
2017-08-31 23:18:14 +00:00
|
|
|
std::this_thread::yield();
|
|
|
|
(*global_sp)++;
|
2017-08-25 18:24:17 +00:00
|
|
|
std::this_thread::yield();
|
|
|
|
new_val = *global_sp;
|
2017-08-31 23:18:14 +00:00
|
|
|
mtx.unlock();
|
2017-08-24 19:52:49 +00:00
|
|
|
std::cout << "thread " << std::hex << std::this_thread::get_id() << ": " << i++ << " val= " << *global_sp << std::endl;
|
2017-08-25 18:24:17 +00:00
|
|
|
TEST_ASSERT_TRUE(new_val == old_val + 1);
|
|
|
|
|
|
|
|
// sleep_for test
|
2017-08-31 23:18:14 +00:00
|
|
|
std::this_thread::sleep_for(dur);
|
2017-08-25 18:24:17 +00:00
|
|
|
|
|
|
|
// recursive mux test
|
|
|
|
recur_mtx.lock();
|
|
|
|
recur_mtx.lock();
|
|
|
|
old_val = *global_sp;
|
|
|
|
std::this_thread::yield();
|
|
|
|
(*global_sp)++;
|
|
|
|
std::this_thread::yield();
|
|
|
|
new_val = *global_sp;
|
|
|
|
recur_mtx.unlock();
|
|
|
|
recur_mtx.unlock();
|
|
|
|
std::cout << "thread " << std::hex << std::this_thread::get_id() << ": " << i++ << " val= " << *global_sp << std::endl;
|
|
|
|
TEST_ASSERT_TRUE(new_val == old_val + 1);
|
|
|
|
|
|
|
|
// sleep_until test
|
2017-08-31 23:18:14 +00:00
|
|
|
using std::chrono::system_clock;
|
|
|
|
std::time_t tt = system_clock::to_time_t(system_clock::now());
|
|
|
|
struct std::tm *ptm = std::localtime(&tt);
|
|
|
|
ptm->tm_sec++;
|
2017-11-14 08:43:32 +00:00
|
|
|
std::this_thread::sleep_until(system_clock::from_time_t(mktime(ptm)));
|
2017-08-23 23:53:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-28 18:18:29 +00:00
|
|
|
TEST_CASE("pthread C++", "[pthread]")
|
2017-08-23 23:53:20 +00:00
|
|
|
{
|
|
|
|
global_sp.reset(new int(1));
|
2017-08-25 18:24:17 +00:00
|
|
|
|
|
|
|
std::thread t1(thread_do_nothing);
|
|
|
|
t1.join();
|
|
|
|
|
2017-08-24 19:52:49 +00:00
|
|
|
std::thread t2(thread_main);
|
2017-08-25 18:24:17 +00:00
|
|
|
std::cout << "Detach thread " << std::hex << t2.get_id() << std::endl;
|
|
|
|
t2.detach();
|
|
|
|
TEST_ASSERT_FALSE(t2.joinable());
|
|
|
|
|
|
|
|
std::thread t3(thread_main);
|
|
|
|
std::thread t4(thread_main);
|
|
|
|
if (t3.joinable()) {
|
2017-08-31 23:18:14 +00:00
|
|
|
std::cout << "Join thread " << std::hex << t3.get_id() << std::endl;
|
|
|
|
t3.join();
|
2017-08-24 19:52:49 +00:00
|
|
|
}
|
2017-08-25 18:24:17 +00:00
|
|
|
if (t4.joinable()) {
|
2017-08-31 23:18:14 +00:00
|
|
|
std::cout << "Join thread " << std::hex << t4.get_id() << std::endl;
|
|
|
|
t4.join();
|
2017-08-24 19:52:49 +00:00
|
|
|
}
|
2017-10-04 06:30:10 +00:00
|
|
|
|
|
|
|
global_sp.reset(); // avoid reported leak
|
2017-08-23 23:53:20 +00:00
|
|
|
}
|
2017-08-31 23:18:14 +00:00
|
|
|
|
2017-11-14 08:43:32 +00:00
|
|
|
static void task_test_sandbox()
|
2017-09-28 18:18:29 +00:00
|
|
|
{
|
2017-11-14 08:43:32 +00:00
|
|
|
std::stringstream ss;
|
2017-09-28 18:18:29 +00:00
|
|
|
|
2017-09-28 14:55:17 +00:00
|
|
|
ESP_LOGI(TAG, "About to create a string stream");
|
|
|
|
ESP_LOGI(TAG, "About to write to string stream");
|
|
|
|
ss << "Hello World!";
|
2017-09-28 18:18:29 +00:00
|
|
|
ESP_LOGI(TAG, "About to extract from stringstream");
|
|
|
|
ESP_LOGI(TAG, "Text: %s", ss.str().c_str());
|
2017-11-14 08:43:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void task_test_sandbox_c(void *arg)
|
|
|
|
{
|
|
|
|
bool *running = (bool *)arg;
|
|
|
|
|
|
|
|
// wrap thread func to ensure that all C++ stack objects are cleaned up by their destructors
|
|
|
|
task_test_sandbox();
|
2017-09-28 18:18:29 +00:00
|
|
|
|
2017-11-14 08:43:32 +00:00
|
|
|
ESP_LOGI(TAG, "Task stk_wm = %d", uxTaskGetStackHighWaterMark(NULL));
|
2017-09-28 18:18:29 +00:00
|
|
|
if (running) {
|
|
|
|
*running = false;
|
|
|
|
vTaskDelete(NULL);
|
|
|
|
}
|
2017-09-28 14:55:17 +00:00
|
|
|
}
|
|
|
|
|
2017-09-28 18:18:29 +00:00
|
|
|
TEST_CASE("pthread mix C/C++", "[pthread]")
|
2017-09-28 14:55:17 +00:00
|
|
|
{
|
2017-11-14 08:43:32 +00:00
|
|
|
bool c_running = true;
|
2017-09-28 18:18:29 +00:00
|
|
|
|
2017-11-14 08:43:32 +00:00
|
|
|
std::thread t1(task_test_sandbox);
|
|
|
|
xTaskCreatePinnedToCore((TaskFunction_t)&task_test_sandbox_c, "task_test_sandbox", 3072, &c_running, 5, NULL, 0);
|
|
|
|
while (c_running) {
|
2017-09-28 18:18:29 +00:00
|
|
|
vTaskDelay(1);
|
|
|
|
}
|
2017-09-28 14:55:17 +00:00
|
|
|
if (t1.joinable()) {
|
|
|
|
std::cout << "Join thread " << std::hex << t1.get_id() << std::endl;
|
|
|
|
t1.join();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-31 23:18:14 +00:00
|
|
|
#endif
|