ua_services_view.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #include "ua_services.h"
  2. #include "ua_statuscodes.h"
  3. #include "ua_namespace_0.h"
  4. #include "ua_util.h"
  5. #include "ua_namespace_manager.h"
  6. void Service_Browse(UA_Server *server, UA_Session *session,
  7. const UA_BrowseRequest *request, UA_BrowseResponse *response) {
  8. UA_Int32 *numberOfFoundIndices;
  9. UA_UInt16 *associatedIndices;
  10. UA_UInt32 differentNamespaceIndexCount = 0;
  11. UA_assert(server != UA_NULL && session != UA_NULL && request != UA_NULL && response != UA_NULL);
  12. if(request->nodesToBrowseSize <= 0) {
  13. response->responseHeader.serviceResult = UA_STATUSCODE_BADNOTHINGTODO;
  14. return;
  15. }
  16. if(UA_Array_new((void **)&(response->results), request->nodesToBrowseSize, &UA_[UA_BROWSERESULT])
  17. != UA_STATUSCODE_GOOD) {
  18. response->responseHeader.serviceResult = UA_STATUSCODE_BADOUTOFMEMORY;
  19. return;
  20. }
  21. response->resultsSize = request->nodesToBrowseSize;
  22. if(UA_Array_new((void **)&numberOfFoundIndices,request->nodesToBrowseSize,&UA_[UA_UINT32]) != UA_STATUSCODE_GOOD){
  23. response->responseHeader.serviceResult = UA_STATUSCODE_BADOUTOFMEMORY;
  24. return ;
  25. }
  26. if(UA_Array_new((void **)&associatedIndices,request->nodesToBrowseSize,&UA_[UA_UINT16]) != UA_STATUSCODE_GOOD){
  27. response->responseHeader.serviceResult = UA_STATUSCODE_BADOUTOFMEMORY;
  28. return ;
  29. }
  30. BUILD_INDEX_ARRAYS(request->nodesToBrowseSize,request->nodesToBrowse,nodeId,differentNamespaceIndexCount,associatedIndices,numberOfFoundIndices);
  31. UA_UInt32 *browseDescriptionIndices;
  32. if(UA_Array_new((void **)&browseDescriptionIndices,request->nodesToBrowseSize,&UA_[UA_UINT32]) != UA_STATUSCODE_GOOD){
  33. response->responseHeader.serviceResult = UA_STATUSCODE_BADOUTOFMEMORY;
  34. return ;
  35. }
  36. for(UA_UInt32 i = 0; i < differentNamespaceIndexCount; i++){
  37. UA_Namespace *tmpNamespace;
  38. UA_NamespaceManager_getNamespace(server->namespaceManager,associatedIndices[i],&tmpNamespace);
  39. if(tmpNamespace != UA_NULL){
  40. //build up index array for each read operation onto a different namespace
  41. UA_UInt32 n = 0;
  42. for(UA_Int32 j = 0; j < request->nodesToBrowseSize; j++){
  43. if(request->nodesToBrowse[j].nodeId.namespaceIndex == associatedIndices[i]){
  44. browseDescriptionIndices[n] = j;
  45. n++;
  46. }
  47. }
  48. //call read for every namespace
  49. tmpNamespace->nodeStore->browseNodes(
  50. request->nodesToBrowse,
  51. browseDescriptionIndices,
  52. numberOfFoundIndices[i],
  53. request->requestedMaxReferencesPerNode,
  54. response->results,
  55. response->diagnosticInfos);
  56. }
  57. }
  58. UA_free(browseDescriptionIndices);
  59. UA_free(numberOfFoundIndices);
  60. UA_free(associatedIndices);
  61. }
  62. void Service_TranslateBrowsePathsToNodeIds(UA_Server *server, UA_Session *session,
  63. const UA_TranslateBrowsePathsToNodeIdsRequest *request,
  64. UA_TranslateBrowsePathsToNodeIdsResponse *response) {
  65. UA_assert(server != UA_NULL && session != UA_NULL && request != UA_NULL && response != UA_NULL);
  66. if(request->browsePathsSize <= 0) {
  67. response->responseHeader.serviceResult = UA_STATUSCODE_BADNOTHINGTODO;
  68. return;
  69. }
  70. // Allocate space for a correct answer
  71. response->resultsSize = request->browsePathsSize;
  72. // _init of the elements is done in Array_new
  73. if(UA_Array_new((void **)&response->results, request->browsePathsSize, &UA_[UA_BROWSEPATHRESULT])
  74. != UA_STATUSCODE_GOOD) {
  75. response->responseHeader.serviceResult = UA_STATUSCODE_BADOUTOFMEMORY;
  76. return;
  77. }
  78. for(UA_Int32 i = 0;i < request->browsePathsSize;i++)
  79. response->results[i].statusCode = UA_STATUSCODE_BADNOMATCH; //FIXME: implement
  80. }