blob: f13d6e8b4ca2fdbbcd530839a82b1a996307cbf1 [file] [log] [blame]
Todd Poynor87bf0d92013-05-16 14:51:15 -07001/*
2 * Copyright (C) 2013 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#include <stdint.h>
18#include <sys/types.h>
19#include <batteryservice/BatteryService.h>
20#include <binder/Parcel.h>
21#include <utils/Errors.h>
22#include <utils/String8.h>
23#include <utils/String16.h>
24
25namespace android {
26
27/*
28 * Parcel read/write code must be kept in sync with
29 * frameworks/base/core/java/android/os/BatteryProperties.java
30 */
31
32status_t BatteryProperties::readFromParcel(Parcel* p) {
33 chargerAcOnline = p->readInt32() == 1 ? true : false;
34 chargerUsbOnline = p->readInt32() == 1 ? true : false;
35 chargerWirelessOnline = p->readInt32() == 1 ? true : false;
Adrian Roos687aa222015-07-10 13:08:28 -070036 maxChargingCurrent = p->readInt32();
Todd Poynor87bf0d92013-05-16 14:51:15 -070037 batteryStatus = p->readInt32();
38 batteryHealth = p->readInt32();
39 batteryPresent = p->readInt32() == 1 ? true : false;
40 batteryLevel = p->readInt32();
41 batteryVoltage = p->readInt32();
42 batteryTemperature = p->readInt32();
43 batteryTechnology = String8((p->readString16()).string());
44 return OK;
45}
46
47status_t BatteryProperties::writeToParcel(Parcel* p) const {
48 p->writeInt32(chargerAcOnline ? 1 : 0);
49 p->writeInt32(chargerUsbOnline ? 1 : 0);
50 p->writeInt32(chargerWirelessOnline ? 1 : 0);
Adrian Roos687aa222015-07-10 13:08:28 -070051 p->writeInt32(maxChargingCurrent);
Todd Poynor87bf0d92013-05-16 14:51:15 -070052 p->writeInt32(batteryStatus);
53 p->writeInt32(batteryHealth);
54 p->writeInt32(batteryPresent ? 1 : 0);
55 p->writeInt32(batteryLevel);
56 p->writeInt32(batteryVoltage);
Todd Poynor87bf0d92013-05-16 14:51:15 -070057 p->writeInt32(batteryTemperature);
58 p->writeString16(String16(batteryTechnology));
59 return OK;
60}
61
62}; // namespace android