blob: 16248b817708d6d30c34cc800c47b6c73fd3bb70 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.usb.descriptors;
import com.android.server.usb.descriptors.report.ReportCanvas;
/**
* @hide
* An audio class-specific Midi Endpoint.
* see midi10.pdf section 6.2.2
*/
public final class UsbACMidi20Endpoint extends UsbACEndpoint {
private static final String TAG = "UsbACMidi20Endpoint";
private byte mNumGroupTerminals;
private byte[] mBlockIds = new byte[0];
public UsbACMidi20Endpoint(int length, byte type, int subclass, byte subtype) {
super(length, type, subclass, subtype);
}
public byte getNumGroupTerminals() {
return mNumGroupTerminals;
}
public byte[] getBlockIds() {
return mBlockIds;
}
@Override
public int parseRawDescriptors(ByteStream stream) {
super.parseRawDescriptors(stream);
mNumGroupTerminals = stream.getByte();
if (mNumGroupTerminals > 0) {
mBlockIds = new byte[mNumGroupTerminals];
for (int block = 0; block < mNumGroupTerminals; block++) {
mBlockIds[block] = stream.getByte();
}
}
return mLength;
}
@Override
public void report(ReportCanvas canvas) {
super.report(canvas);
canvas.writeHeader(3, "AC Midi20 Endpoint: " + ReportCanvas.getHexString(getType())
+ " Length: " + getLength());
canvas.openList();
canvas.writeListItem("" + getNumGroupTerminals() + " Group Terminals.");
for (int i = 0; i < getNumGroupTerminals(); i++) {
canvas.writeListItem("Group Terminal " + i + ": " + mBlockIds[i]);
}
canvas.closeList();
}
}