/* * 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 "InputEventReader.h" /*****************************************************************************/ template static inline T min(T a, T b) { return a 0) { iovcnt++; iov[1].iov_base = mBuffer; iov[1].iov_len = numSecond * sizeof(iio_event_data); } const ssize_t nread = readv(fd, iov, iovcnt); if (nread < 0 || nread % sizeof(iio_event_data)) { // we got a partial event!! return nread < 0 ? -errno : -EINVAL; } numEventsRead = nread / sizeof(iio_event_data); if (numEventsRead) { mHead += numEventsRead; mFreeEvents -= numEventsRead; if (mHead >= mBufferEnd) mHead -= mMaxEvents; } } return numEventsRead; } bool InputEventCircularReader::readEvent(int fd, iio_event_data const** events) { if (mFreeEvents >= mMaxEvents) { ssize_t eventCount = fill(fd); if (eventCount <= 0) return false; } *events = mCurr; return true; } void InputEventCircularReader::next() { mCurr++; if (mCurr >= mBufferEnd) { mCurr = mBuffer; } if (mFreeEvents < mMaxEvents) { mFreeEvents++; } }