blob: e9cd4fe1f0ac9a7aca76323ee79a4a3922fb41f2 [file] [log] [blame]
/*
* Copyright 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.
*/
#ifndef NATIVEOBOE_OBOESTREAMCALLBACKPROXY_H
#define NATIVEOBOE_OBOESTREAMCALLBACKPROXY_H
#include <unistd.h>
#include <sys/types.h>
#include "oboe/Oboe.h"
class OboeStreamCallbackProxy : public oboe::AudioStreamCallback {
public:
void setCallback(oboe::AudioStreamCallback *callback) {
mCallback = callback;
setCallbackCount(0);
}
static void setCallbackReturnStop(bool b) {
mCallbackReturnStop = b;
}
int64_t getCallbackCount() {
return mCallbackCount;
}
void setCallbackCount(int64_t count) {
mCallbackCount = count;
}
int32_t getFramesPerCallback() {
return mFramesPerCallback.load();
}
/**
* Called when the stream is ready to process audio.
*/
oboe::DataCallbackResult onAudioReady(
oboe::AudioStream *audioStream,
void *audioData,
int numFrames) override;
void onErrorBeforeClose(oboe::AudioStream *audioStream, oboe::Result error) override;
void onErrorAfterClose(oboe::AudioStream *audioStream, oboe::Result error) override;
/**
* Specify the amount of artificial workload that will waste CPU cycles
* and increase the CPU load.
* @param workload typically ranges from 0.0 to 100.0
*/
void setWorkload(double workload) {
mWorkload = std::max(0.0, workload);
}
double getWorkload() const {
return mWorkload;
}
double getCpuLoad() const {
return mCpuLoad;
}
static int64_t getNanoseconds(clockid_t clockId = CLOCK_MONOTONIC);
oboe::Result getLastErrorCallbackResult() {
return mErrorCallbackResult;
}
private:
static constexpr int32_t kWorkloadScaler = 500;
double mWorkload = 0.0;
std::atomic<double> mCpuLoad{0};
oboe::AudioStreamCallback *mCallback = nullptr;
static bool mCallbackReturnStop;
int64_t mCallbackCount = 0;
std::atomic<int32_t> mFramesPerCallback{0};
oboe::Result mErrorCallbackResult = oboe::Result::OK;
};
#endif //NATIVEOBOE_OBOESTREAMCALLBACKPROXY_H