check_nodestore.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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 <open62541/types.h>
  5. #include <open62541/util.h>
  6. #include <open62541/plugin/nodestore_default.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <time.h>
  10. #include "check.h"
  11. #if UA_MULTITHREADING >= 200
  12. #include <pthread.h>
  13. #endif
  14. UA_Nodestore ns;
  15. static void setupZipTree(void) {
  16. UA_Nodestore_ZipTree(&ns);
  17. }
  18. static void setupHashMap(void) {
  19. UA_Nodestore_HashMap(&ns);
  20. }
  21. static void teardown(void) {
  22. ns.clear(ns.context);
  23. }
  24. static int zeroCnt = 0;
  25. static int visitCnt = 0;
  26. static void checkZeroVisitor(void *context, const UA_Node* node) {
  27. visitCnt++;
  28. if (node == NULL) zeroCnt++;
  29. }
  30. static UA_Node* createNode(UA_Int16 nsid, UA_Int32 id) {
  31. UA_Node *p = ns.newNode(&ns.context, UA_NODECLASS_VARIABLE);
  32. p->nodeId.identifierType = UA_NODEIDTYPE_NUMERIC;
  33. p->nodeId.namespaceIndex = nsid;
  34. p->nodeId.identifier.numeric = id;
  35. p->nodeClass = UA_NODECLASS_VARIABLE;
  36. return p;
  37. }
  38. START_TEST(replaceExistingNode) {
  39. UA_Node* n1 = createNode(0,2253);
  40. ns.insertNode(ns.context, n1, NULL);
  41. UA_NodeId in1 = UA_NODEID_NUMERIC(0, 2253);
  42. UA_Node* n2;
  43. ns.getNodeCopy(ns.context, &in1, &n2);
  44. UA_StatusCode retval = ns.replaceNode(ns.context, 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. ns.insertNode(ns.context, n1, NULL);
  51. UA_NodeId in1 = UA_NODEID_NUMERIC(0,2253);
  52. UA_Node* n2;
  53. UA_Node* n3;
  54. ns.getNodeCopy(ns.context, &in1, &n2);
  55. ns.getNodeCopy(ns.context, &in1, &n3);
  56. /* shall succeed */
  57. UA_StatusCode retval = ns.replaceNode(ns.context, n2);
  58. ck_assert_int_eq(retval, UA_STATUSCODE_GOOD);
  59. /* shall fail */
  60. retval = ns.replaceNode(ns.context, n3);
  61. ck_assert_int_ne(retval, UA_STATUSCODE_GOOD);
  62. }
  63. END_TEST
  64. START_TEST(findNodeInUA_NodeStoreWithSingleEntry) {
  65. UA_Node* n1 = createNode(0,2253);
  66. ns.insertNode(ns.context, n1, NULL);
  67. UA_NodeId in1 = UA_NODEID_NUMERIC(0,2253);
  68. const UA_Node* nr = ns.getNode(ns.context, &in1);
  69. ck_assert_int_eq((uintptr_t)n1, (uintptr_t)nr);
  70. ns.releaseNode(ns.context, nr);
  71. }
  72. END_TEST
  73. START_TEST(failToFindNodeInOtherUA_NodeStore) {
  74. UA_Node* n1 = createNode(0,2255);
  75. ns.insertNode(ns.context, n1, NULL);
  76. UA_NodeId in1 = UA_NODEID_NUMERIC(1, 2255);
  77. const UA_Node* nr = ns.getNode(ns.context, &in1);
  78. ck_assert_int_eq((uintptr_t)nr, 0);
  79. }
  80. END_TEST
  81. START_TEST(findNodeInUA_NodeStoreWithSeveralEntries) {
  82. UA_Node* n1 = createNode(0,2253);
  83. ns.insertNode(ns.context, n1, NULL);
  84. UA_Node* n2 = createNode(0,2255);
  85. ns.insertNode(ns.context, n2, NULL);
  86. UA_Node* n3 = createNode(0,2257);
  87. ns.insertNode(ns.context, n3, NULL);
  88. UA_Node* n4 = createNode(0,2200);
  89. ns.insertNode(ns.context, n4, NULL);
  90. UA_Node* n5 = createNode(0,1);
  91. ns.insertNode(ns.context, n5, NULL);
  92. UA_Node* n6 = createNode(0,12);
  93. ns.insertNode(ns.context, n6, NULL);
  94. UA_NodeId in3 = UA_NODEID_NUMERIC(0, 2257);
  95. const UA_Node* nr = ns.getNode(ns.context, &in3);
  96. ck_assert_int_eq((uintptr_t)nr, (uintptr_t)n3);
  97. ns.releaseNode(ns.context, nr);
  98. }
  99. END_TEST
  100. START_TEST(iterateOverUA_NodeStoreShallNotVisitEmptyNodes) {
  101. UA_Node* n1 = createNode(0,2253);
  102. ns.insertNode(ns.context, n1, NULL);
  103. UA_Node* n2 = createNode(0,2255);
  104. ns.insertNode(ns.context, n2, NULL);
  105. UA_Node* n3 = createNode(0,2257);
  106. ns.insertNode(ns.context, n3, NULL);
  107. UA_Node* n4 = createNode(0,2200);
  108. ns.insertNode(ns.context, n4, NULL);
  109. UA_Node* n5 = createNode(0,1);
  110. ns.insertNode(ns.context, n5, NULL);
  111. UA_Node* n6 = createNode(0,12);
  112. ns.insertNode(ns.context, n6, NULL);
  113. zeroCnt = 0;
  114. visitCnt = 0;
  115. ns.iterate(ns.context, checkZeroVisitor, NULL);
  116. ck_assert_int_eq(zeroCnt, 0);
  117. ck_assert_int_eq(visitCnt, 6);
  118. }
  119. END_TEST
  120. START_TEST(findNodeInExpandedNamespace) {
  121. for(UA_UInt32 i = 0; i < 200; i++) {
  122. UA_Node* n = createNode(0,i);
  123. ns.insertNode(ns.context, n, NULL);
  124. }
  125. // when
  126. UA_Node *n2 = createNode(0,25);
  127. const UA_Node* nr = ns.getNode(ns.context, &n2->nodeId);
  128. ck_assert_int_eq(nr->nodeId.identifier.numeric, n2->nodeId.identifier.numeric);
  129. ns.releaseNode(ns.context, nr);
  130. ns.deleteNode(ns.context, n2);
  131. }
  132. END_TEST
  133. START_TEST(iterateOverExpandedNamespaceShallNotVisitEmptyNodes) {
  134. for(UA_UInt32 i = 0; i < 200; i++) {
  135. UA_Node* n = createNode(0,i+1);
  136. ns.insertNode(ns.context, n, NULL);
  137. }
  138. // when
  139. zeroCnt = 0;
  140. visitCnt = 0;
  141. ns.iterate(ns.context, checkZeroVisitor, NULL);
  142. // then
  143. ck_assert_int_eq(zeroCnt, 0);
  144. ck_assert_int_eq(visitCnt, 200);
  145. }
  146. END_TEST
  147. START_TEST(failToFindNonExistentNodeInUA_NodeStoreWithSeveralEntries) {
  148. UA_Node* n1 = createNode(0,2253);
  149. ns.insertNode(ns.context, n1, NULL);
  150. UA_Node* n2 = createNode(0,2255);
  151. ns.insertNode(ns.context, n2, NULL);
  152. UA_Node* n3 = createNode(0,2257);
  153. ns.insertNode(ns.context, n3, NULL);
  154. UA_Node* n4 = createNode(0,2200);
  155. ns.insertNode(ns.context, n4, NULL);
  156. UA_Node* n5 = createNode(0,1);
  157. ns.insertNode(ns.context, n5, NULL);
  158. UA_NodeId id = UA_NODEID_NUMERIC(0, 12);
  159. const UA_Node* nr = ns.getNode(ns.context, &id);
  160. ck_assert_int_eq((uintptr_t)nr, 0);
  161. }
  162. END_TEST
  163. /************************************/
  164. /* Performance Profiling Test Cases */
  165. /************************************/
  166. #if UA_MULTITHREADING >= 200
  167. struct UA_NodeStoreProfileTest {
  168. UA_Int32 min_val;
  169. UA_Int32 max_val;
  170. UA_Int32 rounds;
  171. };
  172. static void *profileGetThread(void *arg) {
  173. struct UA_NodeStoreProfileTest *test = (struct UA_NodeStoreProfileTest*) arg;
  174. UA_NodeId id;
  175. UA_NodeId_init(&id);
  176. UA_Int32 max_val = test->max_val;
  177. for(UA_Int32 x = 0; x<test->rounds; x++) {
  178. for(UA_Int32 i=test->min_val; i<max_val; i++) {
  179. id.identifier.numeric = i+1;
  180. const UA_Node *n = ns.getNode(ns.context, &id);
  181. ns.releaseNode(ns.context, n);
  182. }
  183. }
  184. return NULL;
  185. }
  186. #endif
  187. #define N 10000 /* make bigger to test */
  188. START_TEST(profileGetDelete) {
  189. clock_t begin, end;
  190. begin = clock();
  191. for(UA_UInt32 i = 0; i < N; i++) {
  192. UA_Node *n = createNode(0,i+1);
  193. ns.insertNode(ns.context, n, NULL);
  194. }
  195. #if UA_MULTITHREADING >= 200
  196. #define THREADS 4
  197. pthread_t t[THREADS];
  198. struct UA_NodeStoreProfileTest p[THREADS];
  199. for (int i = 0; i < THREADS; i++) {
  200. p[i] = (struct UA_NodeStoreProfileTest){i*(N/THREADS), (i+1)*(N/THREADS), 50};
  201. pthread_create(&t[i], NULL, profileGetThread, &p[i]);
  202. }
  203. for (int i = 0; i < THREADS; i++)
  204. pthread_join(t[i], NULL);
  205. end = clock();
  206. printf("Time for %d create/get/delete on %d threads in a namespace: %fs.\n", N, THREADS, (double)(end - begin) / CLOCKS_PER_SEC);
  207. #else
  208. UA_NodeId id = UA_NODEID_NULL;
  209. for(size_t i = 0; i < N; i++) {
  210. id.identifier.numeric = (UA_UInt32)i+1;
  211. const UA_Node *node = ns.getNode(ns.context, &id);
  212. ns.releaseNode(ns.context, node);
  213. }
  214. end = clock();
  215. printf("Time for single-threaded %d create/get/delete in a namespace: %fs.\n", N,
  216. (double)(end - begin) / CLOCKS_PER_SEC);
  217. #endif
  218. }
  219. END_TEST
  220. static Suite * namespace_suite (void) {
  221. Suite *s = suite_create ("UA_NodeStore");
  222. TCase* tc_find = tcase_create ("Find-ZipTree");
  223. tcase_add_checked_fixture(tc_find, setupZipTree, teardown);
  224. tcase_add_test (tc_find, findNodeInUA_NodeStoreWithSingleEntry);
  225. tcase_add_test (tc_find, findNodeInUA_NodeStoreWithSeveralEntries);
  226. tcase_add_test (tc_find, findNodeInExpandedNamespace);
  227. tcase_add_test (tc_find, failToFindNonExistentNodeInUA_NodeStoreWithSeveralEntries);
  228. tcase_add_test (tc_find, failToFindNodeInOtherUA_NodeStore);
  229. suite_add_tcase (s, tc_find);
  230. TCase *tc_replace = tcase_create("Replace-ZipTree");
  231. tcase_add_checked_fixture(tc_replace, setupZipTree, teardown);
  232. tcase_add_test (tc_replace, replaceExistingNode);
  233. tcase_add_test (tc_replace, replaceOldNode);
  234. suite_add_tcase (s, tc_replace);
  235. TCase* tc_iterate = tcase_create ("Iterate-ZipTree");
  236. tcase_add_checked_fixture(tc_iterate, setupZipTree, teardown);
  237. tcase_add_test (tc_iterate, iterateOverUA_NodeStoreShallNotVisitEmptyNodes);
  238. tcase_add_test (tc_iterate, iterateOverExpandedNamespaceShallNotVisitEmptyNodes);
  239. suite_add_tcase (s, tc_iterate);
  240. TCase* tc_profile = tcase_create ("Profile-ZipTree");
  241. tcase_add_checked_fixture(tc_profile, setupZipTree, teardown);
  242. tcase_add_test (tc_profile, profileGetDelete);
  243. suite_add_tcase (s, tc_profile);
  244. TCase* tc_find_hm = tcase_create ("Find-HashMap");
  245. tcase_add_checked_fixture(tc_find_hm, setupHashMap, teardown);
  246. tcase_add_test (tc_find_hm, findNodeInUA_NodeStoreWithSingleEntry);
  247. tcase_add_test (tc_find_hm, findNodeInUA_NodeStoreWithSeveralEntries);
  248. tcase_add_test (tc_find_hm, findNodeInExpandedNamespace);
  249. tcase_add_test (tc_find_hm, failToFindNonExistentNodeInUA_NodeStoreWithSeveralEntries);
  250. tcase_add_test (tc_find_hm, failToFindNodeInOtherUA_NodeStore);
  251. suite_add_tcase (s, tc_find_hm);
  252. TCase *tc_replace_hm = tcase_create("Replace-HashMap");
  253. tcase_add_checked_fixture(tc_replace_hm, setupHashMap, teardown);
  254. tcase_add_test (tc_replace_hm, replaceExistingNode);
  255. tcase_add_test (tc_replace_hm, replaceOldNode);
  256. suite_add_tcase (s, tc_replace_hm);
  257. TCase* tc_iterate_hm = tcase_create ("Iterate-HashMap");
  258. tcase_add_checked_fixture(tc_iterate_hm, setupHashMap, teardown);
  259. tcase_add_test (tc_iterate_hm, iterateOverUA_NodeStoreShallNotVisitEmptyNodes);
  260. tcase_add_test (tc_iterate_hm, iterateOverExpandedNamespaceShallNotVisitEmptyNodes);
  261. suite_add_tcase (s, tc_iterate_hm);
  262. TCase* tc_profile_hm = tcase_create ("Profile-HashMap");
  263. tcase_add_checked_fixture(tc_profile_hm, setupHashMap, teardown);
  264. tcase_add_test (tc_profile_hm, profileGetDelete);
  265. suite_add_tcase (s, tc_profile_hm);
  266. return s;
  267. }
  268. int main (void) {
  269. int number_failed = 0;
  270. Suite *s = namespace_suite();
  271. SRunner *sr = srunner_create(s);
  272. srunner_set_fork_status(sr,CK_NOFORK);
  273. srunner_run_all(sr, CK_NORMAL);
  274. number_failed += srunner_ntests_failed (sr);
  275. srunner_free(sr);
  276. return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
  277. }