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.

InputSource.h 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. ==============================================================================
  3. This file is part of the Water library.
  4. Copyright (c) 2016 ROLI Ltd.
  5. Copyright (C) 2017 Filipe Coelho <falktx@falktx.com>
  6. Permission is granted to use this software under the terms of the ISC license
  7. http://www.isc.org/downloads/software-support-policy/isc-license/
  8. Permission to use, copy, modify, and/or distribute this software for any
  9. purpose with or without fee is hereby granted, provided that the above
  10. copyright notice and this permission notice appear in all copies.
  11. THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
  12. TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  13. FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
  14. OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  15. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  17. OF THIS SOFTWARE.
  18. ==============================================================================
  19. */
  20. #ifndef JUCE_INPUTSOURCE_H_INCLUDED
  21. #define JUCE_INPUTSOURCE_H_INCLUDED
  22. #include "../water.h"
  23. namespace water {
  24. //==============================================================================
  25. /**
  26. A lightweight object that can create a stream to read some kind of resource.
  27. This may be used to refer to a file, or some other kind of source, allowing a
  28. caller to create an input stream that can read from it when required.
  29. @see FileInputSource
  30. */
  31. class InputSource
  32. {
  33. public:
  34. //==============================================================================
  35. InputSource() noexcept {}
  36. /** Destructor. */
  37. virtual ~InputSource() {}
  38. //==============================================================================
  39. /** Returns a new InputStream to read this item.
  40. @returns an inputstream that the caller will delete, or nullptr if
  41. the filename isn't found.
  42. */
  43. virtual InputStream* createInputStream() = 0;
  44. /** Returns a new InputStream to read an item, relative.
  45. @param relatedItemPath the relative pathname of the resource that is required
  46. @returns an inputstream that the caller will delete, or nullptr if
  47. the item isn't found.
  48. */
  49. virtual InputStream* createInputStreamFor (const String& relatedItemPath) = 0;
  50. #if 0
  51. /** Returns a hash code that uniquely represents this item.
  52. */
  53. virtual int64 hashCode() const = 0;
  54. #endif
  55. };
  56. }
  57. #endif // JUCE_INPUTSOURCE_H_INCLUDED