|
- /*
- ==============================================================================
-
- 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.
-
- By using JUCE, you agree to the terms of both the JUCE 5 End-User License
- Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
- 27th April 2017).
-
- End User License Agreement: www.juce.com/juce-5-licence
- Privacy Policy: www.juce.com/juce-5-privacy-policy
-
- Or: You may also use this code under the terms of the GPL v3 (see
- www.gnu.org/licenses).
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- #pragma once
-
-
- //==============================================================================
- /**
- An OSC argument.
-
- An OSC argument is a value of one of the following types: int32, float32, string,
- or blob (raw binary data).
-
- OSCMessage objects are essentially arrays of OSCArgument objects.
- */
- class JUCE_API OSCArgument
- {
- public:
- /** Constructs an OSCArgument with type int32 and a given value. */
- OSCArgument (int32 value) noexcept;
-
- /** Constructs an OSCArgument with type float32 and a given value. */
- OSCArgument (float value) noexcept;
-
- /** Constructs an OSCArgument with type string and a given value */
- OSCArgument (const String& value) noexcept;
-
- /** Constructs an OSCArgument with type blob and copies dataSize bytes
- from the memory pointed to by data into the blob.
-
- The data owned by the blob will be released when the OSCArgument object
- gets destructed.
- */
- OSCArgument (const MemoryBlock& blob);
-
- /** Returns the type of the OSCArgument as an OSCType.
- OSCType is a char type, and its value will be the OSC type tag of the type.
- */
- OSCType getType() const noexcept { return type; }
-
- /** Returns whether the type of the OSCArgument is int32. */
- bool isInt32() const noexcept { return type == OSCTypes::int32; }
-
- /** Returns whether the type of the OSCArgument is int32. */
- bool isFloat32() const noexcept { return type == OSCTypes::float32; }
-
- /** Returns whether the type of the OSCArgument is int32. */
- bool isString() const noexcept { return type == OSCTypes::string; }
-
- /** Returns whether the type of the OSCArgument is int32. */
- bool isBlob() const noexcept { return type == OSCTypes::blob; }
-
- /** Returns the value of the OSCArgument as an int32.
- If the type of the OSCArgument is not int32, the behaviour is undefined.
- */
- int32 getInt32() const noexcept;
-
- /** Returns the value of the OSCArgument as a float32.
- If the type of the OSCArgument is not float32, the behaviour is undefined.
- */
- float getFloat32() const noexcept;
-
- /** Returns the value of the OSCArgument as a string.
- If the type of the OSCArgument is not string, the behaviour is undefined.
- */
- String getString() const noexcept;
-
- /** Returns the binary data contained in the blob and owned by the OSCArgument,
- as a reference to a Juce MemoryBlock object.
-
- If the type of the OSCArgument is not blob, the behaviour is undefined.
- */
- const MemoryBlock& getBlob() const noexcept;
-
-
- private:
- //==============================================================================
- OSCType type;
-
- union
- {
- int32 intValue;
- float floatValue;
- };
-
- String stringValue;
- MemoryBlock blob;
- };
|