check_nodestore.c 9.8 KB

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