com.sun.jna.Function.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(7.2k)|赞(0)|评价(0)|浏览(320)

本文整理了Java中com.sun.jna.Function.<init>()方法的一些代码示例,展示了Function.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Function.<init>()方法的具体详情如下:
包路径:com.sun.jna.Function
类名称:Function
方法名:<init>

Function.<init>介绍

[英]Create a new Function that is linked with a native function that follows the given calling convention.

The allocated instance represents a pointer to the named native function from the supplied library, called with the given calling convention.
[中]创建与遵循给定调用约定的本机函数链接的新Function
分配的实例表示指向所提供库中的命名本机函数的指针,该函数使用给定的调用约定进行调用。

代码示例

代码示例来源:origin: net.java.dev.jna/jna

  1. /**
  2. * Obtain a <code>Function</code> representing a native
  3. * function pointer. In general, this function should be used by dynamic
  4. * languages; Java code should allow JNA to bind to a specific Callback
  5. * interface instead by defining a return type or Structure field type.
  6. *
  7. * <p>The allocated instance represents a pointer to the native
  8. * function pointer.
  9. *
  10. * @param p
  11. * Native function pointer
  12. * @param callFlags
  13. * Function <a href="#callflags">call flags</a>
  14. * @param encoding
  15. * Encoding to use for conversion between Java and native
  16. * strings.
  17. */
  18. public static Function getFunction(Pointer p, int callFlags, String encoding) {
  19. return new Function(p, callFlags, encoding);
  20. }

代码示例来源:origin: net.java.dev.jna/jna

  1. public NativeFunctionHandler(Pointer address, int callingConvention, Map<String, ?> options) {
  2. this.options = options;
  3. this.function = new Function(address, callingConvention, (String) options.get(Library.OPTION_STRING_ENCODING));
  4. }

代码示例来源:origin: net.java.dev.jna/jna

  1. /**
  2. * Create a new {@link Function} that is linked with a native
  3. * function that follows a given calling flags.
  4. *
  5. * @param functionName
  6. * Name of the native function to be linked with
  7. * @param callFlags
  8. * Flags affecting the function invocation
  9. * @param encoding
  10. * Encoding to use to convert between Java and native
  11. * strings.
  12. * @throws UnsatisfiedLinkError if the function is not found
  13. */
  14. public Function getFunction(String functionName, int callFlags, String encoding) {
  15. if (functionName == null) {
  16. throw new NullPointerException("Function name may not be null");
  17. }
  18. synchronized (functions) {
  19. String key = functionKey(functionName, callFlags, encoding);
  20. Function function = functions.get(key);
  21. if (function == null) {
  22. function = new Function(this, functionName, callFlags, encoding);
  23. functions.put(key, function);
  24. }
  25. return function;
  26. }
  27. }

代码示例来源:origin: net.java.dev.jna/jna

  1. private NativeLibrary(String libraryName, String libraryPath, long handle, Map<String, ?> options) {
  2. this.libraryName = getLibraryName(libraryName);
  3. this.libraryPath = libraryPath;
  4. this.handle = handle;
  5. Object option = options.get(Library.OPTION_CALLING_CONVENTION);
  6. int callingConvention = option instanceof Number ? ((Number)option).intValue() : Function.C_CONVENTION;
  7. this.callFlags = callingConvention;
  8. this.options = options;
  9. this.encoding = (String)options.get(Library.OPTION_STRING_ENCODING);
  10. if (this.encoding == null) {
  11. this.encoding = Native.getDefaultStringEncoding();
  12. }
  13. // Special workaround for w32 kernel32.GetLastError
  14. // Short-circuit the function to use built-in GetLastError access
  15. if (Platform.isWindows() && "kernel32".equals(this.libraryName.toLowerCase())) {
  16. synchronized(functions) {
  17. Function f = new Function(this, "GetLastError", Function.ALT_CONVENTION, encoding) {
  18. @Override
  19. Object invoke(Object[] args, Class<?> returnType, boolean b, int fixedArgs) {
  20. return Integer.valueOf(Native.getLastError());
  21. }
  22. @Override
  23. Object invoke(Method invokingMethod, Class<?>[] paramTypes, Class<?> returnType, Object[] inArgs, Map<String, ?> options) {
  24. return Integer.valueOf(Native.getLastError());
  25. }
  26. };
  27. functions.put(functionKey("GetLastError", callFlags, encoding), f);
  28. }
  29. }
  30. }

