You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.4 KiB
77 lines
2.4 KiB
4 months ago
|
/*
|
||
|
* Copyright (C) 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 AAUDIO_SHARED_RINGBUFFER_H
|
||
|
#define AAUDIO_SHARED_RINGBUFFER_H
|
||
|
|
||
|
#include <android-base/unique_fd.h>
|
||
|
#include <cutils/ashmem.h>
|
||
|
#include <stdint.h>
|
||
|
#include <string>
|
||
|
#include <sys/mman.h>
|
||
|
|
||
|
#include "fifo/FifoBuffer.h"
|
||
|
#include "binding/RingBufferParcelable.h"
|
||
|
#include "binding/AudioEndpointParcelable.h"
|
||
|
|
||
|
namespace aaudio {
|
||
|
|
||
|
// Determine the placement of the counters and data in shared memory.
|
||
|
#define SHARED_RINGBUFFER_READ_OFFSET 0
|
||
|
#define SHARED_RINGBUFFER_WRITE_OFFSET sizeof(fifo_counter_t)
|
||
|
#define SHARED_RINGBUFFER_DATA_OFFSET (SHARED_RINGBUFFER_WRITE_OFFSET + sizeof(fifo_counter_t))
|
||
|
|
||
|
/**
|
||
|
* Atomic FIFO that uses shared memory.
|
||
|
*/
|
||
|
class SharedRingBuffer {
|
||
|
public:
|
||
|
SharedRingBuffer() {}
|
||
|
|
||
|
virtual ~SharedRingBuffer();
|
||
|
|
||
|
aaudio_result_t allocate(android::fifo_frames_t bytesPerFrame, android::fifo_frames_t capacityInFrames);
|
||
|
|
||
|
void fillParcelable(AudioEndpointParcelable &endpointParcelable,
|
||
|
RingBufferParcelable &ringBufferParcelable);
|
||
|
|
||
|
/**
|
||
|
* Return available frames as a fraction of the capacity.
|
||
|
* @return fullness between 0.0 and 1.0
|
||
|
*/
|
||
|
double getFractionalFullness() const;
|
||
|
|
||
|
// dump: write# read# available
|
||
|
std::string dump() const;
|
||
|
|
||
|
std::shared_ptr<android::FifoBuffer> getFifoBuffer() {
|
||
|
return mFifoBuffer;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
android::base::unique_fd mFileDescriptor;
|
||
|
std::shared_ptr<android::FifoBufferIndirect> mFifoBuffer;
|
||
|
uint8_t *mSharedMemory = nullptr; // mmap
|
||
|
int32_t mSharedMemorySizeInBytes = 0;
|
||
|
// size of memory used for data vs counters
|
||
|
int32_t mDataMemorySizeInBytes = 0;
|
||
|
android::fifo_frames_t mCapacityInFrames = 0;
|
||
|
};
|
||
|
|
||
|
} /* namespace aaudio */
|
||
|
|
||
|
#endif //AAUDIO_SHARED_RINGBUFFER_H
|