Sharvil Nanavati | a3164c9 | 2014-06-23 12:07:05 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright (C) 2014 Google, Inc. |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | ******************************************************************************/ |
| 18 | |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 19 | #define LOG_TAG "osi_semaphore" |
| 20 | |
| 21 | #include <assert.h> |
| 22 | #include <errno.h> |
Sharvil Nanavati | a3164c9 | 2014-06-23 12:07:05 -0700 | [diff] [blame] | 23 | #include <fcntl.h> |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 24 | #include <string.h> |
| 25 | #include <sys/eventfd.h> |
| 26 | #include <utils/Log.h> |
| 27 | |
Zach Johnson | 384f8a9 | 2014-08-25 23:22:24 -0700 | [diff] [blame] | 28 | #include "allocator.h" |
Sharvil Nanavati | eba4915 | 2014-08-01 18:40:15 -0700 | [diff] [blame] | 29 | #include "osi.h" |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 30 | #include "semaphore.h" |
| 31 | |
| 32 | #if !defined(EFD_SEMAPHORE) |
| 33 | # define EFD_SEMAPHORE (1 << 0) |
| 34 | #endif |
| 35 | |
| 36 | struct semaphore_t { |
| 37 | int fd; |
| 38 | }; |
| 39 | |
| 40 | semaphore_t *semaphore_new(unsigned int value) { |
Zach Johnson | 384f8a9 | 2014-08-25 23:22:24 -0700 | [diff] [blame] | 41 | semaphore_t *ret = osi_malloc(sizeof(semaphore_t)); |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 42 | if (ret) { |
| 43 | ret->fd = eventfd(value, EFD_SEMAPHORE); |
Sharvil Nanavati | 2cb2998 | 2014-08-01 17:00:12 -0700 | [diff] [blame] | 44 | if (ret->fd == INVALID_FD) { |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 45 | ALOGE("%s unable to allocate semaphore: %s", __func__, strerror(errno)); |
Sharvil Nanavati | c0745da | 2014-11-13 01:04:19 -0800 | [diff] [blame^] | 46 | osi_free(ret); |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 47 | ret = NULL; |
| 48 | } |
| 49 | } |
| 50 | return ret; |
| 51 | } |
| 52 | |
| 53 | void semaphore_free(semaphore_t *semaphore) { |
Zach Johnson | 207fa23 | 2014-09-18 17:29:54 -0700 | [diff] [blame] | 54 | if (!semaphore) |
| 55 | return; |
| 56 | |
Sharvil Nanavati | 2cb2998 | 2014-08-01 17:00:12 -0700 | [diff] [blame] | 57 | if (semaphore->fd != INVALID_FD) |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 58 | close(semaphore->fd); |
Zach Johnson | 384f8a9 | 2014-08-25 23:22:24 -0700 | [diff] [blame] | 59 | osi_free(semaphore); |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | void semaphore_wait(semaphore_t *semaphore) { |
| 63 | assert(semaphore != NULL); |
Sharvil Nanavati | 2cb2998 | 2014-08-01 17:00:12 -0700 | [diff] [blame] | 64 | assert(semaphore->fd != INVALID_FD); |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 65 | |
| 66 | uint64_t value; |
| 67 | if (eventfd_read(semaphore->fd, &value) == -1) |
| 68 | ALOGE("%s unable to wait on semaphore: %s", __func__, strerror(errno)); |
| 69 | } |
| 70 | |
Sharvil Nanavati | a3164c9 | 2014-06-23 12:07:05 -0700 | [diff] [blame] | 71 | bool semaphore_try_wait(semaphore_t *semaphore) { |
| 72 | assert(semaphore != NULL); |
Sharvil Nanavati | 2cb2998 | 2014-08-01 17:00:12 -0700 | [diff] [blame] | 73 | assert(semaphore->fd != INVALID_FD); |
Sharvil Nanavati | a3164c9 | 2014-06-23 12:07:05 -0700 | [diff] [blame] | 74 | |
| 75 | int flags = fcntl(semaphore->fd, F_GETFL); |
| 76 | if (flags == -1) { |
| 77 | ALOGE("%s unable to get flags for semaphore fd: %s", __func__, strerror(errno)); |
| 78 | return false; |
| 79 | } |
| 80 | if (fcntl(semaphore->fd, F_SETFL, flags | O_NONBLOCK) == -1) { |
| 81 | ALOGE("%s unable to set O_NONBLOCK for semaphore fd: %s", __func__, strerror(errno)); |
| 82 | return false; |
| 83 | } |
| 84 | |
| 85 | eventfd_t value; |
| 86 | if (eventfd_read(semaphore->fd, &value) == -1) |
| 87 | return false; |
| 88 | |
| 89 | if (fcntl(semaphore->fd, F_SETFL, flags) == -1) |
| 90 | ALOGE("%s unable to resetore flags for semaphore fd: %s", __func__, strerror(errno)); |
| 91 | return true; |
| 92 | } |
| 93 | |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 94 | void semaphore_post(semaphore_t *semaphore) { |
| 95 | assert(semaphore != NULL); |
Sharvil Nanavati | 2cb2998 | 2014-08-01 17:00:12 -0700 | [diff] [blame] | 96 | assert(semaphore->fd != INVALID_FD); |
Sharvil Nanavati | c11b407 | 2014-05-02 23:55:09 -0700 | [diff] [blame] | 97 | |
| 98 | if (eventfd_write(semaphore->fd, 1ULL) == -1) |
| 99 | ALOGE("%s unable to post to semaphore: %s", __func__, strerror(errno)); |
| 100 | } |
Sharvil Nanavati | f4013f2 | 2014-07-05 20:42:07 -0700 | [diff] [blame] | 101 | |
| 102 | int semaphore_get_fd(const semaphore_t *semaphore) { |
| 103 | assert(semaphore != NULL); |
Sharvil Nanavati | 2cb2998 | 2014-08-01 17:00:12 -0700 | [diff] [blame] | 104 | assert(semaphore->fd != INVALID_FD); |
Sharvil Nanavati | f4013f2 | 2014-07-05 20:42:07 -0700 | [diff] [blame] | 105 | return semaphore->fd; |
| 106 | } |