1 /*
2  * Copyright (C) 2020 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 #define LOG_TAG "Temperature"
18 
19 #include <android/Temperature.h>
20 #include <binder/Parcel.h>
21 #include <utils/Log.h>
22 
23 namespace android {
24 namespace os {
25 
readFromParcel(const android::Parcel * parcel)26 status_t Temperature::readFromParcel(const android::Parcel *parcel) {
27     if (parcel == nullptr) {
28         ALOGE("%s: Null parcel", __FUNCTION__);
29         return BAD_VALUE;
30     }
31 
32     parcel->readFloat(&mValue);
33     parcel->readInt32(&mType);
34     parcel->readString16(&mName);
35     parcel->readInt32(&mStatus);
36 
37     return OK;
38 }
39 
writeToParcel(android::Parcel * parcel) const40 status_t Temperature::writeToParcel(android::Parcel *parcel) const {
41     if (parcel == nullptr) {
42         ALOGE("%s: Null parcel", __FUNCTION__);
43         return BAD_VALUE;
44     }
45 
46     parcel->writeFloat(mValue);
47     parcel->writeInt32(mType);
48     parcel->writeString16(mName);
49     parcel->writeInt32(mStatus);
50 
51     return OK;
52 }
53 
54 } // namespace os
55 } // namespace android