/src/mongo/embedded/mongo_embedded/java/src/com/mongodb/embedded/capi/internal/CAPI.java

https://github.com/mongodb/mongo · Java · 168 lines · 101 code · 37 blank · 30 comment · 0 complexity · 9a1d692e6bf98638eef065f9ad68204d MD5 · raw file

  1. /**
  2. * Copyright (C) 2018-present MongoDB, Inc.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the Server Side Public License, version 1,
  6. * as published by MongoDB, Inc.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * Server Side Public License for more details.
  12. *
  13. * You should have received a copy of the Server Side Public License
  14. * along with this program. If not, see
  15. * <http://www.mongodb.com/licensing/server-side-public-license>.
  16. *
  17. * As a special exception, the copyright holders give permission to link the
  18. * code of portions of this program with the OpenSSL library under certain
  19. * conditions as described in each individual source file and distribute
  20. * linked combinations including the program with the OpenSSL library. You
  21. * must comply with the Server Side Public License in all respects for
  22. * all of the code used other than as permitted herein. If you modify file(s)
  23. * with this exception, you may extend this exception to your version of the
  24. * file(s), but you are not obligated to do so. If you do not wish to do so,
  25. * delete this exception statement from your version. If you delete this
  26. * exception statement from all source files in the program, then also delete
  27. * it in the license file.
  28. */
  29. package com.mongodb.embedded.capi.internal;
  30. import com.sun.jna.Callback;
  31. import com.sun.jna.Memory;
  32. import com.sun.jna.Native;
  33. import com.sun.jna.NativeLong;
  34. import com.sun.jna.Pointer;
  35. import com.sun.jna.PointerType;
  36. import com.sun.jna.Structure;
  37. import com.sun.jna.ptr.NativeLongByReference;
  38. import com.sun.jna.ptr.PointerByReference;
  39. import java.util.Arrays;
  40. import java.util.List;
  41. //CHECKSTYLE:OFF
  42. public class CAPI {
  43. public static class cstring extends PointerType {
  44. public cstring() {
  45. super();
  46. }
  47. public cstring(Pointer address) {
  48. super(address);
  49. }
  50. public cstring(String string) {
  51. Pointer m = new Memory(string.length() + 1);
  52. m.setString(0, string);
  53. setPointer(m);
  54. }
  55. public String toString() {
  56. return getPointer().getString(0);
  57. }
  58. }
  59. public static class mongo_embedded_v1_status extends PointerType {
  60. public mongo_embedded_v1_status() {
  61. super();
  62. }
  63. public mongo_embedded_v1_status(Pointer address) {
  64. super(address);
  65. }
  66. }
  67. public static class mongo_embedded_v1_lib extends PointerType {
  68. public mongo_embedded_v1_lib() {
  69. super();
  70. }
  71. public mongo_embedded_v1_lib(Pointer address) {
  72. super(address);
  73. }
  74. }
  75. public static class mongo_embedded_v1_instance extends PointerType {
  76. public mongo_embedded_v1_instance() {
  77. super();
  78. }
  79. public mongo_embedded_v1_instance(Pointer address) {
  80. super(address);
  81. }
  82. }
  83. public static class mongo_embedded_v1_client extends PointerType {
  84. public mongo_embedded_v1_client() {
  85. super();
  86. }
  87. public mongo_embedded_v1_client(Pointer address) {
  88. super(address);
  89. }
  90. }
  91. public static class mongo_embedded_v1_init_params extends Structure {
  92. public cstring yaml_config;
  93. public long log_flags;
  94. public mongo_embedded_v1_log_callback log_callback;
  95. public Pointer log_user_data;
  96. public mongo_embedded_v1_init_params() {
  97. super();
  98. }
  99. protected List<String> getFieldOrder() {
  100. return Arrays.asList("yaml_config", "log_flags", "log_callback",
  101. "log_user_data");
  102. }
  103. public static class ByReference extends mongo_embedded_v1_init_params
  104. implements Structure.ByReference {
  105. }
  106. }
  107. public interface mongo_embedded_v1_log_callback extends Callback {
  108. void log(Pointer user_data, cstring message, cstring component, cstring context, int severity);
  109. }
  110. public static native mongo_embedded_v1_status mongo_embedded_v1_status_create();
  111. public static native void mongo_embedded_v1_status_destroy(mongo_embedded_v1_status status);
  112. public static native int mongo_embedded_v1_status_get_error(mongo_embedded_v1_status status);
  113. public static native cstring mongo_embedded_v1_status_get_explanation(mongo_embedded_v1_status status);
  114. public static native int mongo_embedded_v1_status_get_code(mongo_embedded_v1_status status);
  115. public static native mongo_embedded_v1_lib mongo_embedded_v1_lib_init(mongo_embedded_v1_init_params.ByReference init_params,
  116. mongo_embedded_v1_status status);
  117. public static native int mongo_embedded_v1_lib_fini(mongo_embedded_v1_lib lib, mongo_embedded_v1_status status);
  118. public static native mongo_embedded_v1_instance mongo_embedded_v1_instance_create(mongo_embedded_v1_lib lib, cstring yaml_config,
  119. mongo_embedded_v1_status status);
  120. public static native int mongo_embedded_v1_instance_destroy(mongo_embedded_v1_instance instance, mongo_embedded_v1_status status);
  121. public static native mongo_embedded_v1_client mongo_embedded_v1_client_create(mongo_embedded_v1_instance instance,
  122. mongo_embedded_v1_status status);
  123. public static native int mongo_embedded_v1_client_destroy(mongo_embedded_v1_client client, mongo_embedded_v1_status status);
  124. public static native int mongo_embedded_v1_client_invoke(mongo_embedded_v1_client client, Pointer input, NativeLong size,
  125. PointerByReference output, NativeLongByReference output_size,
  126. mongo_embedded_v1_status status);
  127. static {
  128. Native.register(CAPI.class, "mongo_embedded");
  129. }
  130. }
  131. //CHECKSTYLE:ON