1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
| #include <windows.h> #include <winsock2.h> #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <sys/types.h>
#include "java_net_SocketOutputStream.h"
#include "net_util.h" #include "jni_util.h"
static jfieldID IO_fd_fdID;
JNIEXPORT void JNICALL Java_java_net_SocketOutputStream_init(JNIEnv *env, jclass cls) { IO_fd_fdID = NET_GetFileDescriptorID(env); }
JNIEXPORT void JNICALL Java_java_net_SocketOutputStream_socketWrite0(JNIEnv *env, jobject this, jobject fdObj, jbyteArray data, jint off, jint len) { char *bufP; char BUF[MAX_BUFFER_LEN]; int buflen; int fd;
if (IS_NULL(fdObj)) { JNU_ThrowByName(env, JNU_JAVANETPKG "SocketException", "Socket closed"); return; } else { fd = (*env)->GetIntField(env, fdObj, IO_fd_fdID); } if (IS_NULL(data)) { JNU_ThrowNullPointerException(env, "data argument"); return; }
if (len <= MAX_BUFFER_LEN) { bufP = BUF; buflen = MAX_BUFFER_LEN; } else { buflen = min(MAX_HEAP_BUFFER_LEN, len); bufP = (char *)malloc((size_t)buflen); if (bufP == NULL) { bufP = BUF; buflen = MAX_BUFFER_LEN; } }
while(len > 0) { int loff = 0; int chunkLen = min(buflen, len); int llen = chunkLen; int retry = 0;
(*env)->GetByteArrayRegion(env, data, off, chunkLen, (jbyte *)bufP);
while(llen > 0) { int n = send(fd, bufP + loff, llen, 0); if (n > 0) { llen -= n; loff += n; continue; }
if (WSAGetLastError() == WSAENOBUFS) { if (llen > MAX_BUFFER_LEN) { buflen = MAX_BUFFER_LEN; chunkLen = MAX_BUFFER_LEN; llen = MAX_BUFFER_LEN; continue; } if (retry >= 30) { JNU_ThrowByName(env, JNU_JAVANETPKG "SocketException", "No buffer space available - exhausted attempts to queue buffer"); if (bufP != BUF) { free(bufP); } return; } Sleep(1000); retry++; continue; }
if (WSAGetLastError() == WSAENOTSOCK) { JNU_ThrowByName(env, JNU_JAVANETPKG "SocketException", "Socket closed"); } else { NET_ThrowCurrent(env, "socket write error"); } if (bufP != BUF) { free(bufP); } return; } len -= chunkLen; off += chunkLen; }
if (bufP != BUF) { free(bufP); } }
|