2018-06-17 20:34:53 +08:00
|
|
|
/*
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
This file is part of the JUCE library.
|
|
|
|
Copyright (c) 2017 - ROLI Ltd.
|
|
|
|
|
|
|
|
JUCE is an open source library subject to commercial or open-source
|
|
|
|
licensing.
|
|
|
|
|
|
|
|
The code included in this file is provided under the terms of the ISC license
|
|
|
|
http://www.isc.org/downloads/software-support-policy/isc-license. Permission
|
|
|
|
To use, copy, modify, and/or distribute this software for any purpose with or
|
|
|
|
without fee is hereby granted provided that the above copyright notice and
|
|
|
|
this permission notice appear in all copies.
|
|
|
|
|
|
|
|
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
|
|
|
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
|
|
|
DISCLAIMED.
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace juce
|
|
|
|
{
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
/**
|
|
|
|
A lightweight object that can create a stream to read some kind of resource.
|
|
|
|
|
|
|
|
This may be used to refer to a file, or some other kind of source, allowing a
|
|
|
|
caller to create an input stream that can read from it when required.
|
|
|
|
|
|
|
|
@see FileInputSource
|
|
|
|
|
|
|
|
@tags{Core}
|
|
|
|
*/
|
|
|
|
class JUCE_API InputSource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//==============================================================================
|
2019-06-23 03:41:38 +08:00
|
|
|
InputSource() = default;
|
2018-06-17 20:34:53 +08:00
|
|
|
|
|
|
|
/** Destructor. */
|
2019-06-23 03:41:38 +08:00
|
|
|
virtual ~InputSource() = default;
|
2018-06-17 20:34:53 +08:00
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
/** Returns a new InputStream to read this item.
|
|
|
|
|
|
|
|
@returns an inputstream that the caller will delete, or nullptr if
|
|
|
|
the filename isn't found.
|
|
|
|
*/
|
|
|
|
virtual InputStream* createInputStream() = 0;
|
|
|
|
|
|
|
|
/** Returns a new InputStream to read an item, relative.
|
|
|
|
|
|
|
|
@param relatedItemPath the relative pathname of the resource that is required
|
|
|
|
@returns an inputstream that the caller will delete, or nullptr if
|
|
|
|
the item isn't found.
|
|
|
|
*/
|
|
|
|
virtual InputStream* createInputStreamFor (const String& relatedItemPath) = 0;
|
|
|
|
|
|
|
|
/** Returns a hash code that uniquely represents this item.
|
|
|
|
*/
|
|
|
|
virtual int64 hashCode() const = 0;
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
//==============================================================================
|
|
|
|
JUCE_LEAK_DETECTOR (InputSource)
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace juce
|