JniClass.cpp 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-04-07
  6. * Changed: 2023-05-16
  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) : parameter(_parameter), path(_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. ConditionalFunctionExecutor{_parameter->getJniApi() == nullptr}.execute([this]() { _createJniApi(); });
  36. }
  37. JniClass::~JniClass() = default;
  38. JniReturnValue JniClass::callMethod(const string &_methodIdentifier)
  39. {
  40. JniReturnValue returnValue{};
  41. if (this->_hasMethod(_methodIdentifier))
  42. {
  43. this->_callBooleanMethod(_methodIdentifier, returnValue);
  44. this->_callByteMethod(_methodIdentifier, returnValue);
  45. this->_callCharMethod(_methodIdentifier, returnValue);
  46. this->_callDoubleMethod(_methodIdentifier, returnValue);
  47. this->_callFloatMethod(_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::_callDoubleMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  110. {
  111. JniMethod method = this->methods.at(_methodIdentifier);
  112. string searchString = ")D";
  113. string methodSignature = method.getMethodSignature();
  114. bool hasDoubleReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  115. if (hasDoubleReturnType)
  116. {
  117. _returnValue.setDoubleValue(this->parameter->getJniApi()->callDoubleMethod(this->parameter->getJavaObject(), method.getMethodId()));
  118. }
  119. }
  120. void JniClass::_callFloatMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  121. {
  122. JniMethod method = this->methods.at(_methodIdentifier);
  123. string searchString = ")F";
  124. string methodSignature = method.getMethodSignature();
  125. bool hasFloatReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  126. if (hasFloatReturnType)
  127. {
  128. _returnValue.setFloatValue(this->parameter->getJniApi()->callFloatMethod(this->parameter->getJavaObject(), method.getMethodId()));
  129. }
  130. }
  131. void JniClass::_callIntMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  132. {
  133. JniMethod method = this->methods.at(_methodIdentifier);
  134. string searchString = ")I";
  135. string methodSignature = method.getMethodSignature();
  136. bool hasIntegerReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  137. if (hasIntegerReturnType)
  138. {
  139. _returnValue.setIntegerValue(this->parameter->getJniApi()->callIntMethod(this->parameter->getJavaObject(), method.getMethodId()));
  140. }
  141. }
  142. void JniClass::_callLongMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  143. {
  144. JniMethod method = this->methods.at(_methodIdentifier);
  145. string searchString = ")J";
  146. string methodSignature = method.getMethodSignature();
  147. bool hasLongReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  148. if (hasLongReturnType)
  149. {
  150. _returnValue.setLongValue(this->parameter->getJniApi()->callLongMethod(this->parameter->getJavaObject(), method.getMethodId()));
  151. }
  152. }
  153. void JniClass::_callShortMethod(const string &_methodIdentifier, JniReturnValue &_returnValue)
  154. {
  155. JniMethod method = this->methods.at(_methodIdentifier);
  156. string searchString = ")S";
  157. string methodSignature = method.getMethodSignature();
  158. bool hasShortReturnType = methodSignature.rfind(searchString) == (methodSignature.size() - searchString.size());
  159. if (hasShortReturnType)
  160. {
  161. _returnValue.setShortValue(this->parameter->getJniApi()->callShortMethod(this->parameter->getJavaObject(), method.getMethodId()));
  162. }
  163. }
  164. void JniClass::_createJniApi() const
  165. {
  166. this->parameter->setJniApi(make_shared<JniApi>(this->parameter->getJavaEnvironment()));
  167. }
  168. bool JniClass::_hasMethod(const string &_methodIdentifier)
  169. {
  170. return this->methods.find(_methodIdentifier) != this->methods.end();
  171. }