JniClass.cpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-04-07
  6. * Changed: 2023-04-10
  7. *
  8. * */
  9. #include <ls-std/core/ConditionalFunctionExecutor.hpp>
  10. #include <ls-std/core/evaluator/EmptyStringArgumentEvaluator.hpp>
  11. #include <ls-std/core/evaluator/NullPointerArgumentEvaluator.hpp>
  12. #include <ls-std/core/evaluator/NullPointerEvaluator.hpp>
  13. #include <ls-std/core/jni/JniApi.hpp>
  14. #include <ls-std/core/jni/JniClass.hpp>
  15. #include <memory>
  16. using ls::std::core::ConditionalFunctionExecutor;
  17. using ls::std::core::EmptyStringArgumentEvaluator;
  18. using ls::std::core::NullPointerArgumentEvaluator;
  19. using ls::std::core::NullPointerEvaluator;
  20. using ls::std::core::experimental::JniApi;
  21. using ls::std::core::experimental::JniClass;
  22. using ls::std::core::experimental::JniClassParameter;
  23. using ls::std::core::experimental::JniMethod;
  24. using ls::std::core::experimental::JniReturnValue;
  25. using std::make_pair;
  26. using std::make_shared;
  27. using std::pair;
  28. using std::shared_ptr;
  29. using std::string;
  30. JniClass::JniClass(const shared_ptr<JniClassParameter> &_parameter, const string &_path)
  31. {
  32. NullPointerArgumentEvaluator{_parameter, "no provided reference to JNI class parameter!"}.evaluate();
  33. EmptyStringArgumentEvaluator{_path, "path to associated Java class is empty!"}.evaluate();
  34. NullPointerArgumentEvaluator{_parameter->getJavaEnvironment(), "Java environment is not being provided!"}.evaluate();
  35. this->parameter = _parameter;
  36. this->path = _path;
  37. ConditionalFunctionExecutor{_parameter->getJniApi() == nullptr}.execute([this]() { _createJniApi(); });
  38. }
  39. JniClass::~JniClass() = default;
  40. JniReturnValue JniClass::callMethod(const string &_methodIdentifier)
  41. {
  42. JniReturnValue returnValue{};
  43. if (this->_hasMethod(_methodIdentifier))
  44. {
  45. this->_callBooleanMethod(_methodIdentifier, returnValue);
  46. this->_callByteMethod(_methodIdentifier, returnValue);
  47. this->_callIntMethod(_methodIdentifier, returnValue);
  48. }
  49. return returnValue;
  50. }
  51. bool JniClass::hasMethod(const string &_methodIdentifier)
  52. {
  53. return this->_hasMethod(_methodIdentifier);
  54. }
  55. bool JniClass::load()
  56. {
  57. this->javaClass = this->parameter->getJniApi()->findClass(this->path);
  58. return this->javaClass != nullptr;
  59. }
  60. bool JniClass::loadMethod(const string &_methodIdentifier, const string &_methodSignature)
  61. {
  62. NullPointerEvaluator{this->javaClass, "no Java class reference available for loading class method!"}.evaluate();
  63. jmethodID methodId = this->parameter->getJniApi()->getMethodId(this->javaClass, _methodIdentifier.c_str(), _methodSignature.c_str());
  64. bool succeeded = methodId != nullptr && !this->_hasMethod(_methodIdentifier);
  65. if (succeeded)
  66. {
  67. JniMethod method{_methodIdentifier, _methodSignature};
  68. method.setMethodId(methodId);
  69. succeeded = this->methods.insert(make_pair<string, JniMethod>(string{_methodIdentifier}, JniMethod{method})).second;
  70. }
  71. return succeeded;
  72. }
  73. void JniClass::_callBooleanMethod(const ::std::string &_methodIdentifier, ls::std::core::experimental::JniReturnValue &_returnValue)
  74. {
  75. JniMethod method = this->methods.at(_methodIdentifier);
  76. string searchString = ")Z";
  77. string methodSignature = method.getMethodSignature();
  78. bool hasBooleanReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  79. if (hasBooleanReturnType)
  80. {
  81. _returnValue.setBooleanValue(this->parameter->getJniApi()->callBooleanMethod(this->parameter->getJavaObject(), method.getMethodId()));
  82. }
  83. }
  84. void JniClass::_callByteMethod(const ::std::string &_methodIdentifier, ls::std::core::experimental::JniReturnValue &_returnValue)
  85. {
  86. JniMethod method = this->methods.at(_methodIdentifier);
  87. string searchString = ")B";
  88. string methodSignature = method.getMethodSignature();
  89. bool hasByteReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  90. if (hasByteReturnType)
  91. {
  92. _returnValue.setByteValue(this->parameter->getJniApi()->callByteMethod(this->parameter->getJavaObject(), method.getMethodId()));
  93. }
  94. }
  95. void JniClass::_callIntMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  96. {
  97. JniMethod method = this->methods.at(_methodIdentifier);
  98. string searchString = ")I";
  99. string methodSignature = method.getMethodSignature();
  100. bool hasIntegerReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  101. if (hasIntegerReturnType)
  102. {
  103. _returnValue.setIntegerValue(this->parameter->getJniApi()->callIntMethod(this->parameter->getJavaObject(), method.getMethodId()));
  104. }
  105. }
  106. void JniClass::_createJniApi()
  107. {
  108. this->parameter->setJniApi(make_shared<JniApi>(this->parameter->getJavaEnvironment()));
  109. }
  110. bool JniClass::_hasMethod(const string &_methodIdentifier)
  111. {
  112. return this->methods.find(_methodIdentifier) != this->methods.end();
  113. }