Newer
Older

Silas S. Brown
committed
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
@TargetApi(11) public void onClick(android.content.DialogInterface dialog,int id) {
int test=0,i;
if(gg.length()==0) --test;
for(i=0; i<3; i++) if(hanpingVersion[i]!=0 && ++test==id) { Intent h = new Intent(Intent.ACTION_VIEW); h.setData(new android.net.Uri.Builder().scheme(hanpingVersion[i]<906030000?"dictroid":"hanping").appendEncodedPath((hanpingPackage[i].indexOf("canto")!=-1)?"yue":"cmn").appendEncodedPath("word").appendPath(tt).build()); h.setPackage(hanpingPackage[i]); h.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK); try { startActivity(h); } catch (ActivityNotFoundException e) { Toast.makeText(act, "Failed. Hanping uninstalled?",Toast.LENGTH_LONG).show(); } }
if(gotPleco && ++test==id) { Intent p = new Intent(Intent.ACTION_MAIN); p.setComponent(new android.content.ComponentName("com.pleco.chinesesystem","com.pleco.chinesesystem.PlecoDroidMainActivity")); p.addCategory(Intent.CATEGORY_LAUNCHER); p.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP); p.putExtra("launch_section", "dictSearch"); p.putExtra("replacesearchtext", tt+aa); try { startActivity(p); } catch (ActivityNotFoundException e) { Toast.makeText(act, "Failed. Pleco uninstalled?",Toast.LENGTH_LONG).show(); } }"""
if android_audio: android_src += br"""
if(++test==id) { sendToAudio(tt); act.runOnUiThread(new DialogTask(tt,aa,gg)); }"""
android_src += br"""
} });
} else"""
android_src += br"""
if(gg.length()>0) d.setMessage(gg);
d.setNegativeButton("Copy",new android.content.DialogInterface.OnClickListener() {
public void onClick(android.content.DialogInterface dialog,int id) { copy(tt+aa+" "+gg,false); }
});"""
if pleco_hanping:
if android_audio: android_src += br"""
if(dictionaries==0 && tt.length()>0) d.setNeutralButton("Audio", new android.content.DialogInterface.OnClickListener() {public void onClick(android.content.DialogInterface dialog,int id) {sendToAudio(tt); act.runOnUiThread(new DialogTask(tt,aa,gg));}});"""
else: android_src += br"""
if(dictionaries==1) { /* for consistency with old versions, have a 'middle button' if there's only one recognised dictionary app installed */
if(tt.length()==0) { /* Pleco or Hanping button not added if empty title i.e. error/info box */ }
else if(gotPleco) d.setNeutralButton("Pleco", new android.content.DialogInterface.OnClickListener() {
public void onClick(android.content.DialogInterface dialog,int id) {
Intent i = new Intent(Intent.ACTION_MAIN);
i.setComponent(new android.content.ComponentName("com.pleco.chinesesystem","com.pleco.chinesesystem.PlecoDroidMainActivity"));
i.addCategory(Intent.CATEGORY_LAUNCHER);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
i.putExtra("launch_section", "dictSearch");
i.putExtra("replacesearchtext", tt+aa);
try { startActivity(i); } catch (ActivityNotFoundException e) { Toast.makeText(act, "Failed. Pleco uninstalled?",Toast.LENGTH_LONG).show(); }
}
}); else d.setNeutralButton("Hanping", new android.content.DialogInterface.OnClickListener() {
@TargetApi(11)
public void onClick(android.content.DialogInterface dialog,int id) {
int v; for(v=0; hanpingVersion[v]==0; v++);
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(new android.net.Uri.Builder().scheme(hanpingVersion[v]<906030000?"dictroid":"hanping").appendEncodedPath((hanpingPackage[v].indexOf("canto")!=-1)?"yue":"cmn").appendEncodedPath("word").appendPath(tt).build());
i.setPackage(hanpingPackage[v]);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
try { startActivity(i); } catch (ActivityNotFoundException e) { Toast.makeText(act, "Failed. Hanping uninstalled?",Toast.LENGTH_LONG).show(); }
}
}); }"""
if glossfile: android_src += br"""
if (tt.length()>0) {
// TODO: 3-line persist to pop-ups (re-scan the DOM)?
// TODO: 3-line persist to other pages? (might be counterproductive to encouraging people not to rely on it)
// TODO: if already pressed, call it 2-line and reverse the substitution? (or just reload the page), AFTER scanning the DOM for popups (as currently pressing a second time is the only way to get 3line in popups)
d.setPositiveButton("3 line", new android.content.DialogInterface.OnClickListener() {
public void onClick(android.content.DialogInterface dialog,int id) {
class InjectorTask implements Runnable { InjectorTask() {} @Override public void run() { browser.loadUrl(
"javascript:var ad0=document.getElementsByClassName('_adjust0');for(i=0;i<ad0.length;i++){ad0[i].innerHTML=ad0[i].innerHTML.replace(/<ruby[^>]*title=\"([^\"]*)\"><rb>(.*?)<[/]rb><rt>(.*?)<[/]rt><[/]ruby>/g,function(m,title,rb,rt){return '<ruby title=\"'+title+'\"><rp>'+rb+'</rp><rp>'+rt+'</rp><rt>'+title.split(' || ').map(function(m){return m.replace(/^([(]?[^/(;]*).*/,'$1')}).join(' ')+'</rt><rt>'+rt+'</rt><rb>'+rb+'</rb></ruby>'});if(!ad0[i].inLink){var a=ad0[i].getElementsByTagName('ruby'),j;for(j=0;j < a.length; j++)a[j].addEventListener('click',annotPopAll)}} ad0=document.body.innerHTML;ssb_local_annotator.alert('','','3-line definitions tend to be incomplete!')"
/* Above rp elements are to make firstChild etc work in
dialogue. Don't do whole document.body.innerHTML, or
scripts like document.write may execute a second time,
but DO read innerHTML afterwards to work around bug in
Chrome 33, otherwise whole document replaced by last
ad0 found. Also need the alert box, or document.write
scripts in the page run twice. (This 'tend to be
incomplete' message seems as good as any. NB the
glosses are being trimmed.) onclick= is removed in the
postprocessing loop due to sites that put unsafe-inline
in their Content-Security-Policy headers. */
); } } act.runOnUiThread(new InjectorTask()); }});
} else """
android_src += br"""
d.setPositiveButton("OK", null); // or can just click outside the dialog to clear. (TODO: would be nice if it could pop up somewhere near the word that was touched)
try { d.create().show(); }
catch(Exception e) {
Toast.makeText(act, "Unable to create popup box",Toast.LENGTH_LONG).show(); // some reports of WindowManager$BadTokenException crash, maybe users are popping up too many boxes at a time?? catching like this for now
}
}
}
act.runOnUiThread(new DialogTask(text,annot,gloss));
}
@JavascriptInterface public String getClip() {
String r=readClipboard(); if(r.equals(copiedText)) return ""; else return r;
}
@JavascriptInterface public boolean isFocused() {
return _isFocused;
}"""
if android_template: android_src += br"""
@JavascriptInterface public boolean canCustomZoom() {
return AndroidSDK >= 14;
}"""
if android_print: android_src += br"""
@JavascriptInterface public String canPrint() {
if(AndroidSDK >= 24) return "\ud83d\udda8";
else if(AndroidSDK >= 19) return "<span style=color:black;background:white;padding:0.3ex>P</span>";
else return "";
}
boolean printing_in_progress = false;
@TargetApi(19)
@JavascriptInterface public void print() {
act.runOnUiThread(new Runnable(){
@Override public void run() {
if(printing_in_progress) return;
printing_in_progress = true;
try {
((PrintManager) act.getSystemService(android.content.Context.PRINT_SERVICE)).print("annotated",new PrintDocumentAdapter(){
PrintDocumentAdapter delegate=(AndroidSDK >= 21) ? (PrintDocumentAdapter)(WebView.class.getMethod("createPrintDocumentAdapter",new Class[] { String.class }).invoke(browser,"Annotated document")) : browser.createPrintDocumentAdapter(); // (createPrintDocumentAdapter w/out string deprecated in API 21; using introspection so this still compiles with API 19 SDKs e.g. old Eclipse)
@Override @SuppressLint("WrongCall") public void onLayout(PrintAttributes a, PrintAttributes b, CancellationSignal c, LayoutResultCallback d, Bundle e) { delegate.onLayout(a, b, c, d, e); }
@Override public void onWrite(PageRange[] a, ParcelFileDescriptor b, CancellationSignal c, WriteResultCallback d) { try { delegate.onWrite(a,b,c,d); } catch(IllegalStateException e){Toast.makeText(act, "Print glitch. Press Back and try again.",Toast.LENGTH_LONG).show();} }
@Override public void onStart() { browser.setVisibility(android.view.View.INVISIBLE); delegate.onStart(); }
@Override public void onFinish() { delegate.onFinish(); browser.setVisibility(android.view.View.VISIBLE); printing_in_progress=false; }
},new PrintAttributes.Builder().build());
} catch (NoSuchMethodException e) {} catch (IllegalAccessException e) {} catch (InvocationTargetException e) {}
}
});
}"""
if android_template: android_src += br"""
@TargetApi(17)
@JavascriptInterface public boolean isDevMode() {
return ((AndroidSDK==16)?android.provider.Settings.Secure.getInt(getApplicationContext().getContentResolver(),android.provider.Settings.Secure.DEVELOPMENT_SETTINGS_ENABLED,0):((AndroidSDK>=17)?android.provider.Settings.Secure.getInt(getApplicationContext().getContentResolver(),android.provider.Settings.Global.DEVELOPMENT_SETTINGS_ENABLED,0):0)) != 0;
}
boolean devCSS = false;
@JavascriptInterface public void setDevCSS() {
devCSS = true;
}
@JavascriptInterface public boolean getDevCSS() {
return devCSS;
}"""
android_src += br"""
@JavascriptInterface public void bringToFront() {
if(AndroidSDK >= 3) {
startService(new Intent(MainActivity.this, BringToFront.class));
nextBackHides = true;
}
}
@JavascriptInterface public boolean canGoForward() { return browser.canGoForward(); }
@JavascriptInterface public String getSentText() { return sentText; }
@JavascriptInterface public String getLanguage() { return java.util.Locale.getDefault().getLanguage(); } /* ssb_local_annotator.getLanguage() returns "en", "fr", "de", "es", "it", "ja", "ko" etc */"""
if android_upload: android_src += br"""
@JavascriptInterface public void openPlayStore() {
/* ssb_local_annotator.openPlayStore() opens the Google "Play Store" page
for the app (if you've deployed it there), for use in encouraging
users to update to a more recent annotator etc (please don't use it
to ask for ratings: that is very annoying). Limited to only the
current app just in case a site being browsed tries to hijack it. */
String id=getApplicationContext().getPackageName();
Intent i=new Intent(Intent.ACTION_VIEW,android.net.Uri.parse("market://details?id="+id));
for(android.content.pm.ResolveInfo playApp: getApplicationContext().getPackageManager().queryIntentActivities(i,0)) {
if (playApp.activityInfo.applicationInfo.packageName.equals("com.android.vending")) {
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.addFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
i.setComponent(new android.content.ComponentName(playApp.activityInfo.applicationInfo.packageName,playApp.activityInfo.name));
getApplicationContext().startActivity(i);
return;
}
}
getApplicationContext().startActivity(new Intent(Intent.ACTION_VIEW,android.net.Uri.parse("https://play.google.com/store/apps/details?id="+id))); // fallback
}"""
android_src += br"""
@JavascriptInterface @TargetApi(11) public void copy(String copiedText,boolean toast) {
this.copiedText = copiedText;
if(AndroidSDK < Build.VERSION_CODES.HONEYCOMB)
((android.text.ClipboardManager)getSystemService(android.content.Context.CLIPBOARD_SERVICE)).setText(copiedText);
else ((android.content.ClipboardManager)getSystemService(android.content.Context.CLIPBOARD_SERVICE)).setPrimaryClip(android.content.ClipData.newPlainText(copiedText,copiedText));
if(toast) Toast.makeText(act, "Copied \""+copiedText+"\"",Toast.LENGTH_LONG).show();
}"""
if android_audio: android_src += br"""
@JavascriptInterface public void sendToAudio(final String s) {
class InjectorTask implements Runnable { InjectorTask() {} @Override public void run() { try { browser.loadUrl("javascript:var src='"""+android_audio+br""""+java.net.URLEncoder.encode(s,"utf-8")+"';if(!window.audioElement || window.audioElement.getAttribute('src')!=src){window.audioElement=document.createElement('audio');window.audioElement.setAttribute('src',src)}window.audioElement.play()"); } catch(java.io.UnsupportedEncodingException e) {} Toast.makeText(act, "Sent \""+s+"\" to audio server",Toast.LENGTH_LONG).show(); } };
act.runOnUiThread(new InjectorTask());
}"""
if epub: android_src += br"""
@JavascriptInterface public void getEPUB() { Intent i = new Intent(Intent.ACTION_GET_CONTENT); i.setType("*/*"); /* application/epub+zip leaves all files unselectable on Android 4.4 */ try { startActivityForResult(i, 8778); } catch (ActivityNotFoundException e) { Toast.makeText(act,"Please install a file manager",Toast.LENGTH_LONG).show(); } }"""
if bookmarks: android_src += br"""
@SuppressLint("DefaultLocale")
@JavascriptInterface public void addBM(String p) {
android.content.SharedPreferences.Editor e;
do {
android.content.SharedPreferences sp=getSharedPreferences("ssb_local_annotator",0);
String s=sp.getString("prefs", ",");
if((","+s).contains(","+p+",")) { // we have to give it a number
int count=1; String p2; while(true) {
p2=String.format("%s (%d)", p, ++count);
if(!(","+s).contains(","+p2+",")) break;
} p=p2;
}
s += p+",";
e = sp.edit();
e.putString("prefs",s);
} while(!e.commit());
Toast.makeText(act, "Added bookmark", Toast.LENGTH_LONG).show();
}
@JavascriptInterface public void deleteBM(String p) {
android.content.SharedPreferences.Editor e; boolean done=false; String s,p2;"""+B("".join(r"""
try {
do {
android.content.SharedPreferences sp=createPackageContext("%s", 0).getSharedPreferences("ssb_local_annotator",0);
p2=","+sp.getString("prefs", ",");
s=p2.replaceFirst(java.util.regex.Pattern.quote(","+p+","), ",");
if(s.equals(p2)) break;
e = sp.edit(); done=true;
e.putString("prefs",s.substring(1));
} while(!e.commit());
} catch(Exception x) {} if(done) return;""" % p for p in bookmarks.split(",") if not p==jPackage))+br"""
do {
android.content.SharedPreferences sp=getSharedPreferences("ssb_local_annotator",0);
p2=","+sp.getString("prefs", ",");
s=p2.replaceFirst(java.util.regex.Pattern.quote(","+p+","), ",");
if(s.equals(p2)) break;
e = sp.edit();
e.putString("prefs",s.substring(1));
} while(!e.commit());
}
@JavascriptInterface public String getBMs() {
String s="";"""+B("".join(r"""
try { s = createPackageContext("%s", 0).getSharedPreferences("ssb_local_annotator",0).getString("prefs", "")+","+s; } catch(Exception e) {}""" % p for p in bookmarks.split(",") if not p==jPackage))+br"""
return s+getSharedPreferences("ssb_local_annotator",0).getString("prefs", "");
}""" # and even if not bookmarks:
android_src += b"\n}\n"
if data_driven: android_src += b"try { annotator=new %%JPACKAGE%%.Annotator(getApplicationContext()); } catch(Exception e) { Toast.makeText(this,\"Cannot load annotator data!\",Toast.LENGTH_LONG).show(); String m=e.getMessage(); if(m!=null) Toast.makeText(this,m,Toast.LENGTH_LONG).show(); }" # TODO: should we keep a static synchronized annotator instance, in case some version of Android gives us multiple Activity instances and we start taking up more RAM than necessary?
else: android_src += b"annotator=new %%JPACKAGE%%.Annotator();"
android_src += br"""
browser.addJavascriptInterface(new A(this),"ssb_local_annotator"); // hope no conflict with web JS
final MainActivity act = this;
browser.setWebViewClient(new WebViewClient() {
@TargetApi(8) @Override public void onReceivedSslError(WebView view, android.webkit.SslErrorHandler handler, android.net.http.SslError error) { Toast.makeText(act,"Cannot check encryption! (phone too old?)",Toast.LENGTH_LONG).show(); if(AndroidSDK<0) handler.cancel(); else handler.proceed(); } // must include both cancel() and proceed() for Play Store, although Toast warning should be enough in our context
@TargetApi(4) public boolean shouldOverrideUrlLoading(WebView view,String url) {
if(url.endsWith(".apk") || url.endsWith(".pdf") || url.endsWith(".epub") || url.endsWith(".mp3") || url.endsWith(".zip")) {
// Let the default browser download this file, but prefer not to let EPUB-reader apps intercept the URL: we want it _downloaded_ so we can annotate it, but some users might get confused, so give preference to Chrome or Kindle Silk, starting the Chooser only if neither is installed
Intent i=new Intent(Intent.ACTION_VIEW,android.net.Uri.parse(url));
if(AndroidSDK < 4) startActivity(i); // no way to specify package preference
else { i.setPackage("com.android.chrome"); try { startActivity(i); } catch (ActivityNotFoundException e1) { i.setPackage("com.amazon.cloud9"); try { startActivity(i); } catch (ActivityNotFoundException e2) { i.setPackage(null); startActivity(i); } } }
return true;
} else {
needJsCommon=3; return false;
}
}"""
if epub: android_src += br"""
@TargetApi(11) public WebResourceResponse shouldInterceptRequest (WebView view, String url) {
String epubPrefix = "http://epub/"; // also in handleIntent, and in annogen.py should_suppress_toolset
loadingEpub = url.startsWith(epubPrefix); // TODO: what if an epub includes off-site prerequisites? (should we be blocking that?) : setting loadingEpub false would suppress the lrm marks (could make them unconditional but more overhead; could make loadingEpub 'stay on' for rest of session)
if (!loadingEpub) return null;
android.content.SharedPreferences sp=getPreferences(0);
String epubUrl=sp.getString("epub","");
if(epubUrl.length()==0) return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(("epubUrl setting not found").getBytes()));
Uri epubUri=Uri.parse(epubUrl);
String part=null; // for directory listing
boolean getNextPage = false;
if(url.contains("#")) url=url.substring(0,url.indexOf("#"));
if(url.length() > epubPrefix.length()) {
part=url.substring(epubPrefix.length());
if(part.startsWith("N=")) {
part=part.substring(2);
getNextPage = true;
}
}
ZipInputStream zin = null;
try {
zin = new ZipInputStream(getContentResolver().openInputStream(epubUri));
} catch (FileNotFoundException e) {
return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(("Unable to open "+epubUrl+"<p>"+e.toString()+"<p>Could this be a permissions problem?").getBytes()));
} catch (SecurityException e) {
return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(("Insufficient permissions to open "+epubUrl+"<p>"+e.toString()).getBytes()));
}
java.util.zip.ZipEntry ze;
try {
ByteArrayOutputStream f=null;
if(part==null) {
f=new ByteArrayOutputStream();
String fName=epubUrl;
int slash=fName.lastIndexOf("/"),slash2=fName.lastIndexOf("%2F"); if(slash2>slash) slash=slash2+2; if(slash>-1) fName=fName.substring(slash+1);
f.write(("<h2>"+fName+"</h2>Until I write a <em>real</em> table-of-contents handler, you have to make do with <em>this</em>:").getBytes());
}
boolean foundHTML = false; // doubles as 'foundPart' if getNextPage
while ((ze = zin.getNextEntry()) != null) {
if (part==null) {
if(ze.getName().contains("toc.xhtml")) return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(("Loading... <script>window.location='"+epubPrefix+ze.getName()+"'</script>").getBytes())); // TODO: we should really be getting this via content.opf which is ref'd in META-INF/container.xml <rootfile full-path= (but most epub files call it toc.xhtml and we do have a 'list all' fallback)
if(ze.getName().contains("htm")) { foundHTML = true; f.write(("<p><a href=\""+epubPrefix+ze.getName()+"\">"+ze.getName()+"</a>").getBytes()); }
} else if (ze.getName().equalsIgnoreCase(part)) {
if(getNextPage) {
foundHTML = true;
} else {
int bufSize=2048;
if(ze.getSize()==-1) {
f=new ByteArrayOutputStream();
} else {
bufSize=(int)ze.getSize();
f=new ByteArrayOutputStream(bufSize);
}
byte[] buf=new byte[bufSize];
int r; while ((r=zin.read(buf))!=-1) f.write(buf,0,r);
String mimeType=android.webkit.MimeTypeMap.getSingleton().getMimeTypeFromExtension(android.webkit.MimeTypeMap.getFileExtensionFromUrl(ze.getName()));
if(mimeType==null || mimeType.equals("application/xhtml+xml")) mimeType="text/html"; // needed for annogen style modifications
if(mimeType.equals("text/html")) {
// TODO: if ((epubUrl.startsWith("file:") || epubUrl.contains("com.android.externalstorage")) && part!="toc.xhtml") then getSharedPreferences putString("eR"+epubUrl,part) ? To avoid unbounded buildup, need to store only the most recent few (use one pref with separators? or other mechanism e.g. 0=url 1=url ... nxtWrite=2 w. wraparound?) Then add "jump to last seen page" link from both directory and toc.xhtml (latter will need manipulation as below)
return new WebResourceResponse(mimeType,"utf-8",new ByteArrayInputStream(f.toString().replaceFirst("</[bB][oO][dD][yY]>","<p><script>document.write("""+sort20px(br"""'<a class=ssb_local_annotator_noprint style=\"border: #1010AF solid !important; background: #1010AF !important; color: white !important; display: block !important; position: fixed !important; font-size: 20px !important; right: 0px; bottom: 0px;z-index:2147483647; -moz-opacity: 0.8 !important; opacity: 0.8 !important;\" href=\""+epubPrefix+"N="+part+"\">'""")+br""")</script>Next</a></body>").getBytes())); // TODO: will f.toString() work if f is utf-16 ?
} else return new WebResourceResponse(mimeType,"utf-8",new ByteArrayInputStream(f.toByteArray()));
}
} else if(foundHTML && ze.getName().contains("htm")) return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(("Loading... <script>window.location='"+epubPrefix+ze.getName()+"'</script>").getBytes()));
}
if(part==null) { if(!foundHTML) f.write(("<p>Error: No HTML files were found in this EPUB").getBytes()); return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(f.toByteArray())); }
else if(foundHTML) return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(("No more pages").getBytes()));
else return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream(("No zip entry for "+part+" in "+epubUrl).getBytes()));
} catch (IOException e) {
return new WebResourceResponse("text/html","utf-8",new ByteArrayInputStream("IOException".getBytes()));
} finally { try { zin.close(); } catch(IOException e) {} }
}"""
if android_print: android_print_script = br"""if(ssb_local_annotator.canPrint())document.write("""+sort20px(br"""'<a class=ssb_local_annotator_noprint style=\"border: #1010AF solid !important; background: #1010AF !important; display: block !important; position: fixed !important; font-size: 20px !important; left: 0px; bottom: 0px;z-index:2147483647; -moz-opacity: 0.8 !important; opacity: 0.8 !important;\" href=\"javascript:ssb_local_annotator.print()\">'""")+br"""+ssb_local_annotator.canPrint().replace('0.3ex','0.3ex;display:inline-block')+'</a>')"""
else: android_print_script = b""
if epub and android_print: android_src = android_src.replace(b"Next</a>",b"Next</a><script>"+android_print_script+b"</script>")
if not android_template: android_src += br"""
float scale = 0; boolean scaling = false;
public void onScaleChanged(final WebView view,float from,final float to) {
if (AndroidSDK < 19 || !view.isShown() || scaling || Math.abs(scale-to)<0.01) return;
scaling=view.postDelayed(new Runnable() { public void run() {
view.evaluateJavascript("document.body.style.width=((window.visualViewport!=undefined?window.visualViewport.width:window.innerWidth)-getComputedStyle(document.body).marginLeft.replace(/px/,'')*1-getComputedStyle(document.body).marginRight.replace(/px/,'')*1)+'px';window.setTimeout(function(){document.body.scrollLeft=0},400)",null); // window.outerWidth will still be excessive on 4.4; not sure there's much we can do about that
scale=to; scaling=false;
} }, 100);
}"""
android_src += br"""
public void onPageFinished(WebView view,String url) {
if(AndroidSDK < 19) // Pre-Android 4.4, so below runTimer() alternative won't work. This version has to wait for the page to load entirely (including all images) before annotating. Also handles displaying the forward button when needed (4.4+ uses different logic for this in onKeyDown, because API19+ reduces frequency of scans when same length, due to it being only a backup to MutationObserver)
browser.loadUrl("javascript:"+js_common+"function AnnotMonitor() { AnnotIfLenChanged();if(!document.doneFwd && ssb_local_annotator.canGoForward()){var e=document.getElementById('annogenFwdBtn');if(e){e.style.display='inline';document.doneFwd=1}}window.setTimeout(AnnotMonitor,1000)} AnnotMonitor()");
else browser.evaluateJavascript(js_common+"AnnotIfLenChanged(); var m=window.MutationObserver;if(m)new m(function(mut){var i,j;for(i=0;i<mut.length;i++)for(j=0;j<mut[i].addedNodes.length;j++){var n=mut[i].addedNodes[j],inLink=0,m=n,ok=1;while(ok&&m&&m!=document.body){inLink=inLink||(m.nodeName=='A'&&!!m.href);ok=m.className!='_adjust0';m=m.parentNode}if(ok)annotWalk(n,document,inLink,false)}}).observe(document.body,{childList:true,subtree:true})",null);
} });"""
if android_template: android_src += br"""
if(AndroidSDK >= 3 && AndroidSDK < 14) { /* (we have our own zoom functionality on API 14+ which works better on 19+) */
browser.getSettings().setBuiltInZoomControls(true);
} if (AndroidSDK < 14) {
final int size=Math.round(16*fs);
browser.getSettings().setDefaultFontSize(size);
browser.getSettings().setDefaultFixedFontSize(size);
}"""
else: android_src += br"""
if(AndroidSDK >= 3) browser.getSettings().setBuiltInZoomControls(true);
float fs = getResources().getConfiguration().fontScale; // from device accessibility settings
if (fs < 1.0f) fs = 1.0f; // bug in at least some versions of Android 8 returns 0 for fontScale
final int size=Math.round(16*fs); // from device accessibility settings (might be squared if OS does it too, but that's OK because the settings don't give enough of a range)
browser.getSettings().setDefaultFontSize(size);
browser.getSettings().setDefaultFixedFontSize(size);"""
android_src += br"""
browser.getSettings().setDefaultTextEncodingName("utf-8");
runTimerLoop();
if (savedInstanceState!=null) browser.restoreState(savedInstanceState); else
if (!handleIntent(getIntent())) browser.loadUrl("%%ANDROID-URL%%");
}
@Override
public void onNewIntent(Intent intent) {
super.onNewIntent(intent); handleIntent(intent);
}
boolean handleIntent(Intent intent) {
if(browser==null) return false;
if (Intent.ACTION_SEND.equals(intent.getAction()) && "text/plain".equals(intent.getType())) {
sentText = intent.getStringExtra(Intent.EXTRA_TEXT);
if (sentText == null) return false;
browser.loadUrl("javascript:document.close();document.noBookmarks=1;document.rubyScriptAdded=0;document.write('<html><head><meta name=\"mobileoptimized\" content=\"0\"><meta name=\"viewport\" content=\"width=device-width\"></head><body>'+ssb_local_annotator.getSentText().replace(/&/g,'&').replace(/</g,'<').replace(/(https?:\\/\\/[-!#%&+,.0-9:;=?@A-Z\\/_|~]+)/gi,function r(m,p1) { return '<a href=\"'+p1.replace('&','&')+'\">'+p1+'</a>'}).replace('\\n','<br>'));"""+android_print_script+br"""");
}
else if (Intent.ACTION_VIEW.equals(intent.getAction())) {
String url=intent.getData().toString();"""
if epub: android_src += br"""
if (((url.startsWith("file:") || url.startsWith("content:")) && url.endsWith(".epub")) || "application/epub+zip".equals(intent.getType())) openEpub(url); else"""
android_src += br""" loadingWait(url);
}
else return false; return true;
}
void loadingWait(String url) {
browser.loadUrl("javascript:document.close();document.noBookmarks=1;document.write('<html><head><meta name=\"mobileoptimized\" content=\"0\"><meta name=\"viewport\" content=\"width=device-width\"></head><body>Loading, please wait...</body>')");
browser.loadUrl(url);
}
String sentText = null;"""
if epub: android_src += br"""
void openEpub(String url) {
if(AndroidSDK<11 && url.endsWith(".epub")) { browser.loadUrl("javascript:document.close();document.noBookmarks=1;document.rubyScriptAdded=0;document.write('<html><head><meta name=\"mobileoptimized\" content=\"0\"><meta name=\"viewport\" content=\"width=device-width\"></head><body>This app'+\"'s EPUB handling requires Android 3 or above :-(</body>\")"); return; } // (Support for Android 2 would require using data URIs for images etc, and using shouldOverrideUrlLoading on all links)
// Android 5+ content:// URIs expire when the receiving Activity finishes, so we won't be able to add them to bookmarks (unless copy the entire epub, which is not good on a space-limited device)
android.content.SharedPreferences sp=getPreferences(0);
android.content.SharedPreferences.Editor e; do { e=sp.edit(); e.putString("epub",url); } while(!e.commit());
loadingWait("http://epub/"); // links will be absolute; browser doesn't have to change
}
@Override protected void onActivityResult(int request, int result, Intent intent) { if(request!=8778 || intent==null || result!=-1) return; boolean isEpub=false; try{byte[] buf=new byte[58]; getContentResolver().openInputStream(Uri.parse(intent.getData().toString())).read(buf,0,58); isEpub=buf[0]=='P' && buf[1]=='K' && buf[2]==3 && buf[3]==4 && new String(buf,30,28).equals("mimetypeapplication/epub+zip"); }catch(Exception e){} if(isEpub) openEpub(intent.getData().toString()); else {Toast.makeText(this, "That wasn't an EPUB file :-(",Toast.LENGTH_LONG).show();} }"""
if pleco_hanping: android_src += br"""
int dictionaries = 0;
boolean gotPleco = false;
String[] hanpingPackage = new String[]{"com.embermitre.hanping.cantodict.app.pro","com.embermitre.hanping.app.pro","com.embermitre.hanping.app.lite"};
int[] hanpingVersion = new int[]{0,0,0};"""
android_src += br"""
static final String js_common="""+b'"'+jsAnnot()+br"""";
@SuppressWarnings("deprecation")
@TargetApi(19)
void runTimerLoop() {
if(AndroidSDK >= 19) { // on Android 4.4+ we can do evaluateJavascript while page is still loading (useful for slow-network days) - but setTimeout won't usually work so we need an Android OS timer
final Handler theTimer = new Handler();
theTimer.postDelayed(new Runnable() {
@Override public void run() {
final Runnable r = this;
runOnUiThread(new Runnable() { @Override public void run() {
browser.evaluateJavascript(((needJsCommon>0)?js_common:"")+"AnnotIfLenChanged()",new android.webkit.ValueCallback<String>() {
@Override
public void onReceiveValue(String s) {
theTimer.postDelayed(r,(s!=null && s.contains("sameLen"))?5000:1000); // s.equals("\"sameLen\"", is this true in all versions of the API?)
}
});
if(needJsCommon>0) --needJsCommon;
} });
}
},0);
}
}
boolean nextBackHides = false, _isFocused = true;
int needJsCommon=3;
@Override public void onPause() { super.onPause(); nextBackHides = _isFocused = false; } // but may still be visible on Android 7+, so don't pause the browser yet
@Override public void onResume() { _isFocused = true; super.onResume(); }
@TargetApi(11) @Override public void onStop() { super.onStop(); if(browser!=null && AndroidSDK >= 11) browser.onPause(); } // NOW pause the browser (screen off or app not visible)
@TargetApi(11) @Override public void onStart() { super.onStart(); if(browser!=null && AndroidSDK >= 11) browser.onResume(); }
@Override public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
if (nextBackHides) {
nextBackHides = false;
if(moveTaskToBack(true)) return true;
}
if (browser!=null && browser.canGoBack()) {
final String fwdUrl=browser.getUrl();
browser.goBack();
if(AndroidSDK<19) return true; // before Android 4.4 we can't evaluateJavascript, and unclear if we can loadUrl javascript: when we don't have onPageFinished on back, but AnnotMonitor runs at a higher frequency so we let that do it instead of this
needJsCommon=3;
final Handler theTimer=new Handler();
theTimer.postDelayed(new Runnable() {
int tried=0;
@Override public void run() {
if(++tried==9) return;
runOnUiThread(new Runnable() {
@Override public void run() {
if(browser.getUrl().equals(fwdUrl)) {
// not yet finished going back
theTimer.postDelayed(this,500);
} else browser.evaluateJavascript("function annogenMakeFwd(){var e=document.getElementById('annogenFwdBtn'); if(e) e.style.display='inline'; else window.setTimeout(annogenMakeFwd,1000)}annogenMakeFwd()",null);
}});
}
},500);
return true;
}
} return super.onKeyDown(keyCode, event);
}
@SuppressWarnings("deprecation") // using getText so works on API 1 (TODO consider adding a version check and the more-modern alternative android.content.ClipData c=((android.content.ClipboardManager)getSystemService(android.content.Context.CLIPBOARD_SERVICE)).getPrimaryClip(); if (c != null && c.getItemCount()>0) return c.getItemAt(0).coerceToText(this).toString(); return ""; )
@TargetApi(11)
public String readClipboard() {
if(AndroidSDK < Build.VERSION_CODES.HONEYCOMB) // SDK_INT requires API 4 but this works on API 1
return ((android.text.ClipboardManager)getSystemService(android.content.Context.CLIPBOARD_SERVICE)).getText().toString();
android.content.ClipData c=((android.content.ClipboardManager)getSystemService(android.content.Context.CLIPBOARD_SERVICE)).getPrimaryClip();
if (c != null && c.getItemCount()>0) {
return c.getItemAt(0).coerceToText(this).toString();
}
return "";
}
@Override protected void onSaveInstanceState(Bundle outState) { if(browser!=null) browser.saveState(outState); }
@Override protected void onDestroy() { if(isFinishing() && AndroidSDK<23 && browser!=null) browser.clearCache(true); super.onDestroy(); } // (Chromium bug 245549 needed this workaround to stop taking up too much 'data' (not counted as cache) on old phones; it MIGHT be OK in API 22, or even API 20 with updates, but let's set the threshold at 23 just to be sure. This works only if the user exits via Back button, not via swipe in Activity Manager: no way to catch that.)
@SuppressWarnings("deprecation") // we use Build.VERSION.SDK only if we're on an Android so old that SDK_INT is not available:
int AndroidSDK = (android.os.Build.VERSION.RELEASE.startsWith("1.") ? Integer.valueOf(Build.VERSION.SDK) : Build.VERSION.SDK_INT);
WebView browser;"""
if epub: android_src += b" boolean loadingEpub = false;"
android_src += b"}\n"
android_bringToFront=br"""package %%JPACKAGE%%;
import android.annotation.TargetApi;
import android.content.Intent;
import android.os.Build;
@TargetApi(3)
public class BringToFront extends android.app.IntentService {
public BringToFront() { super(""); }
public BringToFront(String name) { super(name); }
@Override
protected void onHandleIntent(Intent workIntent) {
Intent i = getPackageManager().getLaunchIntentForPackage(getApplicationContext().getPackageName());
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
}
}
"""
android_clipboard = br"""<html><head><meta name="mobileoptimized" content="0"><meta name="viewport" content="width=device-width"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body>
<script>window.onerror=function(msg,url,line){ssb_local_annotator.alert('','',''+msg+' line '+line); return true}</script>
<h3 class="ssb_local_annotator_noprint">Clipboard</h3>
<div id="clip">waiting for clipboard contents</div>
<script>
var curClip="",isFocused=true,lastTime=new Date();
function update() {
var newClip = ssb_local_annotator.getClip();
var isF2 = ssb_local_annotator.isFocused();
var thisTime = new Date();
if (newClip && newClip != curClip) {
if(curClip && isFocused && isF2 && thisTime-lastTime < 2000) {
// looks like they copied from clipboard view itself
// - no need to replace the whole thing with this part
curClip=newClip;
} else {
document.getElementById('clip').innerHTML = newClip.replace(/&/g,'&').replace(/</g,'<').replace(/(https?:\/\/[-!#%&+,.0-9:;=?@A-Z\/_|~]+)/gi,function r(m,p1) { return '<a href="'+p1.replace('&','&')+'">'+p1+'</a>' });
if(typeof annotScan!='undefined') annotScan();
curClip = newClip; if(ssb_local_annotator.annotate(newClip)!=newClip) ssb_local_annotator.bringToFront(); // should work on Android 9 or below; Android Q (API 29) takes away background clipboard access and we'll just get newClip="" until we're brought to foreground manually
}
} isFocused = isF2; lastTime = thisTime;
window.setTimeout(update,1000) } update()"""
if android_print: android_clipboard += b';'+android_print_script.replace(br'\"',b'"')
android_clipboard += br"""</script>
</body></html>"""
java_src = br"""package %%JPACKAGE%%;
public class Annotator {
public Annotator() { %%JDATA%%
addrLen = data[0] & 0xFF;"""
if post_normalise: java_src += b"""
dPtr = 1; char[] compressedFreqs;
try {
compressedFreqs = new String(java.util.Arrays.copyOfRange(data,readAddr(),data.length), "UTF-16LE").toCharArray();
} catch (java.io.UnsupportedEncodingException e) {
// should never happen with UTF-16LE
return;
}
normalisationTable = new char[65536];
int maxRLE = compressedFreqs[0]; char w=0; // Java char is unsigned short
for(int cF=0; cF < compressedFreqs.length; cF++) {
if(compressedFreqs[cF] <= maxRLE) for(int j=0; j<compressedFreqs[cF]; j++) { normalisationTable[w]=w; w++; }
else normalisationTable[w++] = compressedFreqs[cF];
} while(w!=0) { normalisationTable[w]=w; w++; /* overflows to 0 */ }
}
char[] normalisationTable; byte[] origInBytes;"""
else: java_src += b"}"
java_src += br"""
int nearbytes;
byte[] inBytes;
public int inPtr,writePtr; boolean needSpace;
java.io.ByteArrayOutputStream outBuf;
public void sn(int n) { nearbytes = n; }
static final byte EOF = (byte)0; // TODO: a bit hacky
public byte nB() {
if (inPtr==inBytes.length) return EOF;
return inBytes[inPtr++];
}
public boolean n(String s) {
// for Yarowsky-like matching (use Strings rather than byte arrays or Java compiler can get overloaded)
return n(s2b(s));
}
public boolean n(byte[] bytes) {
int offset=inPtr, maxPos=inPtr+nearbytes;
if (maxPos > inBytes.length) maxPos = inBytes.length;
maxPos -= bytes.length;
if(offset>nearbytes) offset-=nearbytes; else offset = 0;
while(offset <= maxPos) {
boolean ok=true;
for(int i=0; i<bytes.length; i++) {
if(bytes[i]!=inBytes[offset+i]) { ok=false; break; }
}
if(ok) return true;
offset++;
}
return false;
}
public void o(byte c) { outBuf.write(c); }
public void o(byte[] a) { outBuf.write(a,0,a.length); }
public void o(String s) { o(s2b(s)); }
public void s() {
if (needSpace) o((byte)' ');
else needSpace=true;
}
public void s0() {
if (needSpace) { o((byte)' '); needSpace=false; }
}
public void c(int numBytes) { /* copyBytes */
for(;numBytes>0;numBytes--)
o(inBytes[writePtr++]); /* needSpace unchanged */
}
public void o(int numBytes,String annot) {
s();
o("<ruby><rb>");
for(;numBytes>0;numBytes--)
o(inBytes[writePtr++]);
o("</rb><rt>"); o(annot);
o("</rt></ruby>");
}
public void o2(int numBytes,String annot,String title) {
s();
o("<ruby title=\""); o(title);
o("\"><rb>");
for(;numBytes>0;numBytes--)
o(inBytes[writePtr++]);
o("</rb><rt>"); o(annot);
o("</rt></ruby>");
}
byte[] s2b(String s) {
// Convert string to bytes - version that works before Android API level 9 i.e. in Java 5 not 6. (Some versions of Android Lint sometimes miss the fact that s.getBytes(UTF8) where UTF8==java.nio.charset.Charset.forName("UTF-8") won't always work.) We could do an API9+ version and use @android.annotation.TargetApi(9) around the class, but anyway we'd rather not have to generate a special Android-specific version of Annotator as well as putting Android stuff in a separate class.)
try { return s.getBytes("UTF-8"); }
catch(java.io.UnsupportedEncodingException e) {
// should never happen for UTF-8
return null;
}
}"""
if data_driven:
if existing_ruby_shortcut_yarowsky: java_src += b"\npublic boolean shortcut_nearTest=false;"
java_src += br"""
byte[] data; int addrLen, dPtr;
int readAddr() {
int i,addr=0;
for (i=addrLen; i!=0; i--) addr=(addr << 8) | (int)(data[dPtr++]&0xFF); // &0xFF converts to unsigned
return addr;
}
byte[] readRefStr() {
int a = readAddr(); int l = data[a] & 0xFF;
if (l != 0) return java.util.Arrays.copyOfRange(data, a+1, a+l+1);
else {
int m = a+1; while(data[m]!=0) m++;
return java.util.Arrays.copyOfRange(data,a+1,m);
}
}
int switchByte_inner(int nBytes) {
if (inPtr < inBytes.length) {
byte b=nB();
int dP=dPtr, end = dPtr+nBytes;
while(dP < end) {
if(b==data[dP]) return dP-dPtr;
dP++;
}
}
return nBytes;
}
void readData() throws java.util.zip.DataFormatException{
java.util.LinkedList<Integer> sPos=new java.util.LinkedList<Integer>();
int c;
while(true) {
c = data[dPtr++] & 0xFF;
if ((c & 0x80)!=0) dPtr += (c&0x7F);
else if (c < 20) {
int i = switchByte_inner(++c);
if(i!=0) dPtr += (int)(data[dPtr+c+i-1]&0xFF);
dPtr += c+c;
} else switch(c) {
case 50: dPtr = readAddr(); break;
case 51: {
int f = readAddr(), dO=dPtr;
dPtr = f; readData() ; dPtr = dO;
break; }
case 52: return;
case 60: {
int nBytes = (int)(data[dPtr++]&0xFF) + 1;
int i = switchByte_inner(nBytes);
dPtr += (nBytes + i * addrLen);
dPtr = readAddr(); break; }
case 70: s0(); break;
case 71: case 74: {
int numBytes = data[dPtr++] & 0xFF;
while((numBytes--)!=0) o(inBytes[writePtr++]);
if(c==74) return; else break; }
case 72: case 75: {
int numBytes = data[dPtr++] & 0xFF;
byte[] annot = readRefStr();
s();
o("<ruby><rb>");
while((numBytes--)!=0) o(inBytes[writePtr++]);
o("</rb><rt>"); o(annot);
o("</rt></ruby>");
if(c==75) return; else break; }
case 73: case 76: {
int numBytes = data[dPtr++] & 0xFF;
byte[] annot = readRefStr();
byte[] title = readRefStr();
s();
o("<ruby title=\""); o(title);
o("\"><rb>");
while((numBytes--)!=0) o(inBytes[writePtr++]);
o("</rb><rt>"); o(annot);
o("</rt></ruby>");
if(c==76) return; else break; }
case 80: sPos.addFirst(inPtr); break;
case 81: inPtr=sPos.removeFirst(); break;
case 90: {
int tPtr = readAddr();
int fPtr = readAddr();"""
if existing_ruby_shortcut_yarowsky: java_src += br"""
if (shortcut_nearTest) {
dPtr = (tPtr<fPtr) ? tPtr : fPtr; // relying on BytecodeAssembler addActionDictSwitch behaviour: the higher pointer will be the one that skips past the 'if', so we want the lower one if we want to always take it
break;
}"""
java_src += br"""
sn(data[dPtr++] & 0xFF);
boolean found = false;
while (dPtr < tPtr && dPtr < fPtr) if (n(readRefStr())) { found = true; break; }
dPtr = found ? tPtr : fPtr; break; }
default: throw new java.util.zip.DataFormatException("corrupt data table");
}
}
}
"""
java_src += br"""
public String annotate(String txt) {"""
if existing_ruby_shortcut_yarowsky: java_src += br"""
boolean old_snt = shortcut_nearTest;
if(txt.length() < 2) shortcut_nearTest=false;
"""
if post_normalise: java_src += br"""
origInBytes=s2b(txt); char[] tmp=txt.toCharArray(); for(int i=0; i<tmp.length; i++) tmp[i]=normalisationTable[tmp[i]]; txt=new String(tmp);
"""
java_src += br"""
nearbytes=%%YBYTES%%;inBytes=s2b(txt);writePtr=0;needSpace=false;outBuf=new java.io.ByteArrayOutputStream();inPtr=0;
while(inPtr < inBytes.length) {
int oldPos=inPtr; """
if data_driven:
java_src = java_src.replace(b"annotate(String txt)",b"annotate(String txt) throws java.util.zip.DataFormatException")
if post_normalise: java_src += b"dPtr=1+addrLen;" # after byte nBytes, we'll have address of normalisation table, and then the bytecode itself
else: java_src += b"dPtr=1;" # just byte nBytes needs to be skipped
java_src += b"readData();"
else: java_src += b"%%JPACKAGE%%.topLevelMatch.f(this);"
java_src += br"""
if (oldPos==inPtr) { needSpace=false; o(nB()); writePtr++; }
}
String ret=null; try { ret=new String(outBuf.toByteArray(), "UTF-8"); } catch(java.io.UnsupportedEncodingException e) {}"""
if post_normalise: java_src = java_src.replace(b"inBytes[writePtr",b"origInBytes[writePtr").replace(b"o(nB()); writePtr++;",b"inPtr++; o(origInBytes[writePtr++]);")
if existing_ruby_shortcut_yarowsky: java_src += b"shortcut_nearTest=old_snt;"
java_src += br"""
inBytes=null; outBuf=null; return ret;
}
}
"""
android_loadData = br"""try { data=new byte[%%DLEN%%]; } catch (OutOfMemoryError e) { throw new java.io.IOException("Out of memory! Can't load annotator!"); }
context.getAssets().open("annotate.dat").read(data);"""
if zlib: android_loadData += br"""
java.util.zip.Inflater i=new java.util.zip.Inflater();
i.setInput(data);
byte[] decompressed; try { decompressed=new byte[%%ULEN%%]; } catch (OutOfMemoryError e) { throw new java.io.IOException("Out of memory! Can't unpack annotator!"); }
i.inflate(decompressed); i.end(); data = decompressed;
"""
if os.environ.get("ANNOGEN_CSHARP_NO_MAIN",""):
cSharp_mainNote = b""
else: cSharp_mainNote = br"""
// or just use the Main() at end (compile with csc, and
// see --help for usage)
// (to omit this Main() from the generated file, set
// the environment variable ANNOGEN_CSHARP_NO_MAIN before
// running Annotator Generator)"""
cSharp_start = b"// C# code "+version_stamp+br"""
// use: new Annotator(txt).result()
// (can also set annotation_mode on the Annotator)"""+cSharp_mainNote+br"""
enum Annotation_Mode { ruby_markup, annotations_only, brace_notation };
class Annotator {
public const string version="""+b'"'+version_stamp+br"""";
public Annotator(string txt) { nearbytes=%%YBYTES%%; inBytes=System.Text.Encoding.UTF8.GetBytes(txt); inPtr=0; writePtr=0; needSpace=false; outBuf=new System.IO.MemoryStream(); annotation_mode = Annotation_Mode.ruby_markup; }
int nearbytes;
public Annotation_Mode annotation_mode;
byte[] inBytes;
int inPtr,writePtr; bool needSpace;
System.IO.MemoryStream outBuf;
const byte EOF = (byte)0; // TODO: a bit hacky
byte nB() {
if (inPtr==inBytes.Length) return EOF;
return inBytes[inPtr++];
}
bool near(string s) {
byte[] bytes=System.Text.Encoding.UTF8.GetBytes(s);
int offset=inPtr, maxPos=inPtr+nearbytes;
if (maxPos > inBytes.Length) maxPos = inBytes.Length;
maxPos -= bytes.Length;
if(offset>nearbytes) offset-=nearbytes; else offset = 0;
while(offset <= maxPos) {
bool ok=true;
for(int i=0; i<bytes.Length; i++) {
if(bytes[i]!=inBytes[offset+i]) { ok=false; break; }
}
if(ok) return true;
offset++;
}
return false;
}
void o(byte c) { outBuf.WriteByte(c); }
void o(string s) { byte[] b=System.Text.Encoding.UTF8.GetBytes(s); outBuf.Write(b,0,b.Length); }
void s() {
if (needSpace) o((byte)' ');
else needSpace=true;
}
void s0() {
if (needSpace) { o((byte)' '); needSpace=false; }
}
void c(int numBytes) {
outBuf.Write(inBytes,writePtr,numBytes);
writePtr += numBytes;
}
void o(int numBytes,string annot) {
s();
switch (annotation_mode) {
case Annotation_Mode.annotations_only:
o(annot); break;
case Annotation_Mode.ruby_markup:
o("<ruby><rb>");
outBuf.Write(inBytes,writePtr,numBytes);
o("</rb><rt>"); o(annot);
o("</rt></ruby>"); break;
case Annotation_Mode.brace_notation:
o("{");
outBuf.Write(inBytes,writePtr,numBytes);
o("|"); o(annot);
o("}"); break;
}
writePtr += numBytes;
}
void o2(int numBytes,string annot,string title) {
if (annotation_mode == Annotation_Mode.ruby_markup) {
s();
o("<ruby title=\""); o(title);
o("\"><rb>");
outBuf.Write(inBytes,writePtr,numBytes);
writePtr += numBytes;
o("</rb><rt>"); o(annot);
o("</rt></ruby>");
} else o(numBytes,annot);
}
public string result() {
while(inPtr < inBytes.Length) {
int oldPos=inPtr;
topLevelMatch();
if (oldPos==inPtr) { needSpace=false; o(nB()); writePtr++; }
}
return System.Text.Encoding.UTF8.GetString(outBuf.ToArray());
}
"""
cSharp_end = b"}\n"
if cSharp_mainNote: cSharp_end += br"""
class Test {
static void Main(string[] args) {
Annotation_Mode annotation_mode = Annotation_Mode.ruby_markup;
for(int i=0; i<args.Length; i++) {
if (args[i]=="--help") {
System.Console.WriteLine("Use --ruby to output ruby markup (default)");
System.Console.WriteLine("Use --raw to output just the annotations without the base text");
System.Console.WriteLine("Use --braces to output as {base-text|annotation}");
return;
} else if(args[i]=="--ruby") {
annotation_mode = Annotation_Mode.ruby_markup;
} else if(args[i]=="--raw") {
annotation_mode = Annotation_Mode.annotations_only;
} else if(args[i]=="--braces") {
annotation_mode = Annotation_Mode.brace_notation;
}
}
System.Console.InputEncoding=System.Text.Encoding.UTF8;
System.Console.OutputEncoding=System.Text.Encoding.UTF8;
Annotator a=new Annotator(System.Console.In.ReadToEnd());
a.annotation_mode = annotation_mode;
System.Console.Write(a.result());
}
}
"""
golang_start = b'/* "Go" code '+version_stamp+br"""
To set up a Web service on old AppEngine (Go 1.11 or below),
put this file in a subdirectory of your project, and create a
top-level .go file with something like:
package server
import (
"net/http"
"%%PKG%%"
)
func init() {
http.HandleFunc("/", %%PKG%%_handler)
// add other handlers as appropriate
}
func %%PKG%%_handler(w http.ResponseWriter, r *http.Request) {
%%PKG%%.Annotate(r.Body,w)
}
Then in app.yaml:
application: whatever
version: 1
runtime: go
api_version: go1
handlers:
- url: /.*
script: _go_app
Then test with: goapp serve
(and POST to localhost:8080, e.g. via Web Adjuster --htmlFilter="http://localhost:8080")
(To deploy with Web Adjuster also on old AppEngine, you'll need two instances, because
although you could add Web Adjuster on the SAME one - put adjuster's app.yaml into a
python-api.yaml with "module: pythonapi" - there will be the issue of how to set the
URL handlers while making sure that Golang's has priority if it's an exception to .*)
*/
package %%PKG%%
import (
"sync"
"bytes"
"io"
)
// We have a Mutex for thread safety. TODO: option to put
// the global variables into a per-instance struct instead
var mutex sync.Mutex
var inBytes []byte = nil
var outBuf bytes.Buffer
var inPtr int
var writePtr int
var needSpace bool
var nearbytes int = 15
func nB() byte {
if (inPtr == len(inBytes)) {
return 0
}
tmp := inBytes[inPtr]
inPtr++
return tmp
}
func near(s0 string) bool {
s := make([]byte, len(s0))
copy (s,s0)
offset := inPtr
maxPos := inPtr + nearbytes
if maxPos > len(inBytes) {
maxPos = len(inBytes)
}
maxPos -= len(s)
if (offset > nearbytes) {
offset -= nearbytes
} else {
offset = 0
}
for(offset <= maxPos) {
ok := true ; i := 0
for (i < len(s)) {
if s[i] != inBytes[offset+i] {
ok = false ; break
}
i++
}
if (ok) {
return true
}
offset++
}
return false
}
func oB(c byte) {
outBuf.WriteByte(c)
}
func oS(s string) {
outBuf.WriteString(s)
}
func s() {
if(needSpace) {
oB(' ')
} else {
needSpace = true
}
}
func s0() {
if(needSpace) {
oB(' ')
needSpace = false
}
}
func c(numBytes int) {
for (numBytes > 0) {
// TODO: does Go have a way to do this in 1 operation?
oB(inBytes[writePtr])
numBytes--
writePtr++
}
}
func o(numBytes int,annot string) {
s()
oS("<ruby><rb>")
for (numBytes > 0) {
// TODO: does Go have a way to do this in 1 operation?
oB(inBytes[writePtr])
numBytes--
writePtr++
}
oS("</rb><rt>")
oS(annot)
oS("</rt></ruby>")
}
func o2(numBytes int,annot string,title string) {
s()
oS("<ruby title=\"")
oS(title)
oS("\"><rb>")
for (numBytes > 0) {
// TODO: as above
oB(inBytes[writePtr])
numBytes--
writePtr++
}
oS("</rb><rt>")
oS(annot)
oS("</rt></ruby>")
}
""".replace(b"%%PKG%%",B(golang))
golang_end=br"""
func Annotate(src io.Reader, dest io.Writer) {
inBuf := new(bytes.Buffer)
io.Copy(inBuf, src)
mutex.Lock()
inBytes = inBuf.Bytes()
inBuf.Reset() ; outBuf.Reset()