JniApi.cpp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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-23
  7. *
  8. * */
  9. #include <ls-std/core/evaluator/RawNullPointerArgumentEvaluator.hpp>
  10. #include <ls-std/core/jni/JniApi.hpp>
  11. using ls::std::core::RawNullPointerArgumentEvaluator;
  12. using ls::std::core::experimental::JniApi;
  13. using ls::std::core::type::RawPointer;
  14. using std::string;
  15. JniApi::JniApi(JNIEnv *_environment) : environment(_environment)
  16. {
  17. RawNullPointerArgumentEvaluator<JNIEnv>{RawPointer<JNIEnv>{_environment}, "Java environment is not being provided!"}.evaluate();
  18. }
  19. JniApi::~JniApi() noexcept = default;
  20. jboolean JniApi::callBooleanMethod(jobject _javaObject, jmethodID _methodId)
  21. {
  22. return this->environment->CallBooleanMethod(_javaObject, _methodId);
  23. }
  24. jbyte JniApi::callByteMethod(jobject _javaObject, jmethodID _methodId)
  25. {
  26. return this->environment->CallByteMethod(_javaObject, _methodId);
  27. }
  28. jchar JniApi::callCharMethod(jobject _javaObject, jmethodID _methodId)
  29. {
  30. return this->environment->CallCharMethod(_javaObject, _methodId);
  31. }
  32. jdouble JniApi::callDoubleMethod(jobject _javaObject, jmethodID _methodId)
  33. {
  34. return this->environment->CallDoubleMethod(_javaObject, _methodId);
  35. }
  36. jfloat JniApi::callFloatMethod(jobject _javaObject, jmethodID _methodId)
  37. {
  38. return this->environment->CallFloatMethod(_javaObject, _methodId);
  39. }
  40. jint JniApi::callIntMethod(jobject _javaObject, jmethodID _methodId)
  41. {
  42. return this->environment->CallIntMethod(_javaObject, _methodId);
  43. }
  44. jlong JniApi::callLongMethod(jobject _javaObject, jmethodID _methodId)
  45. {
  46. return this->environment->CallLongMethod(_javaObject, _methodId);
  47. }
  48. jshort JniApi::callShortMethod(jobject _javaObject, jmethodID _methodId)
  49. {
  50. return this->environment->CallShortMethod(_javaObject, _methodId);
  51. }
  52. jclass JniApi::findClass(const string &_classPath)
  53. {
  54. return this->environment->FindClass(_classPath.c_str());
  55. }
  56. jmethodID JniApi::getMethodId(jclass _javaClass, const char *_methodIdentifier, const char *_methodSignature)
  57. {
  58. return this->environment->GetMethodID(_javaClass, _methodIdentifier, _methodSignature);
  59. }