HepuLoginRe.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #pragma once
  2. #include <iostream>
  3. #include <rapidjson/document.h>
  4. #include <rapidjson/rapidjson.h>
  5. #include <rapidjson/stringbuffer.h>
  6. #include <rapidjson/writer.h>
  7. using namespace std;
  8. class HepuLoginRe
  9. {
  10. private:
  11. public:
  12. const string cmd = "userLogin";
  13. int ackvalue;
  14. string token;
  15. HepuLoginRe(){};
  16. ~HepuLoginRe(){};
  17. bool jsonToObject(string& json){
  18. rapidjson::Document doc;
  19. doc.Parse(json.c_str());
  20. if(!doc.IsObject()){
  21. return false;
  22. }
  23. const auto end = doc.MemberEnd();
  24. if(end == doc.FindMember("cmd") || !doc["cmd"].IsString()){
  25. return false;
  26. }else{
  27. if(cmd != doc["cmd"].GetString())
  28. return false;
  29. }
  30. if(end == doc.FindMember("param") || !doc["param"].IsObject()) {
  31. return false;
  32. }else{
  33. const rapidjson::Value& object = doc["param"];
  34. if(end == object.FindMember("ackvalue") || !object["ackvalue"].IsInt()) {
  35. return false;
  36. }else{
  37. ackvalue = object["ackvalue"].GetInt();
  38. }
  39. if(end == object.FindMember("token") || !object["token"].IsString()) {
  40. return false;
  41. }else{
  42. token = object["token"].GetString();
  43. }
  44. }
  45. return true;
  46. }
  47. };