summaryrefslogtreecommitdiff
path: root/audio_proxy/service/RemoteBusOutputStream.h
blob: cb7de198590e890be8d428a37b465c1c040cc095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright (C) 2021 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.

#pragma once

#include <aidl/device/google/atv/audio_proxy/IOutputStream.h>
#include <fmq/AidlMessageQueue.h>
#include <fmq/EventFlag.h>

#include "BusOutputStream.h"

namespace audio_proxy {
namespace service {

using aidl::android::hardware::common::fmq::MQDescriptor;
using aidl::android::hardware::common::fmq::SynchronizedReadWrite;
using aidl::device::google::atv::audio_proxy::IOutputStream;
using android::AidlMessageQueue;
using android::hardware::EventFlag;

class RemoteBusOutputStream : public BusOutputStream {
 public:
  RemoteBusOutputStream(std::shared_ptr<IOutputStream> stream,
                        const std::string& address,
                        const AidlAudioConfig& config, int32_t flags);
  ~RemoteBusOutputStream() override;

  bool standby() override;
  bool pause() override;
  bool resume() override;
  bool drain(AidlAudioDrain drain) override;
  bool flush() override;
  bool close() override;
  bool setVolume(float left, float right) override;

  size_t availableToWrite() override;
  AidlWriteStatus writeRingBuffer(const uint8_t* firstMem, size_t firstLength,
                                  const uint8_t* secondMem,
                                  size_t secondLength) override;

  bool start() override;
  bool stop() override;
  AidlMmapBufferInfo createMmapBuffer(int32_t minBufferSizeFrames) override;
  AidlPresentationPosition getMmapPosition() override;

 protected:
  bool prepareForWritingImpl(uint32_t frameSize, uint32_t frameCount) override;

 private:
  using DataMQ = AidlMessageQueue<int8_t, SynchronizedReadWrite>;
  using DataMQDesc = MQDescriptor<int8_t, SynchronizedReadWrite>;
  using StatusMQ = AidlMessageQueue<AidlWriteStatus, SynchronizedReadWrite>;
  using StatusMQDesc = MQDescriptor<AidlWriteStatus, SynchronizedReadWrite>;

  typedef void (*EventFlagDeleter)(EventFlag*);

  std::shared_ptr<IOutputStream> mStream;

  std::unique_ptr<DataMQ> mDataMQ;
  std::unique_ptr<StatusMQ> mStatusMQ;
  std::unique_ptr<EventFlag, EventFlagDeleter> mEventFlag;
};

}  // namespace service
}  // namespace audio_proxy