yugoslavia significado peru example ejemplos java api jni jna

java - significado - JNA: no se pudo encontrar el procedimiento especificado



jna significado (2)

Estaba intentando aprender cómo funciona JNA, así que decidí usar la API de Spotify (libspotify 0.0.7). Pude cargar mi dll correctamente, pero luego parece que mi código no encuentra ninguno de los métodos definidos en la API.

Aquí está mi código:

Mi archivo principal:

public class Test{ private static final int SPOTIFY_API_VERSION = 7; private static final char[] APP_KEY = { /* MY APP KEY HERE */ }; static{ System.loadLibrary("libspotify"); } public static void main(String[] args){ JLibspotify libs = JLibspotify.INSTANCE; sp_session mySession = new sp_session(); sp_session_config cfg = new sp_session_config(); cfg.api_version = SPOTIFY_API_VERSION; cfg.cache_location = "tmp"; cfg.settings_location = "tmp"; cfg.application_key = APP_KEY; cfg.application_key_size = APP_KEY.length; cfg.user_agent = "spshell"; cfg.callbacks = null; libs.sp_session_create(cfg, mySession); } }

La interfaz de mi biblioteca:

public interface JLibspotify extends Library { JLibspotify INSTANCE = (JLibspotify)Native.loadLibrary("libspotify", JLibspotify.class); // Methods definitions sp_error sp_session_create(sp_session_config config, sp_session sess); }

Mi objeto sp_session (estructura C opaca)

public class sp_session extends PointerType{ public sp_session(Pointer address) { super(address); } public sp_session() { super(); } }

Mi objeto sp_session_config

public class sp_session_config extends Structure{ public int api_version; // The version of the Spotify API your application is compiled with. public String cache_location; public String settings_location; public char[] application_key}; // Your application key. public int application_key_size; // The size of the application key in bytes public String user_agent; public sp_session_callbacks callbacks; // Delivery callbacks for session events. NULL if not interested in any callbacks public Pointer userdata; // User supplied data for your application public boolean compress_playlists; public boolean dont_save_metadata_for_playlists; public boolean initially_unload_playlists; }

Mi sp_error enum

public enum sp_error { SP_ERROR_OK, SP_ERROR_BAD_API_VERSION, SP_ERROR_API_INITIALIZATION_FAILED, SP_ERROR_TRACK_NOT_PLAYABLE, SP_ERROR_RESOURCE_NOT_LOADED, SP_ERROR_BAD_APPLICATION_KEY, SP_ERROR_BAD_USERNAME_OR_PASSWORD, SP_ERROR_USER_BANNED, SP_ERROR_UNABLE_TO_CONTACT_SERVER, SP_ERROR_CLIENT_TOO_OLD, SP_ERROR_OTHER_PERMANENT, SP_ERROR_BAD_USER_AGENT, SP_ERROR_MISSING_CALLBACK, SP_ERROR_INVALID_INDATA, SP_ERROR_INDEX_OUT_OF_RANGE, SP_ERROR_USER_NEEDS_PREMIUM, SP_ERROR_OTHER_TRANSIENT, SP_ERROR_IS_LOADING, SP_ERROR_NO_STREAM_AVAILABLE, SP_ERROR_PERMISSION_DENIED, SP_ERROR_INBOX_IS_FULL, SP_ERROR_NO_CACHE, SP_ERROR_NO_SUCH_USER }

Mi rastro de pila de excepción

Exception in thread "main" java.lang.UnsatisfiedLinkError: Error looking up function ''sp_session_create'': The specified procedure could not be found. at com.sun.jna.Function.<init>(Function.java:129) at com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:250) at com.sun.jna.Library$Handler.invoke(Library.java:191) at $Proxy0.sp_session_create(Unknown Source) at com.nbarraille.jspotify.main.Test.main(Test.java:49)

La declaración de C ++ del método que estoy tratando de ejecutar

/** * Initialize a session. The session returned will be initialized, but you will need * to log in before you can perform any other operation * * Here is a snippet from /c spshell.c: * @dontinclude spshell.c * @skip config.api_version * @until } * * @param[in] config The configuration to use for the session * @param[out] sess If successful, a new session - otherwise NULL * * @return One of the following errors, from ::sp_error * SP_ERROR_OK * SP_ERROR_BAD_API_VERSION * SP_ERROR_BAD_USER_AGENT * SP_ERROR_BAD_APPLICATION_KEY * SP_ERROR_API_INITIALIZATION_FAILED */ SP_LIBEXPORT(sp_error) sp_session_create(const sp_session_config *config, sp_session **sess);


By the way, I don''t have access to the definition of the sp_artist structure in C, I just reconstructed it based on the methods offered by the API, could it be the problem?

Si no tiene acceso, tampoco lo hace JNA. Si es un tipo opaco, busque funciones para crearlo, modificarlo y eliminarlo.

Además, ¿recibió un error en la declaración anterior, la definición de cinco líneas de la variable Java "artista"?


Finalmente encontré la solución abriendo libspotify.dll con Dependency Walker: el compilador agregó cierta información adicional al nombre del método (un prefijo de subrayado y un sufijo @ 4 o @ 8).

Tuve que:

  • Crear una implementación de FunctionMapper que renombró todos mis métodos según los nombres reales (disponible en Dependency Walker)
  • Crea una instancia de mi biblioteca con una instancia de este mapeador en el mapa de opciones.