check_nodestore.c 9.4 KB

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