]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
PLUGINSDIR relocation.
authorAndrea Zagli <azagli@libero.it>
Sat, 24 Sep 2016 10:00:00 +0000 (10:00 +0000)
committerAndrea Zagli <azagli@libero.it>
Sat, 24 Sep 2016 09:09:29 +0000 (11:09 +0200)
src/confi.c

index 39d1efdd4b932485bd56233db400d46b906a6ec9..930455035c5b9f300f4ebeb3f78051f90e00e7d2 100644 (file)
 
 #include <string.h>
 
+#include <glib.h>
+
+#ifdef G_OS_WIN32
+#include <windows.h>
+#endif
+
 #include "libzakconfi.h"
 
 
+static gchar *pluginsdir;
+
 enum
 {
        PROP_0,
@@ -64,6 +72,30 @@ struct _ZakConfiPrivate
 
 G_DEFINE_TYPE (ZakConfi, zak_confi, G_TYPE_OBJECT)
 
+#ifdef G_OS_WIN32
+static HMODULE backend_dll = NULL;
+
+BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved);
+
+BOOL WINAPI
+DllMain (HINSTANCE hinstDLL,
+         DWORD     fdwReason,
+         LPVOID    lpReserved)
+{
+       switch (fdwReason)
+               {
+                       case DLL_PROCESS_ATTACH:
+                               backend_dll = (HMODULE) hinstDLL;
+                               break;
+                       case DLL_THREAD_ATTACH:
+                       case DLL_THREAD_DETACH:
+                       case DLL_PROCESS_DETACH:
+                               break;
+               }
+       return TRUE;
+}
+#endif
+
 static void
 zak_confi_class_init (ZakConfiClass *klass)
 {
@@ -100,7 +132,7 @@ static ZakConfiPluggable
                        return NULL;
                }
 
-       peas_engine_add_search_path (peas_engine, PLUGINSDIR, NULL);
+       peas_engine_add_search_path (peas_engine, pluginsdir, NULL);
 
        lst_plugins = peas_engine_get_plugin_list (peas_engine);
        while (lst_plugins)
@@ -151,6 +183,33 @@ ZakConfi
 
        g_return_val_if_fail (cnc_string != NULL, NULL);
 
+#ifdef G_OS_WIN32
+
+       gchar *moddir;
+       gchar *p;
+
+       moddir = g_win32_get_package_installation_directory_of_module (backend_dll);
+
+       p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR));
+       if (p != NULL
+           && (g_ascii_strcasecmp (p + 1, "src") == 0
+           || g_ascii_strcasecmp (p + 1, ".libs") == 0))
+               {
+                       pluginsdir = g_strdup (PLUGINSDIR);
+               }
+       else
+               {
+                       pluginsdir = g_build_filename (moddir, "lib", PACKAGE, "plugins", NULL);
+               }
+
+#undef PLUGINSDIR
+
+#else
+
+       pluginsdir = g_strdup (PLUGINSDIR);
+
+#endif
+
        confi = NULL;
 
        pluggable = zak_confi_get_confi_pluggable_from_cnc_string (cnc_string);