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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
package server;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.InetSocketAddress;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map.Entry;
import com.sun.net.httpserver.Headers;
import com.sun.net.httpserver.HttpExchange;
import fileIO.ReadWrite;
import shared.Tools;
import structures.ByteBuilder;
import structures.StringNum;
public class ServerTools {
public static void main(String[] args){
String address=args[0];
int rounds=1;
String message="";
if(args.length>1){rounds=Integer.parseInt(args[1]);}
if(args.length>2){message=args[2];}
byte[] messageBytes=message.getBytes();
long[] times=new long[rounds];
StringNum response=null;
long prevTime=System.nanoTime();
for(int i=0; i<rounds; i++){
response=sendAndReceive(messageBytes, address);
long currentTime=System.nanoTime();
times[i]=currentTime-prevTime;
prevTime=currentTime;
System.out.println(times[i]);
}
System.out.println(response.s);
Arrays.sort(times);
long sum=Tools.sum(times);
System.out.println("Avg: \t"+sum/1000000.0+" ms");
System.out.println("QPS: \t"+(rounds*1000000000/sum)+" ms");
System.out.println("Median: \t"+(times[rounds/2]/1000000.0)+" ms");
}
public static ByteBuilder readPage(String address, boolean convert){
if(convert){address=PercentEncoding.commonSymbolToCode(address);}
// assert(false) : address;
ByteBuilder bb=new ByteBuilder(256);
boolean success=false;
for(int i=0; i<10 && !success; i++){
try {
URL url=new URL(address);
InputStream is=url.openStream();
byte[] buffer=new byte[4096];
for(int len=is.read(buffer); len>0; len=is.read(buffer)){
bb.append(buffer, 0, len);
}
is.close();
success=true;
} catch (MalformedURLException e) {
e.printStackTrace();
bb.clear();
Tools.pause(1000);
System.err.println("Retrying; attempt "+(i+1)+", URL "+address);
} catch (IOException e) {
e.printStackTrace();
bb.clear();
Tools.pause(1000);
System.err.println("Retrying; attempt "+(i+1)+", URL "+address);
}
}
return bb;
}
/** Send a message to a remote URL, and return the response.
* Set message to null if there is no message. */
public static StringNum sendAndReceive(byte[] message, String address){
address=PercentEncoding.commonSymbolToCode(address);
URL url=null;
InputStream is=null;
HttpURLConnection connection=null;
OutputStream os=null;
try {
url=new URL(address);
connection=(HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setConnectTimeout(40000); //For testing
os=connection.getOutputStream();
} catch (IOException e1) {
// System.err.println("A:\t"+address+" -> "+url+" -> "+connection+" -> "+os);
// TODO Auto-generated catch block
if(!suppressErrors){e1.printStackTrace();}
}
if(os!=null){
try {
//TODO: It may be useful to set a timeout here.
if(message!=null){os.write(message);}
} catch (IOException e) {
// System.err.println("B:\t"+connection+" -> "+os);
// TODO Auto-generated catch block
if(!suppressErrors){e.printStackTrace();}
}
try {
os.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
String result=null;
int responseCode=1;
if(connection!=null){
IOException noInputStream=null;
try {
is=connection.getInputStream();
} catch (IOException e) {
noInputStream=e;
}
if(is==null){is=connection.getErrorStream();}
try {
responseCode=connection.getResponseCode();
if(!suppressErrors && (responseCode<200 || responseCode>299)){
System.err.println("Error: Server returned response code "+responseCode);
}
} catch (IOException e) {
if(!suppressErrors) {
e.printStackTrace();
}
}
if(is!=null){
result=readStream(is);
try {
// System.err.println("C:\t"+connection+" -> "+os+" -> "+is+" -> "+(result!=null));
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}else if(noInputStream!=null && !suppressErrors){
noInputStream.printStackTrace();
}
}
return new StringNum(result, responseCode);
}
/** Send a message to a remote URL, and return the response.
* Set message to null if there is no message. */
public static StringNum sendAndReceiveFTP(byte[] message, String address){
address=PercentEncoding.commonSymbolToCode(address);
URL url=null;
InputStream is=null;
URLConnection connection=null;
OutputStream os=null;
try {
url=new URL(address);
connection=url.openConnection();
connection.setDoOutput(true);
connection.setConnectTimeout(40000); //For testing
os=connection.getOutputStream();
} catch (IOException e1) {
// System.err.println("A:\t"+address+" -> "+url+" -> "+connection+" -> "+os);
// TODO Auto-generated catch block
if(!suppressErrors){e1.printStackTrace();}
}
if(os!=null){
try {
//TODO: It may be useful to set a timeout here.
if(message!=null){os.write(message);}
} catch (IOException e) {
// System.err.println("B:\t"+connection+" -> "+os);
// TODO Auto-generated catch block
if(!suppressErrors){e.printStackTrace();}
}
try {
os.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
String result=null;
// int responseCode=1;
if(connection!=null){
IOException noInputStream=null;
try {
is=connection.getInputStream();
} catch (IOException e) {
noInputStream=e;
}
// try {
//responseCode=connection.getResponseCode();
// if(!suppressErrors && (responseCode<200 || responseCode>299)){
// System.err.println("Error: Server returned response code "+responseCode);
// }
// }
// catch (IOException e) {
// if(!suppressErrors) {
// e.printStackTrace();
// }
// }
if(is!=null){
result=readStream(is);
try {
// System.err.println("C:\t"+connection+" -> "+os+" -> "+is+" -> "+(result!=null));
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}else if(noInputStream!=null && !suppressErrors){
noInputStream.printStackTrace();
}
}
return new StringNum(result, 400);
}
/** Read the body of an incoming HTTP session */
public static String receive(HttpExchange t){
InputStream is=t.getRequestBody();
String s=readStream(is);
return s;
}
/** Completely read an InputStream into a String */
public static String readStream(InputStream is){
if(is==null){return null;}
try {
byte[] buffer=new byte[256];
int count=is.read(buffer);
int next=0;
while(count>-1){
next+=count;
if(next>=buffer.length){
buffer=Arrays.copyOf(buffer, buffer.length*2);
}
count=is.read(buffer, next, buffer.length-next);
}
is.close();
return new String(buffer, 0, next);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
/** Write to the body of an incoming HTTP session */
public static boolean reply(String response, String type, HttpExchange t, boolean verbose, int code, boolean close){
if(verbose){System.err.println("Sending: "+response);}
return reply(response.getBytes(), type, t, false, code, close);
}
/** Write to the body of an incoming HTTP session */
public static boolean replyWithFile(String path, String type, HttpExchange t, boolean verbose, int code, boolean close){
if(verbose){System.err.println("Sending: "+path);}
byte[] response=null;
try {
response=ReadWrite.readRaw(path);
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
response=new byte[0];
code=400; //Node sure about this
}
return reply(response, type, t, false, code, close);
}
/** Write to the body of an incoming HTTP session */
public static boolean reply(byte[] response, String type, HttpExchange t, boolean verbose, int code, boolean close){
if(verbose){System.err.println("Sending: "+response);}
{
Headers h = t.getResponseHeaders();
// String type="text/plain";
h.add("Content-Type", type);
}
try {
t.sendResponseHeaders(code, response.length);
OutputStream os = t.getResponseBody();
os.write(response);
os.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
if(close){t.close();}
return false;
}
if(close){t.close();}
return true;
}
/**
* Wait for a set amount of time
* @param millis Time to wait
*/
public static void pause(long millis){
Integer lock=new Integer(1);
synchronized(lock){
final long time=System.currentTimeMillis()+millis;
while(System.currentTimeMillis()<time){
try {
lock.wait(Tools.max(100, time-System.currentTimeMillis()));
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
public static String getClientAddress(HttpExchange t) {
InetSocketAddress client=t.getRemoteAddress();
// InetSocketAddress server=t.getLocalAddress();
//This is for IPv4, class A. Probably extends outside of Berkeley.
String clientAddress=client.toString();
// String ls=server.toString();
if(clientAddress.contains("127.0.0.1")){
Headers clientRequestHeaders=t.getRequestHeaders();
// Headers resh=t.getResponseHeaders();
String xff=clientRequestHeaders.getFirst("X-forwarded-for");
if(xff!=null){clientAddress=xff;}
// System.err.println("\nRequest: ");
// for(Entry<String, List<String>> entry : reqh.entrySet()){
// System.err.println(entry.getKey()+" -> "+entry.getValue());
// }
}
return clientAddress;
}
public static boolean isInternalQuery(HttpExchange t, String prefix, boolean allowLocalHost, boolean printIP, boolean printHeaders){
InetSocketAddress client=t.getRemoteAddress();
InetSocketAddress server=t.getLocalAddress();
if(printIP){System.err.println(client+"\t"+server);}
//This is for IPv4, class A. Probably extends outside of Berkeley.
String clientAddress=client.toString();
String serverAddress=server.toString();
if(clientAddress.contains("127.0.0.1")){//TODO: contains versus startsWith?
Headers requestHeaders=t.getRequestHeaders();
if(printHeaders){
Headers responseHeaders=t.getResponseHeaders();
System.err.println("\nRequest: ");
for(Entry<String, List<String>> entry : requestHeaders.entrySet()){
System.err.println(entry.getKey()+" -> "+entry.getValue());
}
System.err.println("\nResponse: ");
for(Entry<String, List<String>> entry : responseHeaders.entrySet()){
System.err.println(entry.getKey()+" -> "+entry.getValue());
}
}
final String xff=requestHeaders.getFirst("X-forwarded-for");
if(xff!=null){
if(xff.startsWith(prefix)){return true;}
clientAddress=xff;
}else{
return allowLocalHost;
}
}else{
if(clientAddress.startsWith(prefix)){return true;}
}
//Makes sure they match up to the first delimiter
//TODO: This needs to be reviewed
for(int i=0, max=Tools.max(clientAddress.length(), serverAddress.length()); i<max; i++){
char cc=clientAddress.charAt(i), sc=serverAddress.charAt(i);
if(cc!=sc){break;}
if(cc=='.'){//IPv4
return true;
}else if(cc==':'){//IPv6; probably depends on how long the mask is
return true;
}
}
return false;
}
public static ArrayList<String> listDirectory(String baseAddress, final int retries){
// System.err.println("listDirectory '"+baseAddress+"'");
while(baseAddress.endsWith("/")){baseAddress=baseAddress.substring(0, baseAddress.length()-1);}
String baseAddress2=baseAddress.substring(0, baseAddress.lastIndexOf('/')+1);
String address=baseAddress+";type=d";
ArrayList<String> list=new ArrayList<String>();
boolean success=false;
for(int i=Tools.min(0, retries); !success && i<=retries; i++) {
try {
// System.err.println("URL '"+address+"'");
URL url=new URL(address);
URLConnection connection=url.openConnection();
InputStream is=connection.getInputStream();
BufferedReader br=new BufferedReader(new InputStreamReader(is));
String line=null;
while((line=br.readLine())!=null) {
list.add(baseAddress2+line);
}
is.close();
success=true;
} catch (IOException e) {
e.printStackTrace();
if(i<retries){
try {
int x=Tools.mid(30000, i*1000, 1000);
System.err.println("Sleeping for "+x+"ms...");
Thread.sleep(x);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
System.err.println("** Retrying ** "+address);
list.clear();
}else{
System.err.println("*** Gave up ***");
}
}
}
return list;
}
public static ArrayList<String> readFTPFile(String address) throws Exception{
address=PercentEncoding.commonSymbolToCode(address);
URL url = new URL(address);
URLConnection conn = url.openConnection();
BufferedReader reader = new BufferedReader(new InputStreamReader(
conn.getInputStream()));
ArrayList<String> list=new ArrayList<String>();
for(String s=reader.readLine(); s!=null; s=reader.readLine()){
list.add(s);
}
return list;
}
/** Don't print caught exceptions */
public static boolean suppressErrors=false;
}
|