/**
* Copyright 2008 - 2015 The Loon Game Engine Authors
*
* 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.
*
* @project loon
* @author cping
* @email:javachenpeng@yahoo.com
* @version 0.5
*/
package loon.robovm;
import java.io.UnsupportedEncodingException;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import loon.Asyn;
import loon.utils.reply.GoFuture;
import loon.utils.reply.GoPromise;
import org.robovm.apple.foundation.NSData;
import org.robovm.apple.foundation.NSError;
import org.robovm.apple.foundation.NSHTTPURLResponse;
import org.robovm.apple.foundation.NSMutableData;
import org.robovm.apple.foundation.NSMutableURLRequest;
import org.robovm.apple.foundation.NSURL;
import org.robovm.apple.foundation.NSURLConnection;
import org.robovm.apple.foundation.NSURLConnectionDataDelegateAdapter;
import org.robovm.apple.foundation.NSURLRequest;
import org.robovm.apple.foundation.NSURLResponse;
public class RoboVMNet extends RoboVMAbstractNet {
private final Asyn exec;
public RoboVMNet(Asyn exec) {
this.exec = exec;
}
@Override protected GoFuture<Response> execute(Builder req) {
GoPromise<Response> result = exec.deferredPromise();
NSMutableURLRequest mreq = new NSMutableURLRequest();
mreq.setURL(new NSURL(req.url));
for (Header header : req.headers) {
mreq.setHTTPHeaderField(header.name, header.value);
}
mreq.setHTTPMethod(req.method());
if (req.isPost()) {
mreq.setHTTPHeaderField("Content-type", req.contentType());
if (req.payloadString != null) {
try {
mreq.setHTTPBody(new NSData(req.payloadString.getBytes("UTF-8")));
} catch (UnsupportedEncodingException uee) {
throw new RuntimeException(uee);
}
} else {
mreq.setHTTPBody(new NSData(req.payloadBytes));
}
}
sendRequest(mreq, result);
return result;
}
@SuppressWarnings("deprecation")
protected void sendRequest(NSURLRequest req, final GoPromise<Response> result) {
new NSURLConnection(req, new NSURLConnectionDataDelegateAdapter() {
private NSMutableData data;
private int rspCode = -1;
private Map<String,String> headers;
@Override public void didReceiveResponse(NSURLConnection conn, NSURLResponse rsp) {
data = new NSMutableData();
if (rsp instanceof NSHTTPURLResponse) {
NSHTTPURLResponse hrsp = (NSHTTPURLResponse)rsp;
rspCode = (int)hrsp.getStatusCode();
headers = hrsp.getAllHeaderFields();
}
}
@Override public void didReceiveData(NSURLConnection conn, NSData data) {
this.data.append(data);
}
@Override public void didFail(NSURLConnection conn, NSError error) {
String errmsg = error.getLocalizedDescription();
result.fail(rspCode > 0 ? new HttpException(rspCode, errmsg) : new Exception(errmsg));
}
@Override public void didFinishLoading(NSURLConnection conn) {
result.succeed(new Response(rspCode) {
@Override protected Map<String,List<String>> extractHeaders() {
Map<String,List<String>> headerMap = new HashMap<String,List<String>>();
if (headers != null) {
for (Map.Entry<String,String> entry : headers.entrySet()) {
headerMap.put(entry.getKey(), Collections.singletonList(entry.getValue()));
}
}
return headerMap;
}
@Override public String payloadString() {
try {
return new String(data.getBytes(), "UTF-8");
} catch (UnsupportedEncodingException uee) {
throw new RuntimeException(uee);
}
}
@Override public byte[] payload() {
return data.getBytes();
}
});
}
}, true);
}
}