blob: 9c328412f715dac5e0964eabe87f96088bf696ae [file]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_SERVICES_ASSISTANT_AUDIO_DECODER_IPC_DATA_SOURCE_H_
#define CHROMEOS_SERVICES_ASSISTANT_AUDIO_DECODER_IPC_DATA_SOURCE_H_
#include <stdint.h>
#include "base/macros.h"
#include "base/threading/thread_checker.h"
#include "chromeos/services/assistant/public/mojom/assistant_audio_decoder.mojom.h"
#include "media/base/data_source.h"
namespace chromeos {
namespace assistant {
// Provides data source to the audio stream decoder. Class must be created and
// destroyed on a same thread. The thread must not be blocked for read
// operations to succeed.
class IPCDataSource : public media::DataSource {
public:
// May only be called on the utility thread.
explicit IPCDataSource(mojom::AssistantMediaDataSourcePtr media_data_source);
~IPCDataSource() override;
// media::DataSource implementation. The methods may be called on any single
// thread. First usage of these methods attaches a thread checker.
void Stop() override;
void Abort() override;
void Read(int64_t position,
int size,
uint8_t* destination,
const ReadCB& callback) override;
bool GetSize(int64_t* size_out) override;
bool IsStreaming() override;
void SetBitrate(int bitrate) override;
private:
// Media data read helpers: must be run on the utility thread.
void ReadMediaData(uint8_t* destination, const ReadCB& callback, int size);
void ReadDone(uint8_t* destination,
const ReadCB& callback,
uint32_t requested_size,
const std::vector<uint8_t>& data);
mojom::AssistantMediaDataSourcePtr media_data_source_;
scoped_refptr<base::SequencedTaskRunner> utility_task_runner_;
THREAD_CHECKER(utility_thread_checker_);
// Enforces that the DataSource methods are called on one other thread only.
THREAD_CHECKER(data_source_thread_checker_);
DISALLOW_COPY_AND_ASSIGN(IPCDataSource);
};
} // namespace assistant
} // namespace chromeos
#endif // CHROMEOS_SERVICES_ASSISTANT_AUDIO_DECODER_IPC_DATA_SOURCE_H_