blob: ac0558f3fa5336a744a9795eb06e7b1a064813a2 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
Mark Salyzyn168021c2014-01-06 08:14:11 -08002 * Copyright (C) 2007-2014 The Android Open Source Project
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08003 *
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
Elliott Hughes111e3d32014-11-25 13:27:43 -080017#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080018
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080019#include <unistd.h>
20
Mark Salyzyn6d753fa2016-03-10 08:25:33 -080021#include <log/uio.h>
22
Mark Salyzynfacf94c2016-03-01 13:45:42 -080023#include "log_portability.h"
Mark Salyzyn6d753fa2016-03-10 08:25:33 -080024
25LIBLOG_ABI_PUBLIC int readv(int fd, struct iovec *vecs, int count)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026{
27 int total = 0;
28
29 for ( ; count > 0; count--, vecs++ ) {
Mark Salyzyn168021c2014-01-06 08:14:11 -080030 char* buf = vecs->iov_base;
31 int len = vecs->iov_len;
Mark Salyzyn6d753fa2016-03-10 08:25:33 -080032
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080033 while (len > 0) {
34 int ret = read( fd, buf, len );
35 if (ret < 0) {
36 if (total == 0)
37 total = -1;
38 goto Exit;
39 }
40 if (ret == 0)
41 goto Exit;
42
43 total += ret;
44 buf += ret;
45 len -= ret;
46 }
47 }
48Exit:
49 return total;
50}
51
Mark Salyzyn6d753fa2016-03-10 08:25:33 -080052LIBLOG_ABI_PUBLIC int writev(int fd, const struct iovec *vecs, int count)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080053{
54 int total = 0;
55
56 for ( ; count > 0; count--, vecs++ ) {
Mark Salyzyn168021c2014-01-06 08:14:11 -080057 const char* buf = vecs->iov_base;
58 int len = vecs->iov_len;
Mark Salyzyn6d753fa2016-03-10 08:25:33 -080059
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060 while (len > 0) {
61 int ret = write( fd, buf, len );
62 if (ret < 0) {
63 if (total == 0)
64 total = -1;
65 goto Exit;
66 }
67 if (ret == 0)
68 goto Exit;
69
70 total += ret;
71 buf += ret;
72 len -= ret;
73 }
74 }
Mark Salyzyn6d753fa2016-03-10 08:25:33 -080075Exit:
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080076 return total;
77}
78
Elliott Hughes111e3d32014-11-25 13:27:43 -080079#endif