Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
2.4KB

  1. /*
  2. * Carla library utils
  3. * Copyright (C) 2011-2013 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the GPL.txt file
  16. */
  17. #ifndef __CARLA_LIB_UTILS_HPP__
  18. #define __CARLA_LIB_UTILS_HPP__
  19. #include "CarlaUtils.hpp"
  20. #ifndef CARLA_OS_WIN
  21. # include <dlfcn.h>
  22. #endif
  23. // -------------------------------------------------
  24. // library related calls
  25. static inline
  26. void* lib_open(const char* const filename)
  27. {
  28. CARLA_ASSERT(filename != nullptr);
  29. #ifdef CARLA_OS_WIN
  30. return (void*)LoadLibraryA(filename);
  31. #else
  32. return dlopen(filename, RTLD_NOW|RTLD_LOCAL);
  33. #endif
  34. }
  35. static inline
  36. bool lib_close(void* const lib)
  37. {
  38. CARLA_ASSERT(lib != nullptr);
  39. if (lib == nullptr)
  40. return false;
  41. #ifdef CARLA_OS_WIN
  42. return FreeLibrary((HMODULE)lib);
  43. #else
  44. return (dlclose(lib) == 0);
  45. #endif
  46. }
  47. static inline
  48. void* lib_symbol(void* const lib, const char* const symbol)
  49. {
  50. CARLA_ASSERT(lib != nullptr);
  51. CARLA_ASSERT(symbol != nullptr);
  52. if (lib == nullptr && symbol == nullptr)
  53. return nullptr;
  54. #ifdef CARLA_OS_WIN
  55. return (void*)GetProcAddress((HMODULE)lib, symbol);
  56. #else
  57. return dlsym(lib, symbol);
  58. #endif
  59. }
  60. static inline
  61. const char* lib_error(const char* const filename)
  62. {
  63. CARLA_ASSERT(filename != nullptr);
  64. #ifdef CARLA_OS_WIN
  65. static char libError[2048];
  66. //carla_fill<char>(libError, 2048, '\0');
  67. LPVOID winErrorString;
  68. DWORD winErrorCode = GetLastError();
  69. FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_IGNORE_INSERTS, nullptr, winErrorCode, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR)&winErrorString, 0, nullptr);
  70. std::snprintf(libError, 2048, "%s: error code %li: %s", filename, winErrorCode, (const char*)winErrorString);
  71. LocalFree(winErrorString);
  72. return libError;
  73. #else
  74. return dlerror();
  75. // unused
  76. (void)filename;
  77. #endif
  78. }
  79. // -------------------------------------------------
  80. #endif // __CARLA_LIB_UTILS_HPP__