| /* |
| * Copyright 2016 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. |
| */ |
| |
| #ifndef ANDROID_AAUDIO_RINGBUFFER_PARCELABLE_H |
| #define ANDROID_AAUDIO_RINGBUFFER_PARCELABLE_H |
| |
| #include <stdint.h> |
| |
| #include <binder/Parcelable.h> |
| |
| #include "binding/AAudioServiceDefinitions.h" |
| #include "binding/SharedRegionParcelable.h" |
| |
| namespace aaudio { |
| |
| class RingBufferParcelable : public Parcelable { |
| public: |
| RingBufferParcelable(); |
| virtual ~RingBufferParcelable(); |
| |
| // TODO This assumes that all three use the same SharedMemoryParcelable |
| void setupMemory(int32_t sharedMemoryIndex, |
| int32_t dataMemoryOffset, |
| int32_t dataSizeInBytes, |
| int32_t readCounterOffset, |
| int32_t writeCounterOffset, |
| int32_t counterSizeBytes); |
| |
| void setupMemory(int32_t sharedMemoryIndex, |
| int32_t dataMemoryOffset, |
| int32_t dataSizeInBytes); |
| |
| int32_t getBytesPerFrame(); |
| |
| void setBytesPerFrame(int32_t bytesPerFrame); |
| |
| int32_t getFramesPerBurst(); |
| |
| void setFramesPerBurst(int32_t framesPerBurst); |
| |
| int32_t getCapacityInFrames(); |
| |
| void setCapacityInFrames(int32_t capacityInFrames); |
| |
| bool isFileDescriptorSafe(SharedMemoryParcelable *memoryParcels); |
| |
| /** |
| * The read and write must be symmetric. |
| */ |
| virtual status_t writeToParcel(Parcel* parcel) const override; |
| |
| virtual status_t readFromParcel(const Parcel* parcel) override; |
| |
| aaudio_result_t resolve(SharedMemoryParcelable *memoryParcels, RingBufferDescriptor *descriptor); |
| |
| aaudio_result_t validate(); |
| |
| void dump(); |
| |
| private: |
| SharedRegionParcelable mReadCounterParcelable; |
| SharedRegionParcelable mWriteCounterParcelable; |
| SharedRegionParcelable mDataParcelable; |
| int32_t mBytesPerFrame = 0; // index is in frames |
| int32_t mFramesPerBurst = 0; // for ISOCHRONOUS queues |
| int32_t mCapacityInFrames = 0; // zero if unused |
| RingbufferFlags mFlags = RingbufferFlags::NONE; |
| }; |
| |
| } /* namespace aaudio */ |
| |
| #endif //ANDROID_AAUDIO_RINGBUFFER_PARCELABLE_H |