check_nodestore.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. #include "ua_types.h"
  5. #include "server/ua_nodestore.h"
  6. #include "ua_util.h"
  7. #include "check.h"
  8. #ifdef UA_ENABLE_MULTITHREADING
  9. #include <pthread.h>
  10. #include <urcu.h>
  11. #endif
  12. int zeroCnt = 0;
  13. int visitCnt = 0;
  14. static void checkZeroVisitor(const UA_Node* node) {
  15. visitCnt++;
  16. if (node == NULL) zeroCnt++;
  17. }
  18. static void printVisitor(const UA_Node* node) {
  19. printf("%d\n", node->nodeId.identifier.numeric);
  20. }
  21. static UA_Node* createNode(UA_Int16 nsid, UA_Int32 id) {
  22. UA_Node *p = (UA_Node *)UA_NodeStore_newVariableNode();
  23. p->nodeId.identifierType = UA_NODEIDTYPE_NUMERIC;
  24. p->nodeId.namespaceIndex = nsid;
  25. p->nodeId.identifier.numeric = id;
  26. p->nodeClass = UA_NODECLASS_VARIABLE;
  27. return p;
  28. }
  29. START_TEST(replaceExistingNode) {
  30. UA_NodeStore *ns = UA_NodeStore_new();
  31. UA_Node* n1 = createNode(0,2253);
  32. UA_NodeStore_insert(ns, n1);
  33. UA_NodeId in1 = UA_NODEID_NUMERIC(0, 2253);
  34. UA_Node* n2 = UA_NodeStore_getCopy(ns, &in1);
  35. UA_StatusCode retval = UA_NodeStore_replace(ns, n2);
  36. ck_assert_int_eq(retval, UA_STATUSCODE_GOOD);
  37. UA_NodeStore_delete(ns);
  38. }
  39. END_TEST
  40. START_TEST(replaceOldNode) {
  41. UA_NodeStore *ns = UA_NodeStore_new();
  42. UA_Node* n1 = createNode(0,2253);
  43. UA_NodeStore_insert(ns, n1);
  44. UA_NodeId in1 = UA_NODEID_NUMERIC(0,2253);
  45. UA_Node* n2 = UA_NodeStore_getCopy(ns, &in1);
  46. UA_Node* n3 = UA_NodeStore_getCopy(ns, &in1);
  47. /* shall succeed */
  48. UA_StatusCode retval = UA_NodeStore_replace(ns, n2);
  49. ck_assert_int_eq(retval, UA_STATUSCODE_GOOD);
  50. /* shall fail */
  51. retval = UA_NodeStore_replace(ns, n3);
  52. ck_assert_int_ne(retval, UA_STATUSCODE_GOOD);
  53. UA_NodeStore_delete(ns);
  54. }
  55. END_TEST
  56. START_TEST(findNodeInUA_NodeStoreWithSingleEntry) {
  57. #ifdef UA_ENABLE_MULTITHREADING
  58. rcu_register_thread();
  59. #endif
  60. // given
  61. UA_NodeStore *ns = UA_NodeStore_new();
  62. UA_Node* n1 = createNode(0,2253);
  63. UA_NodeStore_insert(ns, n1);
  64. UA_NodeId in1 = UA_NODEID_NUMERIC(0,2253);
  65. const UA_Node* nr = UA_NodeStore_get(ns, &in1);
  66. // then
  67. ck_assert_int_eq((uintptr_t)n1, (uintptr_t)nr);
  68. // finally
  69. UA_NodeStore_delete(ns);
  70. #ifdef UA_ENABLE_MULTITHREADING
  71. rcu_unregister_thread();
  72. #endif
  73. }
  74. END_TEST
  75. START_TEST(failToFindNodeInOtherUA_NodeStore) {
  76. #ifdef UA_ENABLE_MULTITHREADING
  77. rcu_register_thread();
  78. #endif
  79. // given
  80. UA_NodeStore *ns = UA_NodeStore_new();
  81. UA_Node* n1 = createNode(0,2255);
  82. UA_NodeStore_insert(ns, n1);
  83. // when
  84. UA_NodeId in1 = UA_NODEID_NUMERIC(1, 2255);
  85. const UA_Node* nr = UA_NodeStore_get(ns, &in1);
  86. // then
  87. ck_assert_int_eq((uintptr_t)nr, 0);
  88. // finally
  89. UA_NodeStore_delete(ns);
  90. #ifdef UA_ENABLE_MULTITHREADING
  91. rcu_unregister_thread();
  92. #endif
  93. }
  94. END_TEST
  95. START_TEST(findNodeInUA_NodeStoreWithSeveralEntries) {
  96. #ifdef UA_ENABLE_MULTITHREADING
  97. rcu_register_thread();
  98. #endif
  99. // given
  100. UA_NodeStore *ns = UA_NodeStore_new();
  101. UA_Node* n1 = createNode(0,2253);
  102. UA_NodeStore_insert(ns, n1);
  103. UA_Node* n2 = createNode(0,2255);
  104. UA_NodeStore_insert(ns, n2);
  105. UA_Node* n3 = createNode(0,2257);
  106. UA_NodeStore_insert(ns, n3);
  107. UA_Node* n4 = createNode(0,2200);
  108. UA_NodeStore_insert(ns, n4);
  109. UA_Node* n5 = createNode(0,1);
  110. UA_NodeStore_insert(ns, n5);
  111. UA_Node* n6 = createNode(0,12);
  112. UA_NodeStore_insert(ns, n6);
  113. // when
  114. UA_NodeId in3 = UA_NODEID_NUMERIC(0, 2257);
  115. const UA_Node* nr = UA_NodeStore_get(ns, &in3);
  116. // then
  117. ck_assert_int_eq((uintptr_t)nr, (uintptr_t)n3);
  118. // finally
  119. UA_NodeStore_delete(ns);
  120. #ifdef UA_ENABLE_MULTITHREADING
  121. rcu_unregister_thread();
  122. #endif
  123. }
  124. END_TEST
  125. START_TEST(iterateOverUA_NodeStoreShallNotVisitEmptyNodes) {
  126. #ifdef UA_ENABLE_MULTITHREADING
  127. rcu_register_thread();
  128. #endif
  129. // given
  130. UA_NodeStore *ns = UA_NodeStore_new();
  131. UA_Node* n1 = createNode(0,2253);
  132. UA_NodeStore_insert(ns, n1);
  133. UA_Node* n2 = createNode(0,2255);
  134. UA_NodeStore_insert(ns, n2);
  135. UA_Node* n3 = createNode(0,2257);
  136. UA_NodeStore_insert(ns, n3);
  137. UA_Node* n4 = createNode(0,2200);
  138. UA_NodeStore_insert(ns, n4);
  139. UA_Node* n5 = createNode(0,1);
  140. UA_NodeStore_insert(ns, n5);
  141. UA_Node* n6 = createNode(0,12);
  142. UA_NodeStore_insert(ns, n6);
  143. // when
  144. zeroCnt = 0;
  145. visitCnt = 0;
  146. UA_NodeStore_iterate(ns,checkZeroVisitor);
  147. // then
  148. ck_assert_int_eq(zeroCnt, 0);
  149. ck_assert_int_eq(visitCnt, 6);
  150. // finally
  151. UA_NodeStore_delete(ns);
  152. #ifdef UA_ENABLE_MULTITHREADING
  153. rcu_unregister_thread();
  154. #endif
  155. }
  156. END_TEST
  157. START_TEST(findNodeInExpandedNamespace) {
  158. #ifdef UA_ENABLE_MULTITHREADING
  159. rcu_register_thread();
  160. #endif
  161. // given
  162. UA_NodeStore *ns = UA_NodeStore_new();
  163. UA_Node* n;
  164. UA_Int32 i=0;
  165. for (; i<200; i++) {
  166. n = createNode(0,i);
  167. UA_NodeStore_insert(ns, n);
  168. }
  169. // when
  170. UA_Node *n2 = createNode(0,25);
  171. const UA_Node* nr = UA_NodeStore_get(ns,&n2->nodeId);
  172. // then
  173. ck_assert_int_eq(nr->nodeId.identifier.numeric,n2->nodeId.identifier.numeric);
  174. // finally
  175. UA_NodeStore_deleteNode(n2);
  176. UA_NodeStore_delete(ns);
  177. #ifdef UA_ENABLE_MULTITHREADING
  178. rcu_unregister_thread();
  179. #endif
  180. }
  181. END_TEST
  182. START_TEST(iterateOverExpandedNamespaceShallNotVisitEmptyNodes) {
  183. #ifdef UA_ENABLE_MULTITHREADING
  184. rcu_register_thread();
  185. #endif
  186. // given
  187. UA_NodeStore *ns = UA_NodeStore_new();
  188. UA_Node* n;
  189. UA_Int32 i=0;
  190. for (; i<200; i++) {
  191. n = createNode(0,i);
  192. UA_NodeStore_insert(ns, n);
  193. }
  194. // when
  195. zeroCnt = 0;
  196. visitCnt = 0;
  197. UA_NodeStore_iterate(ns,checkZeroVisitor);
  198. // then
  199. ck_assert_int_eq(zeroCnt, 0);
  200. ck_assert_int_eq(visitCnt, 200);
  201. // finally
  202. UA_NodeStore_delete(ns);
  203. #ifdef UA_ENABLE_MULTITHREADING
  204. rcu_unregister_thread();
  205. #endif
  206. }
  207. END_TEST
  208. START_TEST(failToFindNonExistantNodeInUA_NodeStoreWithSeveralEntries) {
  209. #ifdef UA_ENABLE_MULTITHREADING
  210. rcu_register_thread();
  211. #endif
  212. // given
  213. UA_NodeStore *ns = UA_NodeStore_new();
  214. UA_Node* n1 = createNode(0,2253);
  215. UA_NodeStore_insert(ns, n1);
  216. UA_Node* n2 = createNode(0,2255);
  217. UA_NodeStore_insert(ns, n2);
  218. UA_Node* n3 = createNode(0,2257);
  219. UA_NodeStore_insert(ns, n3);
  220. UA_Node* n4 = createNode(0,2200);
  221. UA_NodeStore_insert(ns, n4);
  222. UA_Node* n5 = createNode(0,1);
  223. UA_NodeStore_insert(ns, n5);
  224. UA_NodeId id = UA_NODEID_NUMERIC(0, 12);
  225. // when
  226. const UA_Node* nr = UA_NodeStore_get(ns, &id);
  227. // then
  228. ck_assert_int_eq((uintptr_t)nr, 0);
  229. // finally
  230. UA_NodeStore_delete(ns);
  231. #ifdef UA_ENABLE_MULTITHREADING
  232. rcu_unregister_thread();
  233. #endif
  234. }
  235. END_TEST
  236. /************************************/
  237. /* Performance Profiling Test Cases */
  238. /************************************/
  239. #ifdef UA_ENABLE_MULTITHREADING
  240. struct UA_NodeStoreProfileTest {
  241. UA_NodeStore *ns;
  242. UA_Int32 min_val;
  243. UA_Int32 max_val;
  244. UA_Int32 rounds;
  245. };
  246. static void *profileGetThread(void *arg) {
  247. rcu_register_thread();
  248. struct UA_NodeStoreProfileTest *test = (struct UA_NodeStoreProfileTest*) arg;
  249. UA_NodeId id;
  250. UA_NodeId_init(&id);
  251. UA_Int32 max_val = test->max_val;
  252. UA_NodeStore *ns = test->ns;
  253. for(UA_Int32 x = 0; x<test->rounds; x++) {
  254. for(UA_Int32 i=test->min_val; i<max_val; i++) {
  255. id.identifier.numeric = i;
  256. UA_NodeStore_get(ns,&id);
  257. }
  258. }
  259. rcu_unregister_thread();
  260. return NULL;
  261. }
  262. #endif
  263. START_TEST(profileGetDelete) {
  264. #ifdef UA_ENABLE_MULTITHREADING
  265. rcu_register_thread();
  266. #endif
  267. #define N 1000000
  268. UA_NodeStore *ns = UA_NodeStore_new();
  269. UA_Node *n;
  270. for (int i=0; i<N; i++) {
  271. n = createNode(0,i);
  272. UA_NodeStore_insert(ns, n);
  273. }
  274. clock_t begin, end;
  275. begin = clock();
  276. #ifdef UA_ENABLE_MULTITHREADING
  277. #define THREADS 4
  278. pthread_t t[THREADS];
  279. struct UA_NodeStoreProfileTest p[THREADS];
  280. for (int i = 0; i < THREADS; i++) {
  281. p[i] = (struct UA_NodeStoreProfileTest){ns, i*(N/THREADS), (i+1)*(N/THREADS), 50};
  282. pthread_create(&t[i], NULL, profileGetThread, &p[i]);
  283. }
  284. for (int i = 0; i < THREADS; i++)
  285. pthread_join(t[i], NULL);
  286. end = clock();
  287. printf("Time for %d create/get/delete on %d threads in a namespace: %fs.\n", N, THREADS, (double)(end - begin) / CLOCKS_PER_SEC);
  288. #else
  289. UA_NodeId id;
  290. UA_NodeId_init(&id);
  291. for(UA_Int32 x = 0; x<50; x++) {
  292. for(int i=0; i<N; i++) {
  293. id.identifier.numeric = i;
  294. UA_NodeStore_get(ns,&id);
  295. }
  296. }
  297. end = clock();
  298. printf("Time for single-threaded %d create/get/delete in a namespace: %fs.\n", N, (double)(end - begin) / CLOCKS_PER_SEC);
  299. #endif
  300. UA_NodeStore_delete(ns);
  301. #ifdef UA_ENABLE_MULTITHREADING
  302. rcu_unregister_thread();
  303. #endif
  304. }
  305. END_TEST
  306. static Suite * namespace_suite (void) {
  307. Suite *s = suite_create ("UA_NodeStore");
  308. TCase* tc_find = tcase_create ("Find");
  309. tcase_add_test (tc_find, findNodeInUA_NodeStoreWithSingleEntry);
  310. tcase_add_test (tc_find, findNodeInUA_NodeStoreWithSeveralEntries);
  311. tcase_add_test (tc_find, findNodeInExpandedNamespace);
  312. tcase_add_test (tc_find, failToFindNonExistantNodeInUA_NodeStoreWithSeveralEntries);
  313. tcase_add_test (tc_find, failToFindNodeInOtherUA_NodeStore);
  314. suite_add_tcase (s, tc_find);
  315. TCase *tc_replace = tcase_create("Replace");
  316. tcase_add_test (tc_replace, replaceExistingNode);
  317. tcase_add_test (tc_replace, replaceOldNode);
  318. suite_add_tcase (s, tc_replace);
  319. TCase* tc_iterate = tcase_create ("Iterate");
  320. tcase_add_test (tc_iterate, iterateOverUA_NodeStoreShallNotVisitEmptyNodes);
  321. tcase_add_test (tc_iterate, iterateOverExpandedNamespaceShallNotVisitEmptyNodes);
  322. suite_add_tcase (s, tc_iterate);
  323. /* TCase* tc_profile = tcase_create ("Profile"); */
  324. /* tcase_add_test (tc_profile, profileGetDelete); */
  325. /* suite_add_tcase (s, tc_profile); */
  326. return s;
  327. }
  328. int main (void) {
  329. int number_failed = 0;
  330. Suite *s = namespace_suite();
  331. SRunner *sr = srunner_create(s);
  332. srunner_set_fork_status(sr,CK_NOFORK);
  333. srunner_run_all(sr, CK_NORMAL);
  334. number_failed += srunner_ntests_failed (sr);
  335. srunner_free(sr);
  336. return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
  337. }