-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Extracts the delta client from the bundle downloader. This will allow us to extract an interface, and provide a different implementation for C++ delta bundling (where we will pass deltas directly to native code). Reviewed By: pakoito Differential Revision: D6900904 fbshipit-source-id: 358705615eecc15afa0de3e50478468ad840d250
- Loading branch information
1 parent
6e44356
commit 1019bda
Showing
2 changed files
with
126 additions
and
114 deletions.
There are no files selected for viewing
121 changes: 121 additions & 0 deletions
121
ReactAndroid/src/main/java/com/facebook/react/devsupport/BundleDeltaClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
package com.facebook.react.devsupport; | ||
|
||
import android.util.JsonReader; | ||
import android.util.JsonToken; | ||
import java.io.File; | ||
import java.io.FileOutputStream; | ||
import java.io.IOException; | ||
import java.io.InputStreamReader; | ||
import java.util.LinkedHashMap; | ||
import javax.annotation.Nullable; | ||
import okio.BufferedSource; | ||
|
||
public class BundleDeltaClient { | ||
|
||
final LinkedHashMap<Number, byte[]> mPreModules = new LinkedHashMap<Number, byte[]>(); | ||
final LinkedHashMap<Number, byte[]> mDeltaModules = new LinkedHashMap<Number, byte[]>(); | ||
final LinkedHashMap<Number, byte[]> mPostModules = new LinkedHashMap<Number, byte[]>(); | ||
@Nullable String mDeltaId; | ||
|
||
static boolean isDeltaUrl(String bundleUrl) { | ||
return bundleUrl.indexOf(".delta?") != -1; | ||
} | ||
|
||
public void reset() { | ||
mDeltaId = null; | ||
mDeltaModules.clear(); | ||
mPreModules.clear(); | ||
mPostModules.clear(); | ||
} | ||
|
||
public String toDeltaUrl(String bundleURL) { | ||
if (isDeltaUrl(bundleURL) && mDeltaId != null) { | ||
return bundleURL + "&deltaBundleId=" + mDeltaId; | ||
} | ||
return bundleURL; | ||
} | ||
|
||
public synchronized boolean storeDeltaInFile(BufferedSource body, File outputFile) | ||
throws IOException { | ||
|
||
JsonReader jsonReader = new JsonReader(new InputStreamReader(body.inputStream())); | ||
|
||
jsonReader.beginObject(); | ||
|
||
int numChangedModules = 0; | ||
|
||
while (jsonReader.hasNext()) { | ||
String name = jsonReader.nextName(); | ||
if (name.equals("id")) { | ||
mDeltaId = jsonReader.nextString(); | ||
} else if (name.equals("pre")) { | ||
numChangedModules += patchDelta(jsonReader, mPreModules); | ||
} else if (name.equals("post")) { | ||
numChangedModules += patchDelta(jsonReader, mPostModules); | ||
} else if (name.equals("delta")) { | ||
numChangedModules += patchDelta(jsonReader, mDeltaModules); | ||
} else { | ||
jsonReader.skipValue(); | ||
} | ||
} | ||
|
||
jsonReader.endObject(); | ||
jsonReader.close(); | ||
|
||
if (numChangedModules == 0) { | ||
// If we receive an empty delta, we don't need to save the file again (it'll have the | ||
// same content). | ||
return false; | ||
} | ||
|
||
FileOutputStream fileOutputStream = new FileOutputStream(outputFile); | ||
|
||
try { | ||
for (byte[] code : mPreModules.values()) { | ||
fileOutputStream.write(code); | ||
fileOutputStream.write('\n'); | ||
} | ||
|
||
for (byte[] code : mDeltaModules.values()) { | ||
fileOutputStream.write(code); | ||
fileOutputStream.write('\n'); | ||
} | ||
|
||
for (byte[] code : mPostModules.values()) { | ||
fileOutputStream.write(code); | ||
fileOutputStream.write('\n'); | ||
} | ||
} finally { | ||
fileOutputStream.flush(); | ||
fileOutputStream.close(); | ||
} | ||
|
||
return true; | ||
} | ||
|
||
private static int patchDelta(JsonReader jsonReader, LinkedHashMap<Number, byte[]> map) | ||
throws IOException { | ||
jsonReader.beginArray(); | ||
|
||
int numModules = 0; | ||
while (jsonReader.hasNext()) { | ||
jsonReader.beginArray(); | ||
|
||
int moduleId = jsonReader.nextInt(); | ||
|
||
if (jsonReader.peek() == JsonToken.NULL) { | ||
jsonReader.skipValue(); | ||
map.remove(moduleId); | ||
} else { | ||
map.put(moduleId, jsonReader.nextString().getBytes()); | ||
} | ||
|
||
jsonReader.endArray(); | ||
numModules++; | ||
} | ||
|
||
jsonReader.endArray(); | ||
|
||
return numModules; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters