Phil Burk | 828bea5 | 2017-01-03 17:22:09 -0800 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2016 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 BINDING_OBOE_STREAM_REQUEST_H |
| 18 | #define BINDING_OBOE_STREAM_REQUEST_H |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | |
| 22 | #include <binder/Parcel.h> |
| 23 | #include <binder/Parcelable.h> |
| 24 | #include <oboe/OboeDefinitions.h> |
| 25 | |
| 26 | #include "binding/OboeStreamConfiguration.h" |
| 27 | |
| 28 | using android::status_t; |
| 29 | using android::Parcel; |
| 30 | using android::Parcelable; |
| 31 | |
| 32 | namespace oboe { |
| 33 | |
| 34 | class OboeStreamRequest : public Parcelable { |
| 35 | public: |
| 36 | OboeStreamRequest(); |
| 37 | virtual ~OboeStreamRequest(); |
| 38 | |
| 39 | uid_t getUserId() const { |
| 40 | return mUserId; |
| 41 | } |
| 42 | |
| 43 | void setUserId(uid_t userId) { |
| 44 | mUserId = userId; |
| 45 | } |
| 46 | |
| 47 | pid_t getProcessId() const { |
| 48 | return mProcessId; |
| 49 | } |
| 50 | |
| 51 | void setProcessId(pid_t processId) { |
| 52 | mProcessId = processId; |
| 53 | } |
| 54 | |
| 55 | OboeStreamConfiguration &getConfiguration() { |
| 56 | return mConfiguration; |
| 57 | } |
| 58 | |
| 59 | virtual status_t writeToParcel(Parcel* parcel) const override; |
| 60 | |
| 61 | virtual status_t readFromParcel(const Parcel* parcel) override; |
| 62 | |
| 63 | oboe_result_t validate(); |
| 64 | |
| 65 | void dump(); |
| 66 | |
| 67 | protected: |
| 68 | OboeStreamConfiguration mConfiguration; |
| 69 | uid_t mUserId; |
| 70 | pid_t mProcessId; |
| 71 | }; |
| 72 | |
| 73 | } /* namespace oboe */ |
| 74 | |
| 75 | #endif //BINDING_OBOE_STREAM_REQUEST_H |