1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
/*
* Copyright (C) 2013 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "modules/webmidi/MIDIOutput.h"
#include "bindings/core/v8/ExceptionState.h"
#include "core/dom/ExceptionCode.h"
#include "core/dom/ExecutionContext.h"
#include "core/frame/LocalDOMWindow.h"
#include "core/timing/Performance.h"
#include "modules/webmidi/MIDIAccess.h"
namespace blink {
namespace {
double now(ExecutionContext* context)
{
LocalDOMWindow* window = context ? context->executingWindow() : 0;
Performance* performance = window ? window->performance() : 0;
return performance ? performance->now() : 0.0;
}
class MessageValidator {
public:
static bool validate(DOMUint8Array* array, ExceptionState& exceptionState, bool sysexEnabled)
{
MessageValidator validator(array);
return validator.process(exceptionState, sysexEnabled);
}
private:
MessageValidator(DOMUint8Array* array)
: m_data(array->data())
, m_length(array->length())
, m_offset(0) { }
bool process(ExceptionState& exceptionState, bool sysexEnabled)
{
while (!isEndOfData() && acceptRealTimeMessages()) {
if (!isStatusByte()) {
exceptionState.throwTypeError("Running status is not allowed " + getPositionString());
return false;
}
if (isEndOfSysex()) {
exceptionState.throwTypeError("Unexpected end of system exclusive message " + getPositionString());
return false;
}
if (isReservedStatusByte()) {
exceptionState.throwTypeError("Reserved status is not allowed " + getPositionString());
return false;
}
if (isSysex()) {
if (!sysexEnabled) {
exceptionState.throwDOMException(InvalidAccessError, "System exclusive message is not allowed " + getPositionString());
return false;
}
if (!acceptCurrentSysex()) {
if (isEndOfData())
exceptionState.throwTypeError("System exclusive message is not ended by end of system exclusive message.");
else
exceptionState.throwTypeError("System exclusive message contains a status byte " + getPositionString());
return false;
}
} else {
if (!acceptCurrentMessage()) {
if (isEndOfData())
exceptionState.throwTypeError("Message is incomplete.");
else
exceptionState.throwTypeError("Unexpected status byte at index " + getPositionString());
return false;
}
}
}
return true;
}
private:
bool isEndOfData() { return m_offset >= m_length; }
bool isSysex() { return m_data[m_offset] == 0xf0; }
bool isSystemMessage() { return m_data[m_offset] >= 0xf0; }
bool isEndOfSysex() { return m_data[m_offset] == 0xf7; }
bool isRealTimeMessage() { return m_data[m_offset] >= 0xf8; }
bool isStatusByte() { return m_data[m_offset] & 0x80; }
bool isReservedStatusByte() { return m_data[m_offset] == 0xf4 || m_data[m_offset] == 0xf5 || m_data[m_offset] == 0xf9 || m_data[m_offset] == 0xfd; }
bool acceptRealTimeMessages()
{
for (; !isEndOfData(); m_offset++) {
if (isRealTimeMessage() && !isReservedStatusByte())
continue;
return true;
}
return false;
}
bool acceptCurrentSysex()
{
ASSERT(isSysex());
for (m_offset++; !isEndOfData(); m_offset++) {
if (isReservedStatusByte())
return false;
if (isRealTimeMessage())
continue;
if (isEndOfSysex()) {
m_offset++;
return true;
}
if (isStatusByte())
return false;
}
return false;
}
bool acceptCurrentMessage()
{
ASSERT(isStatusByte());
ASSERT(!isSysex());
ASSERT(!isReservedStatusByte());
ASSERT(!isRealTimeMessage());
static const int channelMessageLength[7] = { 3, 3, 3, 3, 2, 2, 3 }; // for 0x8*, 0x9*, ..., 0xe*
static const int systemMessageLength[7] = { 2, 3, 2, 0, 0, 1, 0 }; // for 0xf1, 0xf2, ..., 0xf7
size_t length = isSystemMessage() ? systemMessageLength[m_data[m_offset] - 0xf1] : channelMessageLength[(m_data[m_offset] >> 4) - 8];
size_t count = 1;
for (m_offset++; !isEndOfData(); m_offset++) {
if (isReservedStatusByte())
return false;
if (isRealTimeMessage())
continue;
if (isStatusByte())
return false;
if (++count == length) {
m_offset++;
return true;
}
}
return false;
}
String getPositionString() { return "at index " + String::number(m_offset) + " (" + String::number(m_data[m_offset]) + ")."; }
const unsigned char* m_data;
const size_t m_length;
size_t m_offset;
};
} // namespace
MIDIOutput* MIDIOutput::create(MIDIAccess* access, unsigned portIndex, const String& id, const String& manufacturer, const String& name, const String& version, bool isActive)
{
ASSERT(access);
return new MIDIOutput(access, portIndex, id, manufacturer, name, version, isActive);
}
MIDIOutput::MIDIOutput(MIDIAccess* access, unsigned portIndex, const String& id, const String& manufacturer, const String& name, const String& version, bool isActive)
: MIDIPort(access, id, manufacturer, name, MIDIPortTypeOutput, version, isActive)
, m_portIndex(portIndex)
{
}
MIDIOutput::~MIDIOutput()
{
}
void MIDIOutput::send(DOMUint8Array* array, double timestamp, ExceptionState& exceptionState)
{
if (timestamp == 0.0)
timestamp = now(executionContext());
if (!array)
return;
if (MessageValidator::validate(array, exceptionState, midiAccess()->sysexEnabled()))
midiAccess()->sendMIDIData(m_portIndex, array->data(), array->length(), timestamp);
}
void MIDIOutput::send(Vector<unsigned> unsignedData, double timestamp, ExceptionState& exceptionState)
{
if (timestamp == 0.0)
timestamp = now(executionContext());
RefPtr<DOMUint8Array> array = DOMUint8Array::create(unsignedData.size());
DOMUint8Array::ValueType* const arrayData = array->data();
const uint32_t arrayLength = array->length();
for (size_t i = 0; i < unsignedData.size(); ++i) {
if (unsignedData[i] > 0xff) {
exceptionState.throwTypeError("The value at index " + String::number(i) + " (" + String::number(unsignedData[i]) + ") is greater than 0xFF.");
return;
}
if (i < arrayLength)
arrayData[i] = unsignedData[i] & 0xff;
}
send(array.get(), timestamp, exceptionState);
}
void MIDIOutput::send(DOMUint8Array* data, ExceptionState& exceptionState)
{
send(data, 0.0, exceptionState);
}
void MIDIOutput::send(Vector<unsigned> unsignedData, ExceptionState& exceptionState)
{
send(unsignedData, 0.0, exceptionState);
}
void MIDIOutput::trace(Visitor* visitor)
{
MIDIPort::trace(visitor);
}
} // namespace blink
|