JniClass.cpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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-11
  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->_callCharMethod(_methodIdentifier, returnValue);
  48. this->_callIntMethod(_methodIdentifier, returnValue);
  49. this->_callLongMethod(_methodIdentifier, returnValue);
  50. this->_callShortMethod(_methodIdentifier, returnValue);
  51. }
  52. return returnValue;
  53. }
  54. bool JniClass::hasMethod(const string &_methodIdentifier)
  55. {
  56. return this->_hasMethod(_methodIdentifier);
  57. }
  58. bool JniClass::load()
  59. {
  60. this->javaClass = this->parameter->getJniApi()->findClass(this->path);
  61. return this->javaClass != nullptr;
  62. }
  63. bool JniClass::loadMethod(const string &_methodIdentifier, const string &_methodSignature)
  64. {
  65. NullPointerEvaluator{this->javaClass, "no Java class reference available for loading class method!"}.evaluate();
  66. jmethodID methodId = this->parameter->getJniApi()->getMethodId(this->javaClass, _methodIdentifier.c_str(), _methodSignature.c_str());
  67. bool succeeded = methodId != nullptr && !this->_hasMethod(_methodIdentifier);
  68. if (succeeded)
  69. {
  70. JniMethod method{_methodIdentifier, _methodSignature};
  71. method.setMethodId(methodId);
  72. succeeded = this->methods.insert(make_pair<string, JniMethod>(string{_methodIdentifier}, JniMethod{method})).second;
  73. }
  74. return succeeded;
  75. }
  76. void JniClass::_callBooleanMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  77. {
  78. JniMethod method = this->methods.at(_methodIdentifier);
  79. string searchString = ")Z";
  80. string methodSignature = method.getMethodSignature();
  81. bool hasBooleanReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  82. if (hasBooleanReturnType)
  83. {
  84. _returnValue.setBooleanValue(this->parameter->getJniApi()->callBooleanMethod(this->parameter->getJavaObject(), method.getMethodId()));
  85. }
  86. }
  87. void JniClass::_callByteMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  88. {
  89. JniMethod method = this->methods.at(_methodIdentifier);
  90. string searchString = ")B";
  91. string methodSignature = method.getMethodSignature();
  92. bool hasByteReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  93. if (hasByteReturnType)
  94. {
  95. _returnValue.setByteValue(this->parameter->getJniApi()->callByteMethod(this->parameter->getJavaObject(), method.getMethodId()));
  96. }
  97. }
  98. void JniClass::_callCharMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  99. {
  100. JniMethod method = this->methods.at(_methodIdentifier);
  101. string searchString = ")C";
  102. string methodSignature = method.getMethodSignature();
  103. bool hasCharReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  104. if (hasCharReturnType)
  105. {
  106. _returnValue.setCharValue(this->parameter->getJniApi()->callCharMethod(this->parameter->getJavaObject(), method.getMethodId()));
  107. }
  108. }
  109. void JniClass::_callIntMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  110. {
  111. JniMethod method = this->methods.at(_methodIdentifier);
  112. string searchString = ")I";
  113. string methodSignature = method.getMethodSignature();
  114. bool hasIntegerReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  115. if (hasIntegerReturnType)
  116. {
  117. _returnValue.setIntegerValue(this->parameter->getJniApi()->callIntMethod(this->parameter->getJavaObject(), method.getMethodId()));
  118. }
  119. }
  120. void JniClass::_callLongMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  121. {
  122. JniMethod method = this->methods.at(_methodIdentifier);
  123. string searchString = ")J";
  124. string methodSignature = method.getMethodSignature();
  125. bool hasLongReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  126. if (hasLongReturnType)
  127. {
  128. _returnValue.setLongValue(this->parameter->getJniApi()->callLongMethod(this->parameter->getJavaObject(), method.getMethodId()));
  129. }
  130. }
  131. void JniClass::_callShortMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  132. {
  133. JniMethod method = this->methods.at(_methodIdentifier);
  134. string searchString = ")S";
  135. string methodSignature = method.getMethodSignature();
  136. bool hasShortReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  137. if (hasShortReturnType)
  138. {
  139. _returnValue.setShortValue(this->parameter->getJniApi()->callShortMethod(this->parameter->getJavaObject(), method.getMethodId()));
  140. }
  141. }
  142. void JniClass::_createJniApi()
  143. {
  144. this->parameter->setJniApi(make_shared<JniApi>(this->parameter->getJavaEnvironment()));
  145. }
  146. bool JniClass::_hasMethod(const string &_methodIdentifier)
  147. {
  148. return this->methods.find(_methodIdentifier) != this->methods.end();
  149. }