代码示例来源:origin: org.elasticsearch/jna

  1. /**
  2. * Obtain a <code>Function</code> representing a native
  3. * function pointer. In general, this function should be used by dynamic
  4. * languages; Java code should allow JNA to bind to a specific Callback
  5. * interface instead by defining a return type or Structure field type.
  6. *
  7. * <p>The allocated instance represents a pointer to the native
  8. * function pointer.
  9. *
  10. * @param p
  11. * Native function pointer
  12. * @param callFlags
  13. * Function <a href="#callflags">call flags</a>
  14. * @param encoding
  15. * Encoding to use for conversion between Java and native
  16. * strings.
  17. */
  18. public static Function getFunction(Pointer p, int callFlags, String encoding) {
  19. return new Function(p, callFlags, encoding);
  20. }

代码示例来源:origin: org.elasticsearch/jna

  1. public NativeFunctionHandler(Pointer address, int callingConvention, Map<String, ?> options) {
  2. this.options = options;
  3. this.function = new Function(address, callingConvention, (String) options.get(Library.OPTION_STRING_ENCODING));
  4. }

代码示例来源:origin: com.sun.jna/jna

  1. private NativeLibrary(String libraryName, String libraryPath, long handle) {
  2. this.libraryName = getLibraryName(libraryName);
  3. this.libraryPath = libraryPath;
  4. this.handle = handle;
  5. // Special workaround for w32 kernel32.GetLastError
  6. // Short-circuit the function to use built-in GetLastError access
  7. if (Platform.isWindows() && "kernel32".equals(this.libraryName.toLowerCase())) {
  8. synchronized(functions) {
  9. Function f = new Function(this, "GetLastError", Function.ALT_CONVENTION) {
  10. Object invoke(Object[] args, Class returnType) {
  11. return new Integer(Native.getLastError());
  12. }
  13. };
  14. functions.put("GetLastError", f);
  15. }
  16. }
  17. }

代码示例来源:origin: org.elasticsearch/jna

  1. /**
  2. * Create a new {@link Function} that is linked with a native
  3. * function that follows a given calling flags.
  4. *
  5. * @param functionName
  6. * Name of the native function to be linked with
  7. * @param callFlags
  8. * Flags affecting the function invocation
  9. * @param encoding
  10. * Encoding to use to convert between Java and native
  11. * strings.
  12. * @throws UnsatisfiedLinkError if the function is not found
  13. */
  14. public Function getFunction(String functionName, int callFlags, String encoding) {
  15. if (functionName == null) {
  16. throw new NullPointerException("Function name may not be null");
  17. }
  18. synchronized (functions) {
  19. String key = functionKey(functionName, callFlags, encoding);
  20. Function function = functions.get(key);
  21. if (function == null) {
  22. function = new Function(this, functionName, callFlags, encoding);
  23. functions.put(key, function);
  24. }
  25. return function;
  26. }
  27. }

代码示例来源:origin: org.elasticsearch/jna

  1. private NativeLibrary(String libraryName, String libraryPath, long handle, Map<String, ?> options) {
  2. this.libraryName = getLibraryName(libraryName);
  3. this.libraryPath = libraryPath;
  4. this.handle = handle;
  5. Object option = options.get(Library.OPTION_CALLING_CONVENTION);
  6. int callingConvention = option instanceof Number ? ((Number)option).intValue() : Function.C_CONVENTION;
  7. this.callFlags = callingConvention;
  8. this.options = options;
  9. this.encoding = (String)options.get(Library.OPTION_STRING_ENCODING);
  10. if (this.encoding == null) {
  11. this.encoding = Native.getDefaultStringEncoding();
  12. }
  13. // Special workaround for w32 kernel32.GetLastError
  14. // Short-circuit the function to use built-in GetLastError access
  15. if (Platform.isWindows() && "kernel32".equals(this.libraryName.toLowerCase())) {
  16. synchronized(functions) {
  17. Function f = new Function(this, "GetLastError", Function.ALT_CONVENTION, encoding) {
  18. @Override
  19. Object invoke(Object[] args, Class<?> returnType, boolean b, int fixedArgs) {
  20. return Integer.valueOf(Native.getLastError());
  21. }
  22. @Override
  23. Object invoke(Method invokingMethod, Class<?>[] paramTypes, Class<?> returnType, Object[] inArgs, Map<String, ?> options) {
  24. return Integer.valueOf(Native.getLastError());
  25. }
  26. };
  27. functions.put(functionKey("GetLastError", callFlags, encoding), f);
  28. }
  29. }
  30. }

代码示例来源:origin: com.sun.jna/jna

  1. Function function = (Function) functions.get(functionName);
  2. if (function == null) {
  3. function = new Function(this, functionName, callingConvention);
  4. functions.put(functionName, function);

相关文章