Removed unnecessary logging messages
[ric-app/ts.git] / src / ts_xapp / ts_xapp.cpp
index 5a760e6..1ef8a56 100644 (file)
@@ -98,10 +98,10 @@ struct PolicyHandler : public BaseReaderHandler<UTF8<>, PolicyHandler> {
   bool found_threshold = false;
 
   
-  bool Null() { cout << "Null()" << endl; return true; }
-  bool Bool(bool b) { cout << "Bool(" << boolalpha << b << ")" << endl; return true; }
+  bool Null() { return true; }
+  bool Bool(bool b) { return true; }
   bool Int(int i) {
-    cout << "Int(" << i << ")" << endl;
+
     if (curr_key.compare("policy_type_id") == 0) {
       policy_type_id = i;
     } else if (curr_key.compare("policy_instance_id") == 0) {
@@ -114,7 +114,7 @@ struct PolicyHandler : public BaseReaderHandler<UTF8<>, PolicyHandler> {
     return true;
   }
   bool Uint(unsigned u) {
-    cout << "Int(" << u << ")" << endl;
+
     if (curr_key.compare("policy_type_id") == 0) {
       policy_type_id = u;
     } else if (curr_key.compare("policy_instance_id") == 0) {
@@ -126,11 +126,11 @@ struct PolicyHandler : public BaseReaderHandler<UTF8<>, PolicyHandler> {
 
     return true;
   }    
-  bool Int64(int64_t i) { cout << "Int64(" << i << ")" << endl; return true; }
-  bool Uint64(uint64_t u) { cout << "Uint64(" << u << ")" << endl; return true; }
-  bool Double(double d) { cout << "Double(" << d << ")" << endl; return true; }
+  bool Int64(int64_t i) {  return true; }
+  bool Uint64(uint64_t u) {  return true; }
+  bool Double(double d) {  return true; }
   bool String(const char* str, SizeType length, bool copy) {
-    cout << "String(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
+    
     if (curr_key.compare("operation") != 0) {
       operation = str;
     }
@@ -138,51 +138,56 @@ struct PolicyHandler : public BaseReaderHandler<UTF8<>, PolicyHandler> {
     return true;
   }
   bool StartObject() {
-    cout << "StartObject()" << endl;
+
     return true;
   }
   bool Key(const char* str, SizeType length, bool copy) {
-    cout << "Key(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
+
     curr_key = str;
 
     return true;
   }
-  bool EndObject(SizeType memberCount) { cout << "EndObject(" << memberCount << ")" << endl; return true; }
-  bool StartArray() { cout << "StartArray()" << endl; return true; }
-  bool EndArray(SizeType elementCount) { cout << "EndArray(" << elementCount << ")" << endl; return true; }
+  bool EndObject(SizeType memberCount) {  return true; }
+  bool StartArray() {  return true; }
+  bool EndArray(SizeType elementCount) {  return true; }
 
 };
 
 struct PredictionHandler : public BaseReaderHandler<UTF8<>, PredictionHandler> {
-  unordered_map<string, string> cell_pred;
+  unordered_map<string, int> cell_pred_down;
+  unordered_map<string, int> cell_pred_up;
   std::string ue_id;
   bool ue_id_found = false;
   string curr_key = "";
   string curr_value = "";
-  bool Null() { cout << "Null()" << endl; return true; }
-  bool Bool(bool b) { cout << "Bool(" << boolalpha << b << ")" << endl; return true; }
-  bool Int(int i) { cout << "Int(" << i << ")" << endl; return true; }
-  bool Uint(unsigned u) { cout << "Uint(" << u << ")" << endl; return true; }
-  bool Int64(int64_t i) { cout << "Int64(" << i << ")" << endl; return true; }
-  bool Uint64(uint64_t u) { cout << "Uint64(" << u << ")" << endl; return true; }
-  bool Double(double d) { cout << "Double(" << d << ")" << endl; return true; }
-  bool String(const char* str, SizeType length, bool copy) {
-    cout << "String(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
-    if (curr_key.compare("") != 0) {
-      cout << "Found throughput\n";
-      curr_value = str;
-      cell_pred[curr_key] = curr_value;
-      curr_key = "";
-      curr_value = "";
+  bool down_val = true;
+  bool Null() {  return true; }
+  bool Bool(bool b) {  return true; }
+  bool Int(int i) {  return true; }
+  bool Uint(unsigned u) {    
+
+    if (down_val) {
+      cell_pred_down[curr_key] = u;
+      down_val = false;
+    } else {
+      cell_pred_up[curr_key] = u;
+      down_val = true;
     }
 
+    return true;    
+
+  }
+  bool Int64(int64_t i) {  return true; }
+  bool Uint64(uint64_t u) {  return true; }
+  bool Double(double d) {  return true; }
+  bool String(const char* str, SizeType length, bool copy) {
+
     return true;
   }
-  bool StartObject() { cout << "StartObject()" << endl; return true; }
+  bool StartObject() {  return true; }
   bool Key(const char* str, SizeType length, bool copy) {
-    cout << "Key(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
     if (!ue_id_found) {
-      cout << "Found UE ID\n";
+
       ue_id = str;
       ue_id_found = true;
     } else {
@@ -190,9 +195,9 @@ struct PredictionHandler : public BaseReaderHandler<UTF8<>, PredictionHandler> {
     }
     return true;
   }
-  bool EndObject(SizeType memberCount) { cout << "EndObject(" << memberCount << ")" << endl; return true; }
-  bool StartArray() { cout << "StartArray()" << endl; return true; }
-  bool EndArray(SizeType elementCount) { cout << "EndArray(" << elementCount << ")" << endl; return true; }
+  bool EndObject(SizeType memberCount) {  return true; }
+  bool StartArray() {  return true; }
+  bool EndArray(SizeType elementCount) {  return true; }
 };
 
 
@@ -207,12 +212,12 @@ struct UEDataHandler : public BaseReaderHandler<UTF8<>, UEDataHandler> {
 
   string curr_key = "";
   string curr_value = "";
-  bool Null() { cout << "Null()" << endl; return true; }
-  bool Bool(bool b) { cout << "Bool(" << boolalpha << b << ")" << endl; return true; }
+  bool Null() { return true; }
+  bool Bool(bool b) { return true; }
   bool Int(int i) {
-    fprintf(stderr, "Int(%d)\n", i);
+
     if (in_serving_array) {
-      fprintf(stderr, "we are in serving array\n");
+
       switch(rf_meas_index) {
       case 0:
        serving_cell_rsrp = i;
@@ -229,27 +234,27 @@ struct UEDataHandler : public BaseReaderHandler<UTF8<>, UEDataHandler> {
     return true;
   }
   bool Uint(unsigned u) {
-    fprintf(stderr, "Int(%d)\n", u); return true; }
-  bool Int64(int64_t i) { cout << "Int64(" << i << ")" << endl; return true; }
-  bool Uint64(uint64_t u) { cout << "Uint64(" << u << ")" << endl; return true; }
-  bool Double(double d) { cout << "Double(" << d << ")" << endl; return true; }
+    return true; }
+  bool Int64(int64_t i) { return true; }
+  bool Uint64(uint64_t u) { return true; }
+  bool Double(double d) { return true; }
   bool String(const char* str, SizeType length, bool copy) {
-    fprintf(stderr,"String(%s)\n", str);
+    
     if (curr_key.compare("ServingCellID") == 0) {
       serving_cell_id = str;
     } 
 
     return true;
   }
-  bool StartObject() { cout << "StartObject()" << endl; return true; }
+  bool StartObject() { return true; }
   bool Key(const char* str, SizeType length, bool copy) {
-    fprintf(stderr,"Key(%s)\n", str);
+    
     curr_key = str;
     return true;
   }
-  bool EndObject(SizeType memberCount) { cout << "EndObject(" << memberCount << ")" << endl; return true; }
+  bool EndObject(SizeType memberCount) { return true; }
   bool StartArray() {
-    fprintf(stderr,"StartArray()");
+
     if (curr_key.compare("ServingCellRF") == 0) {
       in_serving_array = true;
     }
@@ -257,7 +262,7 @@ struct UEDataHandler : public BaseReaderHandler<UTF8<>, UEDataHandler> {
     return true;
   }
   bool EndArray(SizeType elementCount) {
-    fprintf(stderr, "EndArray()\n");
+
     if (curr_key.compare("servingCellRF") == 0) {
       in_serving_array = false;
       rf_meas_index = 0;
@@ -286,7 +291,7 @@ unordered_map<string, UEData> get_sdl_ue_data() {
     std::vector<uint8_t> val_v = Dk2[(*si)]; // 4 lines to unpack a string
     char val[val_v.size()+1];                               // from Data
     int i;
-    fprintf(stderr, "val size %d\n", val_v.size());
+
     for(i=0;i<val_v.size();++i) val[i] = (char)(val_v[i]);
     val[i]='\0';
       ue_id.assign((std::string)*si);
@@ -295,10 +300,6 @@ unordered_map<string, UEData> get_sdl_ue_data() {
       ue_data[ue_id] =  ue_json;
   }
   
-  fprintf(stderr, "after sdl get of ue data\n");
-  
-  fprintf(stderr, "From UE data map\n");
-  
   for (auto map_iter = ue_data.begin(); map_iter != ue_data.end(); map_iter++) {
     UEDataHandler handler;
     Reader reader;
@@ -309,15 +310,10 @@ unordered_map<string, UEData> get_sdl_ue_data() {
     string serving_cell_id = handler.serving_cell_id;
     int serv_rsrp = handler.serving_cell_rsrp;
     
-    fprintf(stderr,"UE data for %s\n", ueID.c_str());
-    fprintf(stderr,"Serving cell %s\n", serving_cell_id.c_str());
-    fprintf(stderr,"RSRP for UE %d\n", serv_rsrp);
-
     return_ue_data_map[ueID] = {serving_cell_id, serv_rsrp};
     
-  }
-  
-  fprintf(stderr, "\n");
+  }  
+
   return return_ue_data_map;
 }
 
@@ -327,12 +323,9 @@ void policy_callback( Message& mbuf, int mtype, int subid, int len, Msg_componen
   int rmtype;          // received message type
 
   
-  fprintf( stderr, "Policy Callback got a message, type=%d , length=%d\n" , mtype, len);
-  fprintf(stderr, "payload is %s\n", payload.get());
+  cout <<  "Policy Callback got a message, type=" << mtype << " , length=" << len << endl;
+  cout <<  "payload is " << payload.get() << endl;
   
-  //fprintf( stderr, "callback 1 got a message type = %d len = %d\n", mtype, len );
-  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK1\n" ); // validate that we can use the same buffer for 2 rts calls
-  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK2\n" );
 
   const char *arg = (const char*)payload.get();
 
@@ -344,8 +337,13 @@ void policy_callback( Message& mbuf, int mtype, int subid, int len, Msg_componen
   //Set the threshold value
 
   if (handler.found_threshold) {
+    cout << "Setting RSRP Threshold to A1-P value: " << handler.threshold << endl;
     rsrp_threshold = handler.threshold;
   }
+
+  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK1\n" ); // validate that we can use the same buffer for 2 rts calls
+  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK2\n" );
+  
   
 }
 
@@ -361,8 +359,6 @@ void send_prediction_request(vector<string> ues_to_predict) {
   int i;
   Msg_component send_payload;
   
-  fprintf(stderr, "cb 1\n");
-
   msg = xfw->Alloc_msg( 2048 );
   
   sz = msg->Get_available_size();  // we'll reuse a message if we received one back; ensure it's big enough
@@ -371,8 +367,6 @@ void send_prediction_request(vector<string> ues_to_predict) {
     exit( 1 );
   }
 
-  fprintf(stderr, "cb 2");
-
   string ues_list = "[";
 
   for (int i = 0; i < ues_to_predict.size(); i++) {
@@ -394,9 +388,7 @@ void send_prediction_request(vector<string> ues_to_predict) {
   //  snprintf( (char *) send_payload.get(), 2048, body);
   snprintf( (char *) send_payload.get(), 2048, "{\"UEPredictionSet\": [\"12345\"]}");
 
-  fprintf(stderr, "message body %s\n", send_payload.get());
-  
-  fprintf(stderr, "cb 3");
+  fprintf(stderr, "message body %s\n", send_payload.get());  
   fprintf(stderr, "payload length %d\n", strlen( (char *) send_payload.get() ));
   
   // payload updated in place, nothing to copy from, so payload parm is nil
@@ -404,8 +396,6 @@ void send_prediction_request(vector<string> ues_to_predict) {
     fprintf( stderr, "<SNDR> send failed: %d\n", msg->Get_state() );
   }
 
-  fprintf(stderr, "cb 4");
-
   /*
   msg = xfw->Receive( response_to );
   if( msg != NULL ) {
@@ -431,29 +421,28 @@ void prediction_callback( Message& mbuf, int mtype, int subid, int len, Msg_comp
   int rmtype;                                                  // received message type
   int delay = 1000000;                         // mu-sec delay; default 1s
 
-  fprintf( stderr, "Prediction Callback got a message, type=%d , length=%d\n" , mtype, len);
-  fprintf(stderr, "payload is %s\n", payload.get());
-  
-  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK1\n" ); // validate that we can use the same buffer for 2 rts calls
-  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK2\n" );
+  cout << "Prediction Callback got a message, type=" << mtype << " , length=" << len << "\n";
+  cout << "payload is " << payload.get() << "\n";
 
   mtype = 0;
 
-  fprintf(stderr, "cb 1\n");
-
   const char* arg = (const char*)payload.get();
-
   PredictionHandler handler;
-  Reader reader;
-  StringStream ss(arg);
-  reader.Parse(ss,handler);
 
-  std::string pred_ue_id = handler.ue_id;
+  try {
 
+    Reader reader;
+    StringStream ss(arg);
+    reader.Parse(ss,handler);
+  } catch (...) {
+    cout << "got an exception on stringstream read parse\n";
+  }
+  
+  std::string pred_ue_id = handler.ue_id;
+  
   cout << "Prediction for " << pred_ue_id << endl;
-
-  unordered_map<string, string> throughput_map = handler.cell_pred;
-
+  
+  unordered_map<string, int> throughput_map = handler.cell_pred_down;
 
   cout << endl;
  
@@ -474,14 +463,10 @@ void prediction_callback( Message& mbuf, int mtype, int subid, int len, Msg_comp
   std::string highest_throughput_cell_id;
   std::string::size_type str_size;
 
-  cout << "Going through throughtput map:" << endl;
-
   for (auto map_iter = throughput_map.begin(); map_iter != throughput_map.end(); map_iter++) {
-    cout << map_iter->first << " : " << map_iter->second << endl;    
+
     std::string curr_cellid = map_iter->first;
-    cout << "Cell ID is " << curr_cellid;
-    int curr_throughput = stoi(map_iter->second, &str_size);
-    cout << "Throughput is " << curr_throughput << endl;
+    int curr_throughput = map_iter->second;
 
     if (curr_cellid.compare(serving_cell_id) == 0) {
       serving_cell_throughput = curr_throughput;
@@ -493,11 +478,9 @@ void prediction_callback( Message& mbuf, int mtype, int subid, int len, Msg_comp
   //Iterating again to identify the highest throughput prediction
 
   for (auto map_iter = throughput_map.begin(); map_iter != throughput_map.end(); map_iter++) {
-    cout << map_iter->first << " : " << map_iter->second << endl;    
+
     std::string curr_cellid = map_iter->first;
-    cout << "Cell ID is " << curr_cellid;
-    int curr_throughput = stoi(map_iter->second, &str_size);
-    cout << "Throughput is " << curr_throughput << endl;
+    int curr_throughput = map_iter->second;
 
     if (curr_throughput > serving_cell_throughput) {
       highest_throughput = curr_throughput;
@@ -511,6 +494,9 @@ void prediction_callback( Message& mbuf, int mtype, int subid, int len, Msg_comp
     cout << "Source cell " << serving_cell_id << endl;
     cout << "Target cell " << highest_throughput_cell_id << endl;
   }
+
+  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK1\n" ); // validate that we can use the same buffer for 2 rts calls
+  mbuf.Send_response( 101, -1, 5, (unsigned char *) "OK2\n" );
   
   
 }
@@ -520,7 +506,7 @@ void prediction_callback( Message& mbuf, int mtype, int subid, int len, Msg_comp
 
 void run_loop() {
 
-  fprintf(stderr, "in run_loop()\n");
+  cout << "in Traffic Steering run_loop()\n";
 
   unordered_map<string, UEData> uemap;
 
@@ -528,8 +514,6 @@ void run_loop() {
 
   while (1) {
 
-    fprintf(stderr, "in while loop\n");
-
     uemap = get_sdl_ue_data();
 
     for (auto map_iter = uemap.begin(); map_iter != uemap.end(); map_iter++) {
@@ -563,14 +547,10 @@ extern int main( int argc, char** argv ) {
 
   
   fprintf( stderr, "<XAPP> listening on port: %s\n", port );
-  xfw = std::unique_ptr<Xapp>( new Xapp( port, true ) ); // new xAPP thing; wait for a route table
-  fprintf(stderr, "code1\n");
-
+  xfw = std::unique_ptr<Xapp>( new Xapp( port, true ) ); 
   
   xfw->Add_msg_cb( 20010, policy_callback, NULL );
   xfw->Add_msg_cb( 30002, prediction_callback, NULL );
-
-  fprintf(stderr, "code2\n");
   
   std::thread loop_thread;