Refactoring type size handler; using Java types as standard
[iot2.git] / iotjava / iotrmi / C++ / IoTRMICall.hpp
1 /** Class IoTRMICall provides methods that the upper
2  *  layers can use to transport and invoke methods
3  *  when using IoTSocket, IoTSocketClient and IoTSocketServer.
4  *  <p>
5  *  This class serves in the stub part of the RMI
6  *  communication. It bridges and creates RMI requests to be
7  *  transferred into the RMI object.
8  *
9  * @author      Rahmadi Trimananda <rtrimana @ uci.edu>
10  * @version     1.0
11  * @since       2016-10-18
12  */
13 #ifndef _IOTRMICALL_HPP__
14 #define _IOTRMICALL_HPP__
15
16 #include <iostream>
17 #include <string>
18 #include "IoTRMIUtil.hpp"
19 #include "IoTSocketClient.hpp"
20
21 using namespace std;
22
23 class IoTRMICall {
24         public:
25                 IoTRMICall(int _port, const char* _address, int _rev, bool* _bResult);
26                 ~IoTRMICall();
27                 // Public methods
28                 int             methodLength(string paramCls[], void* paramObj[], int numParam);
29                 char*   methodToBytes(string methodSign, string paramCls[], void* paramObj[],
30                                                                 char* method, int numParam);
31                 void*   remoteCall(string methodSign, string retType, string paramCls[], 
32                                                                 void* paramObj[], int numParam, void* retObj);
33
34         private:
35                 IoTRMIUtil              *rmiUtil;
36                 IoTSocketClient *rmiClient;
37 };
38
39
40 // Constructor
41 IoTRMICall::IoTRMICall(int _port, const char* _address, int _rev, bool* _bResult) {
42
43         rmiUtil = new IoTRMIUtil();
44         if (rmiUtil == NULL) {
45                 perror("IoTRMICall: IoTRMIUtil isn't initialized!");
46         }
47         rmiClient = new IoTSocketClient(_port, _address, _rev, _bResult);
48         if (rmiClient == NULL) {
49                 perror("IoTRMICall: IoTSocketClient isn't initialized!");
50         }
51 }
52
53
54 // Destructor
55 IoTRMICall::~IoTRMICall() {
56
57         // Clean up
58         if (rmiUtil != NULL) {
59                 
60                 delete rmiUtil;
61                 rmiUtil = NULL;         
62         }
63         if (rmiClient != NULL) {
64
65                 fflush(NULL);
66                 rmiClient->close();             
67                 delete rmiClient;
68                 rmiClient = NULL;               
69         }
70 }
71
72
73 // Calls a method remotely by passing in parameters and getting a return object
74 void* IoTRMICall::remoteCall(string methodSign, string retType, string paramCls[], 
75                                                                 void* paramObj[], int numParam, void* retObj) {
76
77         // Send input parameters
78         int len = methodLength(paramCls, paramObj, numParam);
79         char method[len];
80         methodToBytes(methodSign, paramCls, paramObj, method, numParam);
81         // Send bytes
82         fflush(NULL);
83         rmiClient->sendBytes(method, len);
84         fflush(NULL);
85         // Receive return value and return it to caller
86         if (retType.compare("void") == 0)
87                 // Just make it NULL if it's a void return
88                 retObj = NULL;
89         else {
90                 int retLen = 0;
91                 char* retObjBytes = NULL;
92                 retObjBytes = rmiClient->receiveBytes(retObjBytes, &retLen);
93                 IoTRMIUtil::printBytes(retObjBytes, retLen, false);
94                 retObj = IoTRMIUtil::getParamObject(retObj, retType.c_str(), retObjBytes, retLen);
95         }
96         
97         return retObj;
98 }
99
100
101 // Find the bytes length of a method
102 int IoTRMICall::methodLength(string paramCls[], void* paramObj[], int numParam) {
103
104         // Get byte arrays and calculate method bytes length
105         // Start from the method Id...
106         int methodLen = IoTRMIUtil::METHOD_ID_LEN;
107         for (int i = 0; i < numParam; i++) {
108                 // Find the parameter length
109                 int paramLen = rmiUtil->getTypeSize(paramCls[i]);
110                 if (paramLen == -1) { // Store the length of the field - indefinite length
111                         paramLen = rmiUtil->getVarTypeSize(paramCls[i], paramObj[i]);
112                         // Some space for param length, i.e. 32 bits for integer                
113                         methodLen = methodLen + IoTRMIUtil::PARAM_LEN;
114                 }
115                 // Calculate methodLen
116                 methodLen = methodLen + paramLen;
117         }
118
119         return methodLen;
120 }
121
122
123 // Convert method and its parameters into bytes
124 char* IoTRMICall::methodToBytes(string methodSign, string paramCls[], 
125                 void* paramObj[], char* method, int numParam) {
126
127         // Get method ID in bytes
128         char methodId[IoTRMIUtil::METHOD_ID_LEN];
129         IoTRMIUtil::getHashCodeBytes(methodSign, methodId);
130         memcpy(method, methodId, IoTRMIUtil::METHOD_ID_LEN);
131         int pos = IoTRMIUtil::METHOD_ID_LEN;
132         // Get byte arrays and calculate method bytes length
133         for (int i = 0; i < numParam; i++) {
134                 // Find the parameter length
135                 int paramLen = rmiUtil->getTypeSize(paramCls[i]);
136                 if (paramLen == -1) { // Store the length of the field - indefinite length
137                         paramLen = rmiUtil->getVarTypeSize(paramCls[i], paramObj[i]);
138                         // Write the parameter length
139                         char prmLenBytes[IoTRMIUtil::METHOD_ID_LEN];
140                         IoTRMIUtil::intToByteArray(paramLen, prmLenBytes);
141                         memcpy(method + pos, prmLenBytes, IoTRMIUtil::PARAM_LEN);                       
142                         pos = pos + IoTRMIUtil::PARAM_LEN;
143                 }
144                 // Get array of bytes and put it in the array of array of bytes
145                 char objBytes[paramLen];
146                 IoTRMIUtil::getObjectBytes(objBytes, paramObj[i], paramCls[i].c_str());
147                 memcpy(method + pos, objBytes, paramLen);
148                 pos = pos + paramLen;
149         }
150
151         return method;
152 }
153
154
155 #endif
156
157