check_nodestore.c 9.8 KB

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