hdfsJniHelper.h
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. #ifndef LIBHDFS_JNI_HELPER_H
  19. #define LIBHDFS_JNI_HELPER_H
  20. #include <jni.h>
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <stdarg.h>
  24. #include <search.h>
  25. #include <pthread.h>
  26. #include <errno.h>
  27. #define PATH_SEPARATOR ':'
  28. #define USER_CLASSPATH "/home/y/libexec/hadoop/conf:/home/y/libexec/hadoop/lib/hadoop-0.1.0.jar"
  29. /** Denote the method we want to invoke as STATIC or INSTANCE */
  30. typedef enum {
  31.     STATIC,
  32.     INSTANCE
  33. } MethType;
  34. /** Used for returning an appropriate return value after invoking
  35.  * a method
  36.  */
  37. typedef jvalue RetVal;
  38. /** Used for returning the exception after invoking a method */
  39. typedef jthrowable Exc;
  40. /** invokeMethod: Invoke a Static or Instance method.
  41.  * className: Name of the class where the method can be found
  42.  * methName: Name of the method
  43.  * methSignature: the signature of the method "(arg-types)ret-type"
  44.  * methType: The type of the method (STATIC or INSTANCE)
  45.  * instObj: Required if the methType is INSTANCE. The object to invoke
  46.    the method on.
  47.  * env: The JNIEnv pointer
  48.  * retval: The pointer to a union type which will contain the result of the
  49.    method invocation, e.g. if the method returns an Object, retval will be
  50.    set to that, if the method returns boolean, retval will be set to the
  51.    value (JNI_TRUE or JNI_FALSE), etc.
  52.  * exc: If the methods throws any exception, this will contain the reference
  53.  * Arguments (the method arguments) must be passed after methSignature
  54.  * RETURNS: -1 on error and 0 on success. If -1 is returned, exc will have 
  55.    a valid exception reference, and the result stored at retval is undefined.
  56.  */
  57. int invokeMethod(JNIEnv *env, RetVal *retval, Exc *exc, MethType methType,
  58.                  jobject instObj, const char *className, const char *methName, 
  59.                  const char *methSignature, ...);
  60. /** constructNewObjectOfClass: Invoke a constructor.
  61.  * className: Name of the class
  62.  * ctorSignature: the signature of the constructor "(arg-types)V"
  63.  * env: The JNIEnv pointer
  64.  * exc: If the ctor throws any exception, this will contain the reference
  65.  * Arguments to the ctor must be passed after ctorSignature 
  66.  */
  67. jobject constructNewObjectOfClass(JNIEnv *env, Exc *exc, const char *className, 
  68.                                   const char *ctorSignature, ...);
  69. jmethodID methodIdFromClass(const char *className, const char *methName, 
  70.                             const char *methSignature, MethType methType, 
  71.                             JNIEnv *env);
  72. jclass globalClassReference(const char *className, JNIEnv *env);
  73. /** classNameOfObject: Get an object's class name.
  74.  * @param jobj: The object.
  75.  * @param env: The JNIEnv pointer.
  76.  * @return Returns a pointer to a string containing the class name. This string
  77.  * must be freed by the caller.
  78.  */
  79. char *classNameOfObject(jobject jobj, JNIEnv *env);
  80. /** getJNIEnv: A helper function to get the JNIEnv* for the given thread.
  81.  * If no JVM exists, then one will be created. JVM command line arguments
  82.  * are obtained from the LIBHDFS_OPTS environment variable.
  83.  * @param: None.
  84.  * @return The JNIEnv* corresponding to the thread.
  85.  * */
  86. JNIEnv* getJNIEnv(void);
  87. jarray constructNewArrayString(JNIEnv *env, Exc *exc, const char **elements, int size) ;
  88. #endif /*LIBHDFS_JNI_HELPER_H*/
  89. /**
  90.  * vim: ts=4: sw=4: et:
  91.  */