Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef AAUDIO_SERVICE_ENDPOINT_H |
| 18 | #define AAUDIO_SERVICE_ENDPOINT_H |
| 19 | |
| 20 | #include <atomic> |
| 21 | #include <functional> |
| 22 | #include <mutex> |
| 23 | #include <vector> |
| 24 | |
| 25 | #include "client/AudioStreamInternal.h" |
Phil Burk | 87c9f64 | 2017-05-17 07:22:39 -0700 | [diff] [blame] | 26 | #include "client/AudioStreamInternalPlay.h" |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 27 | #include "core/AAudioStreamParameters.h" |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 28 | #include "binding/AAudioServiceMessage.h" |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 29 | #include "binding/AAudioStreamConfiguration.h" |
| 30 | |
| 31 | #include "AAudioServiceStreamBase.h" |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 32 | |
| 33 | namespace aaudio { |
| 34 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 35 | /** |
| 36 | * AAudioServiceEndpoint is used by a subclass of AAudioServiceStreamBase |
| 37 | * to communicate with the underlying audio device or port. |
| 38 | */ |
| 39 | class AAudioServiceEndpoint |
| 40 | : public virtual android::RefBase |
| 41 | , public AAudioStreamParameters { |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 42 | public: |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 43 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 44 | virtual ~AAudioServiceEndpoint(); |
Phil Burk | 4501b35 | 2017-06-29 18:12:36 -0700 | [diff] [blame] | 45 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 46 | virtual std::string dump() const; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 47 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 48 | virtual aaudio_result_t open(const aaudio::AAudioStreamRequest &request) = 0; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 49 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 50 | virtual aaudio_result_t close() = 0; |
| 51 | |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 52 | aaudio_result_t registerStream(android::sp<AAudioServiceStreamBase> stream); |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 53 | |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 54 | aaudio_result_t unregisterStream(android::sp<AAudioServiceStreamBase> stream); |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 55 | |
| 56 | virtual aaudio_result_t startStream(android::sp<AAudioServiceStreamBase> stream, |
| 57 | audio_port_handle_t *clientHandle) = 0; |
| 58 | |
| 59 | virtual aaudio_result_t stopStream(android::sp<AAudioServiceStreamBase> stream, |
| 60 | audio_port_handle_t clientHandle) = 0; |
| 61 | |
| 62 | virtual aaudio_result_t startClient(const android::AudioClient& client, |
| 63 | audio_port_handle_t *clientHandle) { |
| 64 | ALOGD("AAudioServiceEndpoint::startClient(%p, ...) AAUDIO_ERROR_UNAVAILABLE", &client); |
| 65 | return AAUDIO_ERROR_UNAVAILABLE; |
| 66 | } |
| 67 | |
| 68 | virtual aaudio_result_t stopClient(audio_port_handle_t clientHandle) { |
| 69 | ALOGD("AAudioServiceEndpoint::stopClient(...) AAUDIO_ERROR_UNAVAILABLE"); |
| 70 | return AAUDIO_ERROR_UNAVAILABLE; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * @param positionFrames |
| 75 | * @param timeNanos |
| 76 | * @return AAUDIO_OK or AAUDIO_ERROR_UNAVAILABLE or other negative error |
| 77 | */ |
| 78 | virtual aaudio_result_t getFreeRunningPosition(int64_t *positionFrames, int64_t *timeNanos) = 0; |
| 79 | |
Phil Burk | 56d34f2 | 2018-10-11 13:30:56 -0700 | [diff] [blame^] | 80 | /** |
| 81 | * Set time that the associated frame was presented to the hardware. |
| 82 | * |
| 83 | * @param positionFrames receive position, input value is ignored |
| 84 | * @param timeNanos receive time, input value is ignored |
| 85 | * @return AAUDIO_OK or AAUDIO_ERROR_UNAVAILABLE or other negative error |
| 86 | */ |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 87 | virtual aaudio_result_t getTimestamp(int64_t *positionFrames, int64_t *timeNanos) = 0; |
| 88 | |
| 89 | int32_t getFramesPerBurst() const { |
| 90 | return mFramesPerBurst; |
| 91 | } |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 92 | |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 93 | int32_t getRequestedDeviceId() const { return mRequestedDeviceId; } |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 94 | |
Eric Laurent | a17ae74 | 2017-06-29 15:43:55 -0700 | [diff] [blame] | 95 | bool matches(const AAudioStreamConfiguration& configuration); |
| 96 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 97 | // This should only be called from the AAudioEndpointManager under a mutex. |
| 98 | int32_t getOpenCount() const { |
| 99 | return mOpenCount; |
| 100 | } |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 101 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 102 | // This should only be called from the AAudioEndpointManager under a mutex. |
| 103 | void setOpenCount(int32_t count) { |
| 104 | mOpenCount = count; |
| 105 | } |
| 106 | |
Phil Burk | be0a5b6 | 2017-10-12 15:56:00 -0700 | [diff] [blame] | 107 | bool isConnected() const { |
| 108 | return mConnected; |
| 109 | } |
| 110 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 111 | protected: |
Phil Burk | bbd5286 | 2018-04-13 11:37:42 -0700 | [diff] [blame] | 112 | |
| 113 | /** |
| 114 | * @param portHandle |
| 115 | * @return return true if a stream with the given portHandle is registered |
| 116 | */ |
| 117 | bool isStreamRegistered(audio_port_handle_t portHandle); |
| 118 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 119 | void disconnectRegisteredStreams(); |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 120 | |
Phil Burk | 4501b35 | 2017-06-29 18:12:36 -0700 | [diff] [blame] | 121 | mutable std::mutex mLockStreams; |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 122 | std::vector<android::sp<AAudioServiceStreamBase>> mRegisteredStreams; |
Phil Burk | 87c9f64 | 2017-05-17 07:22:39 -0700 | [diff] [blame] | 123 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 124 | SimpleDoubleBuffer<Timestamp> mAtomicTimestamp; |
Phil Burk | 11e8d33 | 2017-05-24 09:59:02 -0700 | [diff] [blame] | 125 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 126 | android::AudioClient mMmapClient; // set in open, used in open and startStream |
Phil Burk | 71f35bb | 2017-04-13 16:05:07 -0700 | [diff] [blame] | 127 | |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 128 | int32_t mFramesPerBurst = 0; |
| 129 | int32_t mOpenCount = 0; |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 130 | int32_t mRequestedDeviceId = 0; |
Phil Burk | 15f7cab | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 131 | |
Phil Burk | be0a5b6 | 2017-10-12 15:56:00 -0700 | [diff] [blame] | 132 | std::atomic<bool> mConnected{true}; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | } /* namespace aaudio */ |
| 136 | |
| 137 | |
| 138 | #endif //AAUDIO_SERVICE_ENDPOINT_H |