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.

76 lines
2.8KB

  1. /*
  2. * Carla DSSI utils
  3. * Copyright (C) 2013-2018 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 doc/GPL.txt file.
  16. */
  17. #include "CarlaDssiUtils.hpp"
  18. #include "water/files/File.h"
  19. // --------------------------------------------------------------------------------------------------------------------
  20. const char* find_dssi_ui(const char* const filename, const char* const label) noexcept
  21. {
  22. CARLA_SAFE_ASSERT_RETURN(filename != nullptr && filename[0] != '\0', nullptr);
  23. CARLA_SAFE_ASSERT_RETURN(label != nullptr && label[0] != '\0', nullptr);
  24. carla_debug("find_dssi_ui(\"%s\", \"%s\")", filename, label);
  25. try {
  26. water::String guiFilename;
  27. water::String pluginDir(water::String(filename).upToLastOccurrenceOf(".", false, false));
  28. water::String checkLabel(label);
  29. water::String checkSName(water::File(pluginDir).getFileName());
  30. if (checkSName.endsWithIgnoreCase("dssi"))
  31. {
  32. checkSName = checkSName.dropLastCharacters(4);
  33. if (checkSName.endsWithChar('-'))
  34. checkSName = checkSName.dropLastCharacters(1);
  35. }
  36. if (! checkLabel.endsWithChar('_')) checkLabel += "_";
  37. if (! checkSName.endsWithChar('_')) checkSName += "_";
  38. std::vector<water::File> results;
  39. if (const uint count = water::File(pluginDir).findChildFiles(results,
  40. water::File::findFiles|water::File::ignoreHiddenFiles,
  41. false))
  42. {
  43. for (uint i=0; i<count; ++i)
  44. {
  45. const water::File& gui(results[i]);
  46. const water::String& guiShortName(gui.getFileName());
  47. if (guiShortName.startsWith(checkLabel) || guiShortName.startsWith(checkSName))
  48. {
  49. guiFilename = gui.getFullPathName();
  50. break;
  51. }
  52. }
  53. }
  54. if (guiFilename.isEmpty())
  55. return nullptr;
  56. return carla_strdup(guiFilename.toRawUTF8());
  57. } CARLA_SAFE_EXCEPTION_RETURN("find_dssi_ui", nullptr);
  58. }
  59. // --------------------------------------------------------------------------------------------------------------------