AppRTCDemo(android): remove HTML/regex hackery in favor of JSON struct.
BUG=3407 R=glaznev@webrtc.org Review URL: https://webrtc-codereview.appspot.com/16619006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6345 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
65d61c3924
commit
130fa64d4c
@ -215,6 +215,8 @@ public class AppRTCClient {
|
||||
}
|
||||
try {
|
||||
return getParametersForRoomUrl(urls[0]);
|
||||
} catch (JSONException e) {
|
||||
throw new RuntimeException(e);
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
@ -231,33 +233,26 @@ public class AppRTCClient {
|
||||
iceServersObserver.onIceServers(appRTCSignalingParameters.iceServers);
|
||||
}
|
||||
|
||||
// Fetches |url| and fishes the signaling parameters out of the HTML via
|
||||
// regular expressions.
|
||||
//
|
||||
// TODO(fischman): replace this hackery with a dedicated JSON-serving URL in
|
||||
// apprtc so that this isn't necessary (here and in other future apps that
|
||||
// want to interop with apprtc).
|
||||
// Fetches |url| and fishes the signaling parameters out of the JSON.
|
||||
private AppRTCSignalingParameters getParametersForRoomUrl(String url)
|
||||
throws IOException {
|
||||
final Pattern fullRoomPattern = Pattern.compile(
|
||||
".*\n *Sorry, this room is full\\..*");
|
||||
throws IOException, JSONException {
|
||||
url = url + "&t=json";
|
||||
JSONObject roomJson = new JSONObject(
|
||||
drainStream((new URL(url)).openConnection().getInputStream()));
|
||||
|
||||
String roomHtml =
|
||||
drainStream((new URL(url)).openConnection().getInputStream());
|
||||
|
||||
Matcher fullRoomMatcher = fullRoomPattern.matcher(roomHtml);
|
||||
if (fullRoomMatcher.find()) {
|
||||
throw new IOException("Room is full!");
|
||||
if (roomJson.has("error")) {
|
||||
JSONArray errors = roomJson.getJSONArray("error_messages");
|
||||
throw new IOException(errors.toString());
|
||||
}
|
||||
|
||||
String gaeBaseHref = url.substring(0, url.indexOf('?'));
|
||||
String token = getVarValue(roomHtml, "channelToken", true);
|
||||
String token = roomJson.getString("token");
|
||||
String postMessageUrl = "/message?r=" +
|
||||
getVarValue(roomHtml, "roomKey", true) + "&u=" +
|
||||
getVarValue(roomHtml, "me", true);
|
||||
boolean initiator = getVarValue(roomHtml, "initiator", false).equals("1");
|
||||
roomJson.getString("room_key") + "&u=" +
|
||||
roomJson.getString("me");
|
||||
boolean initiator = roomJson.getInt("initiator") == 1;
|
||||
LinkedList<PeerConnection.IceServer> iceServers =
|
||||
iceServersFromPCConfigJSON(getVarValue(roomHtml, "pcConfig", false));
|
||||
iceServersFromPCConfigJSON(roomJson.getString("pc_config"));
|
||||
|
||||
boolean isTurnPresent = false;
|
||||
for (PeerConnection.IceServer server : iceServers) {
|
||||
@ -267,21 +262,20 @@ public class AppRTCClient {
|
||||
}
|
||||
}
|
||||
if (!isTurnPresent) {
|
||||
iceServers.add(
|
||||
requestTurnServer(getVarValue(roomHtml, "turnUrl", true)));
|
||||
iceServers.add(requestTurnServer(roomJson.getString("turn_url")));
|
||||
}
|
||||
|
||||
MediaConstraints pcConstraints = constraintsFromJSON(
|
||||
getVarValue(roomHtml, "pcConstraints", false));
|
||||
roomJson.getString("pc_constraints"));
|
||||
addDTLSConstraintIfMissing(pcConstraints);
|
||||
Log.d(TAG, "pcConstraints: " + pcConstraints);
|
||||
MediaConstraints videoConstraints = constraintsFromJSON(
|
||||
getAVConstraints("video",
|
||||
getVarValue(roomHtml, "mediaConstraints", false)));
|
||||
roomJson.getString("media_constraints")));
|
||||
Log.d(TAG, "videoConstraints: " + videoConstraints);
|
||||
MediaConstraints audioConstraints = constraintsFromJSON(
|
||||
getAVConstraints("audio",
|
||||
getVarValue(roomHtml, "mediaConstraints", false)));
|
||||
roomJson.getString("media_constraints")));
|
||||
Log.d(TAG, "audioConstraints: " + audioConstraints);
|
||||
|
||||
return new AppRTCSignalingParameters(
|
||||
@ -369,27 +363,6 @@ public class AppRTCClient {
|
||||
}
|
||||
}
|
||||
|
||||
// Scan |roomHtml| for declaration & assignment of |varName| and return its
|
||||
// value, optionally stripping outside quotes if |stripQuotes| requests it.
|
||||
private String getVarValue(
|
||||
String roomHtml, String varName, boolean stripQuotes)
|
||||
throws IOException {
|
||||
final Pattern pattern = Pattern.compile(
|
||||
".*\n *var " + varName + " = ([^\n]*);\n.*");
|
||||
Matcher matcher = pattern.matcher(roomHtml);
|
||||
if (!matcher.find()) {
|
||||
throw new IOException("Missing " + varName + " in HTML: " + roomHtml);
|
||||
}
|
||||
String varValue = matcher.group(1);
|
||||
if (matcher.find()) {
|
||||
throw new IOException("Too many " + varName + " in HTML: " + roomHtml);
|
||||
}
|
||||
if (stripQuotes) {
|
||||
varValue = varValue.substring(1, varValue.length() - 1);
|
||||
}
|
||||
return varValue;
|
||||
}
|
||||
|
||||
// Requests & returns a TURN ICE Server based on a request URL. Must be run
|
||||
// off the main thread!
|
||||
private PeerConnection.IceServer requestTurnServer(String url) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user