mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
162 lines
5.8 KiB
C++
162 lines
5.8 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
namespace juce
|
|
{
|
|
|
|
//==============================================================================
|
|
/**
|
|
An OSC address.
|
|
|
|
This address always starts with a forward slash and has a format similar
|
|
to an URL, with several address parts separated by slashes.
|
|
|
|
Only a subset of ASCII characters are allowed in OSC addresses; see
|
|
OpenSoundControl 1.0 specification for details.
|
|
|
|
OSC addresses can be used to register ListenerWithOSCAddress objects to an
|
|
OSCReceiver if you wish them to only listen to certain messages with
|
|
matching OSC address patterns.
|
|
|
|
@see OSCReceiver, OSCAddressPattern, OSCMessage
|
|
|
|
@tags{OSC}
|
|
*/
|
|
class JUCE_API OSCAddress
|
|
{
|
|
public:
|
|
//==============================================================================
|
|
/** Constructs a new OSCAddress from a String.
|
|
@throw OSCFormatError if the string is not a valid OSC address.
|
|
*/
|
|
OSCAddress (const String& address);
|
|
|
|
/** Constructs a new OSCAddress from a C string.
|
|
@throw OSCFormatError of the string is not a valid OSC address.
|
|
*/
|
|
OSCAddress (const char* address);
|
|
|
|
/** Compares two OSCAddress objects.
|
|
@returns true if they contain the same address, false otherwise.
|
|
*/
|
|
bool operator== (const OSCAddress& other) const noexcept;
|
|
|
|
/** Compares two OSCAddress objects.
|
|
@returns false if they contain the same address, true otherwise.
|
|
*/
|
|
bool operator!= (const OSCAddress& other) const noexcept;
|
|
|
|
/** Converts the OSCAddress to a String.
|
|
Note: Trailing slashes are always removed automatically.
|
|
|
|
@returns a String object that represents the OSC address.
|
|
*/
|
|
String toString() const noexcept;
|
|
|
|
private:
|
|
//==============================================================================
|
|
StringArray oscSymbols;
|
|
String asString;
|
|
friend class OSCAddressPattern;
|
|
};
|
|
|
|
//==============================================================================
|
|
/**
|
|
An OSC address pattern.
|
|
|
|
Extends an OSC address by additionally allowing the following wildcards:
|
|
?, *, [], {}
|
|
|
|
OSC messages always have an OSC address pattern to specify the destination(s)
|
|
of the message.
|
|
|
|
@see OSCMessage, OSCAddress, OSCMessageListener
|
|
|
|
@tags{OSC}
|
|
*/
|
|
class JUCE_API OSCAddressPattern
|
|
{
|
|
public:
|
|
//==============================================================================
|
|
/** Constructs a new OSCAddressPattern from a String.
|
|
@throw OSCFormatError if the string is not a valid OSC address pattern.
|
|
*/
|
|
OSCAddressPattern (const String& address);
|
|
|
|
/** Constructs a new OSCAddressPattern from a C string.
|
|
@throw OSCFormatError of the string is not a valid OSC address pattern.
|
|
*/
|
|
OSCAddressPattern (const char* address);
|
|
|
|
/** Compares two OSCAddressPattern objects.
|
|
@returns true if they contain the same address pattern, false otherwise.
|
|
*/
|
|
bool operator== (const OSCAddressPattern& other) const noexcept;
|
|
|
|
/** Compares two OSCAddressPattern objects.
|
|
@returns false if they contain the same address pattern, true otherwise.
|
|
*/
|
|
bool operator!= (const OSCAddressPattern& other) const noexcept;
|
|
|
|
/** Checks if the OSCAddressPattern matches an OSC address with the wildcard
|
|
rules defined by the OpenSoundControl 1.0 specification.
|
|
|
|
@returns true if the OSCAddressPattern matches the given OSC address,
|
|
false otherwise.
|
|
*/
|
|
bool matches (const OSCAddress& address) const noexcept;
|
|
|
|
/** Checks whether the OSCAddressPattern contains any of the allowed OSC
|
|
address pattern wildcards: ?, *, [], {}
|
|
|
|
@returns true if the OSCAddressPattern contains OSC wildcards, false otherwise.
|
|
*/
|
|
bool containsWildcards() const noexcept { return wasInitialisedWithWildcards; }
|
|
|
|
/** Converts the OSCAddressPattern to a String.
|
|
Note: Trailing slashes are always removed automatically.
|
|
|
|
@returns a String object that represents the OSC address pattern.
|
|
*/
|
|
String toString() const noexcept;
|
|
|
|
|
|
private:
|
|
//==============================================================================
|
|
StringArray oscSymbols;
|
|
String asString;
|
|
bool wasInitialisedWithWildcards;
|
|
};
|
|
|
|
} // namespace juce
|