check_nodestore.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <time.h>
  7. #include "ua_types.h"
  8. #include "server/ua_nodestore.h"
  9. #include "server/ua_server_internal.h"
  10. #include "ua_util.h"
  11. #include "check.h"
  12. #ifdef UA_ENABLE_MULTITHREADING
  13. #include <pthread.h>
  14. #include <urcu.h>
  15. #endif
  16. UA_NodeStore *ns;
  17. static void setup(void) {
  18. ns = UA_NodeStore_new();
  19. UA_RCU_LOCK();
  20. }
  21. static void teardown(void) {
  22. UA_NodeStore_delete(ns);
  23. UA_RCU_UNLOCK();
  24. }
  25. int zeroCnt = 0;
  26. int visitCnt = 0;
  27. static void checkZeroVisitor(const UA_Node* node) {
  28. visitCnt++;
  29. if (node == NULL) zeroCnt++;
  30. }
  31. static UA_Node* createNode(UA_Int16 nsid, UA_Int32 id) {
  32. UA_Node *p = (UA_Node *)UA_NodeStore_newVariableNode();
  33. p->nodeId.identifierType = UA_NODEIDTYPE_NUMERIC;
  34. p->nodeId.namespaceIndex = nsid;
  35. p->nodeId.identifier.numeric = id;
  36. p->nodeClass = UA_NODECLASS_VARIABLE;
  37. return p;
  38. }
  39. START_TEST(replaceExistingNode) {
  40. UA_Node* n1 = createNode(0,2253);
  41. UA_NodeStore_insert(ns, n1);
  42. UA_NodeId in1 = UA_NODEID_NUMERIC(0, 2253);
  43. UA_Node* n2 = UA_NodeStore_getCopy(ns, &in1);
  44. UA_StatusCode retval = UA_NodeStore_replace(ns, n2);
  45. ck_assert_int_eq(retval, UA_STATUSCODE_GOOD);
  46. }
  47. END_TEST
  48. START_TEST(replaceOldNode) {
  49. UA_Node* n1 = createNode(0,2253);
  50. UA_NodeStore_insert(ns, n1);
  51. UA_NodeId in1 = UA_NODEID_NUMERIC(0,2253);
  52. UA_Node* n2 = UA_NodeStore_getCopy(ns, &in1);
  53. UA_Node* n3 = UA_NodeStore_getCopy(ns, &in1);
  54. /* shall succeed */
  55. UA_StatusCode retval = UA_NodeStore_replace(ns, n2);
  56. ck_assert_int_eq(retval, UA_STATUSCODE_GOOD);
  57. /* shall fail */
  58. retval = UA_NodeStore_replace(ns, n3);
  59. ck_assert_int_ne(retval, UA_STATUSCODE_GOOD);
  60. }
  61. END_TEST
  62. START_TEST(findNodeInUA_NodeStoreWithSingleEntry) {
  63. UA_Node* n1 = createNode(0,2253);
  64. UA_NodeStore_insert(ns, n1);
  65. UA_NodeId in1 = UA_NODEID_NUMERIC(0,2253);
  66. const UA_Node* nr = UA_NodeStore_get(ns, &in1);
  67. ck_assert_int_eq((uintptr_t)n1, (uintptr_t)nr);
  68. }
  69. END_TEST
  70. START_TEST(failToFindNodeInOtherUA_NodeStore) {
  71. UA_Node* n1 = createNode(0,2255);
  72. UA_NodeStore_insert(ns, n1);
  73. UA_NodeId in1 = UA_NODEID_NUMERIC(1, 2255);
  74. const UA_Node* nr = UA_NodeStore_get(ns, &in1);
  75. ck_assert_int_eq((uintptr_t)nr, 0);
  76. }
  77. END_TEST
  78. START_TEST(findNodeInUA_NodeStoreWithSeveralEntries) {
  79. UA_Node* n1 = createNode(0,2253);
  80. UA_NodeStore_insert(ns, n1);
  81. UA_Node* n2 = createNode(0,2255);
  82. UA_NodeStore_insert(ns, n2);
  83. UA_Node* n3 = createNode(0,2257);
  84. UA_NodeStore_insert(ns, n3);
  85. UA_Node* n4 = createNode(0,2200);
  86. UA_NodeStore_insert(ns, n4);
  87. UA_Node* n5 = createNode(0,1);
  88. UA_NodeStore_insert(ns, n5);
  89. UA_Node* n6 = createNode(0,12);
  90. UA_NodeStore_insert(ns, n6);
  91. UA_NodeId in3 = UA_NODEID_NUMERIC(0, 2257);
  92. const UA_Node* nr = UA_NodeStore_get(ns, &in3);
  93. ck_assert_int_eq((uintptr_t)nr, (uintptr_t)n3);
  94. }
  95. END_TEST
  96. START_TEST(iterateOverUA_NodeStoreShallNotVisitEmptyNodes) {
  97. UA_Node* n1 = createNode(0,2253);
  98. UA_NodeStore_insert(ns, n1);
  99. UA_Node* n2 = createNode(0,2255);
  100. UA_NodeStore_insert(ns, n2);
  101. UA_Node* n3 = createNode(0,2257);
  102. UA_NodeStore_insert(ns, n3);
  103. UA_Node* n4 = createNode(0,2200);
  104. UA_NodeStore_insert(ns, n4);
  105. UA_Node* n5 = createNode(0,1);
  106. UA_NodeStore_insert(ns, n5);
  107. UA_Node* n6 = createNode(0,12);
  108. UA_NodeStore_insert(ns, n6);
  109. zeroCnt = 0;
  110. visitCnt = 0;
  111. UA_NodeStore_iterate(ns,checkZeroVisitor);
  112. ck_assert_int_eq(zeroCnt, 0);
  113. ck_assert_int_eq(visitCnt, 6);
  114. }
  115. END_TEST
  116. START_TEST(findNodeInExpandedNamespace) {
  117. for(UA_UInt32 i = 0; i < 200; i++) {
  118. UA_Node* n = createNode(0,i);
  119. UA_NodeStore_insert(ns, n);
  120. }
  121. // when
  122. UA_Node *n2 = createNode(0,25);
  123. const UA_Node* nr = UA_NodeStore_get(ns,&n2->nodeId);
  124. ck_assert_int_eq(nr->nodeId.identifier.numeric,n2->nodeId.identifier.numeric);
  125. UA_NodeStore_deleteNode(n2);
  126. }
  127. END_TEST
  128. START_TEST(iterateOverExpandedNamespaceShallNotVisitEmptyNodes) {
  129. for(UA_UInt32 i = 0; i < 200; i++) {
  130. UA_Node* n = createNode(0,i);
  131. UA_NodeStore_insert(ns, n);
  132. }
  133. // when
  134. zeroCnt = 0;
  135. visitCnt = 0;
  136. UA_NodeStore_iterate(ns,checkZeroVisitor);
  137. // then
  138. ck_assert_int_eq(zeroCnt, 0);
  139. ck_assert_int_eq(visitCnt, 200);
  140. }
  141. END_TEST
  142. START_TEST(failToFindNonExistantNodeInUA_NodeStoreWithSeveralEntries) {
  143. UA_Node* n1 = createNode(0,2253);
  144. UA_NodeStore_insert(ns, n1);
  145. UA_Node* n2 = createNode(0,2255);
  146. UA_NodeStore_insert(ns, n2);
  147. UA_Node* n3 = createNode(0,2257);
  148. UA_NodeStore_insert(ns, n3);
  149. UA_Node* n4 = createNode(0,2200);
  150. UA_NodeStore_insert(ns, n4);
  151. UA_Node* n5 = createNode(0,1);
  152. UA_NodeStore_insert(ns, n5);
  153. UA_NodeId id = UA_NODEID_NUMERIC(0, 12);
  154. const UA_Node* nr = UA_NodeStore_get(ns, &id);
  155. ck_assert_int_eq((uintptr_t)nr, 0);
  156. }
  157. END_TEST
  158. /************************************/
  159. /* Performance Profiling Test Cases */
  160. /************************************/
  161. #ifdef UA_ENABLE_MULTITHREADING
  162. struct UA_NodeStoreProfileTest {
  163. UA_Int32 min_val;
  164. UA_Int32 max_val;
  165. UA_Int32 rounds;
  166. };
  167. static void *profileGetThread(void *arg) {
  168. rcu_register_thread();
  169. UA_RCU_LOCK();
  170. struct UA_NodeStoreProfileTest *test = (struct UA_NodeStoreProfileTest*) arg;
  171. UA_NodeId id;
  172. UA_NodeId_init(&id);
  173. UA_Int32 max_val = test->max_val;
  174. for(UA_Int32 x = 0; x<test->rounds; x++) {
  175. for(UA_Int32 i=test->min_val; i<max_val; i++) {
  176. id.identifier.numeric = i;
  177. UA_NodeStore_get(ns,&id);
  178. }
  179. }
  180. UA_RCU_UNLOCK();
  181. rcu_unregister_thread();
  182. return NULL;
  183. }
  184. #endif
  185. START_TEST(profileGetDelete) {
  186. #define N 100 /* make bigger to test */
  187. for(UA_UInt32 i = 0; i < N; i++) {
  188. UA_Node *n = createNode(0,i);
  189. UA_NodeStore_insert(ns, n);
  190. }
  191. clock_t begin, end;
  192. begin = clock();
  193. #ifdef UA_ENABLE_MULTITHREADING
  194. #define THREADS 4
  195. pthread_t t[THREADS];
  196. struct UA_NodeStoreProfileTest p[THREADS];
  197. for (int i = 0; i < THREADS; i++) {
  198. p[i] = (struct UA_NodeStoreProfileTest){i*(N/THREADS), (i+1)*(N/THREADS), 50};
  199. pthread_create(&t[i], NULL, profileGetThread, &p[i]);
  200. }
  201. for (int i = 0; i < THREADS; i++)
  202. pthread_join(t[i], NULL);
  203. end = clock();
  204. printf("Time for %d create/get/delete on %d threads in a namespace: %fs.\n", N, THREADS, (double)(end - begin) / CLOCKS_PER_SEC);
  205. #else
  206. UA_NodeId id;
  207. UA_NodeId_init(&id);
  208. for(UA_Int32 x = 0; x<50; x++) {
  209. for(int i=0; i<N; i++) {
  210. id.identifier.numeric = i;
  211. UA_NodeStore_get(ns,&id);
  212. }
  213. }
  214. end = clock();
  215. printf("Time for single-threaded %d create/get/delete in a namespace: %fs.\n", N, (double)(end - begin) / CLOCKS_PER_SEC);
  216. #endif
  217. }
  218. END_TEST
  219. static Suite * namespace_suite (void) {
  220. Suite *s = suite_create ("UA_NodeStore");
  221. TCase* tc_find = tcase_create ("Find");
  222. tcase_add_checked_fixture(tc_find, setup, teardown);
  223. tcase_add_test (tc_find, findNodeInUA_NodeStoreWithSingleEntry);
  224. tcase_add_test (tc_find, findNodeInUA_NodeStoreWithSeveralEntries);
  225. tcase_add_test (tc_find, findNodeInExpandedNamespace);
  226. tcase_add_test (tc_find, failToFindNonExistantNodeInUA_NodeStoreWithSeveralEntries);
  227. tcase_add_test (tc_find, failToFindNodeInOtherUA_NodeStore);
  228. suite_add_tcase (s, tc_find);
  229. TCase *tc_replace = tcase_create("Replace");
  230. tcase_add_checked_fixture(tc_replace, setup, teardown);
  231. tcase_add_test (tc_replace, replaceExistingNode);
  232. tcase_add_test (tc_replace, replaceOldNode);
  233. suite_add_tcase (s, tc_replace);
  234. TCase* tc_iterate = tcase_create ("Iterate");
  235. tcase_add_checked_fixture(tc_iterate, setup, teardown);
  236. tcase_add_test (tc_iterate, iterateOverUA_NodeStoreShallNotVisitEmptyNodes);
  237. tcase_add_test (tc_iterate, iterateOverExpandedNamespaceShallNotVisitEmptyNodes);
  238. suite_add_tcase (s, tc_iterate);
  239. TCase* tc_profile = tcase_create ("Profile");
  240. tcase_add_checked_fixture(tc_profile, setup, teardown);
  241. tcase_add_test (tc_profile, profileGetDelete);
  242. suite_add_tcase (s, tc_profile);
  243. return s;
  244. }
  245. int main (void) {
  246. #ifdef UA_ENABLE_MULTITHREADING
  247. rcu_init();
  248. rcu_register_thread();
  249. #endif
  250. int number_failed = 0;
  251. Suite *s = namespace_suite();
  252. SRunner *sr = srunner_create(s);
  253. srunner_set_fork_status(sr,CK_NOFORK);
  254. srunner_run_all(sr, CK_NORMAL);
  255. number_failed += srunner_ntests_failed (sr);
  256. srunner_free(sr);
  257. #ifdef UA_ENABLE_MULTITHREADING
  258. rcu_barrier();
  259. rcu_unregister_thread();
  260. #endif
  261. return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
  262. }