2009-03-04 04:32:55 +01:00
|
|
|
/*
|
2014-01-06 17:14:11 +01:00
|
|
|
* Copyright (C) 2007-2014 The Android Open Source Project
|
2009-03-04 04:32:55 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-11-25 22:27:43 +01:00
|
|
|
#if defined(_WIN32)
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-03-10 17:25:33 +01:00
|
|
|
#include <log/uio.h>
|
|
|
|
|
2016-03-01 22:45:42 +01:00
|
|
|
#include "log_portability.h"
|
2016-03-10 17:25:33 +01:00
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
LIBLOG_ABI_PUBLIC int readv(int fd, struct iovec* vecs, int count) {
|
|
|
|
int total = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
for (; count > 0; count--, vecs++) {
|
|
|
|
char* buf = vecs->iov_base;
|
|
|
|
int len = vecs->iov_len;
|
2016-03-10 17:25:33 +01:00
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
while (len > 0) {
|
|
|
|
int ret = read(fd, buf, len);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (total == 0) total = -1;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
if (ret == 0) goto Exit;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
total += ret;
|
|
|
|
buf += ret;
|
|
|
|
len -= ret;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2017-03-09 17:09:43 +01:00
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
Exit:
|
2017-03-09 17:09:43 +01:00
|
|
|
return total;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
LIBLOG_ABI_PUBLIC int writev(int fd, const struct iovec* vecs, int count) {
|
|
|
|
int total = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
for (; count > 0; count--, vecs++) {
|
|
|
|
const char* buf = vecs->iov_base;
|
|
|
|
int len = vecs->iov_len;
|
2016-03-10 17:25:33 +01:00
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
while (len > 0) {
|
|
|
|
int ret = write(fd, buf, len);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (total == 0) total = -1;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
if (ret == 0) goto Exit;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2017-03-09 17:09:43 +01:00
|
|
|
total += ret;
|
|
|
|
buf += ret;
|
|
|
|
len -= ret;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2017-03-09 17:09:43 +01:00
|
|
|
}
|
2016-03-10 17:25:33 +01:00
|
|
|
Exit:
|
2017-03-09 17:09:43 +01:00
|
|
|
return total;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
2014-11-25 22:27:43 +01:00
|
|
|
#endif
|