/* * Copyright (C) 2008 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. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #define LOG_TAG "power" #include #include "qemu.h" #ifdef QEMU_POWER #include "power_qemu.h" #endif enum { ACQUIRE_PARTIAL_WAKE_LOCK = 0, RELEASE_WAKE_LOCK, REQUEST_STATE, OUR_FD_COUNT }; const char * const OLD_PATHS[] = { "/sys/android_power/acquire_partial_wake_lock", "/sys/android_power/release_wake_lock", "/sys/android_power/request_state" }; const char * const NEW_PATHS[] = { "/sys/power/wake_lock", "/sys/power/wake_unlock", "/sys/power/state" }; const char * const AUTO_OFF_TIMEOUT_DEV = "/sys/android_power/auto_off_timeout"; //XXX static pthread_once_t g_initialized = THREAD_ONCE_INIT; static int g_initialized = 0; static int g_fds[OUR_FD_COUNT]; static int g_error = 1; static const char *off_state = "mem"; static const char *on_state = "on"; static int64_t systemTime() { struct timespec t; t.tv_sec = t.tv_nsec = 0; clock_gettime(CLOCK_MONOTONIC, &t); return t.tv_sec*1000000000LL + t.tv_nsec; } static int open_file_descriptors(const char * const paths[]) { int i; for (i=0; i= 0; } int set_last_user_activity_timeout(int64_t delay) { // ALOGI("set_last_user_activity_timeout delay=%d\n", ((int)(delay))); int fd = open(AUTO_OFF_TIMEOUT_DEV, O_RDWR); if (fd >= 0) { char buf[32]; ssize_t len; len = snprintf(buf, sizeof(buf), "%d", ((int)(delay))); buf[sizeof(buf) - 1] = '\0'; len = write(fd, buf, len); close(fd); return 0; } else { return errno; } } int set_screen_state(int on) { QEMU_FALLBACK(set_screen_state(on)); ALOGI("*** set_screen_state %d", on); initialize_fds(); //ALOGI("go_to_sleep eventTime=%lld now=%lld g_error=%s\n", eventTime, // systemTime(), strerror(g_error)); if (g_error) goto failure; char buf[32]; int len; if(on) len = snprintf(buf, sizeof(buf), "%s", on_state); else len = snprintf(buf, sizeof(buf), "%s", off_state); buf[sizeof(buf) - 1] = '\0'; len = write(g_fds[REQUEST_STATE], buf, len); if(len < 0) { failure: LOGE("Failed setting last user activity: g_error=%d\n", g_error); } return 0; }