- Sep 27, 2019
-
-
Tobias Thierer authored
This CL topic introduces a new @CorePlatformApi MimeMap.Builder and uses it to make MimeMap a concrete, final, immutable type. This has the following advantages: - Consistency of behavior of MimeMap implementations with regards to lower-casing and treatment of null is trivial to guarantee because there is only one implementation. - The @CorePlatformApi surface now makes more sense. The responsibility for lower-casing and treatment of null was previously split between MimeMap in libcore and MimeMapImpl in frameworks/base, which is why MimeMap.toLowerCase() and MimeMap.isNullOrEmpty() were in the @CorePlatformApi. - Most of the logic now lives in libcore / ART module. frameworks/base now has minimal logic. This makes it easier to write (in a follow-up CL) a CTS test that asserts all the default mappings, because that test can now duplicate that small amount of logic in order to read from a copy of the same data files. Note: The semantics of the @CorePlatformApi Builder.put(String, List<String>) are fairly complex, which isn't great. This was done because: - By following the semantics of the *mime.types file format, it allows us to minimize the logic in frameworks/base. - It's simpler than having multiple overloads of put() for mimeType -> file extension mapping and vice versa, and for whether or not any existing mapping should be overwritten. If we had named classes for MimeType and FileExtension with appropriate case-insensitive equals and hashCode semantics, then we could instead have API such as builder.asMimeToExtensionMap().put(...) but existing API (e.g. Intent.getType(), android.webkit.MimeTypeMap) has set precedent for treating these as Strings. Bug: 136256059 Test: atest CtsLibcoreTestCases Test: atest CtsMimeMapTestCases Change-Id: I9a185a689745726dd79b15117892001461fa4a0d
-
Tobias Thierer authored
This is the second attempt to submit this CL. The first attempt regressed on app startup because RuntimeInit installed the custom MimeMap from commonInit() which runs post-fork of the zygote, but that was fixed by installing it pre-fork. This CL topic moves the default MimeMap implementation to frameworks. Libcore starts with a minimal implementation sufficient to pass CtsLibcoreTestCases, but frameworks can inject the real implementation. Before this CL topic, the data files and logic (MimeMapImpl) were part of core-*.jar on device; after this CL, they instead live in framework.jar. Tests from MimeMapTest that check behavior of that default implementation also move to a non-libcore CTS test. Planned work for follow-up CL: 1. Make CTS more opinionated, with a plan to assert that all of the default mappings are present. How exactly the expectated mapping will be bundled in CTS is still TBD. 2. Add a vendor.mime.types file (defaults to empty) where vendors can add additional mappings; I plan to make it such that mappings in that file are parsed last but never override any earlier mappings, as if each mime type / file extension was prefixed with '?'. 3. Perhaps enforce that public APIs android.webkit.MimeTypeMap and java.net.URLConnection.getFileNameMap() behave consistently with MimeMap.getDefault(). Test: atest CtsLibcoreTestCases Test: atest CtsMimeMapTestCases Test: Checked that CtsLibcoreTestCases still passes on a build that is missing the MimeMap.setDefault() call from RuntimeInit.java. Test: Checked that app startup time does not regress as part of this CL topic - see http://b/136256059#comment17 Bug: 136256059 Change-Id: I716914bf1a7e6205e539f0551f010615dacb17a8
-
- Sep 26, 2019
-
-
Tobias Thierer authored
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Tobias Thierer authored
Until recently, I and apparently some others were under the assumption that RuntimeInit.commonInit() runs before the Zygote fork. Actually, it does not. This CL introduces a method ZygoteInit.preForkInit() which runs before the Zygote fork. For now, only enableDdms() moves into it and can become private. This should not alter behavior since enableDdms() is called from the same places as before, and because enableDdms() (now private) was already not part of any API surface. The CL also removes the qualifier "final" from the (static) method enableDdms(), because it is redundant. Note: This CL was uploaded with --no-verify because of preexisting import ordering issues in RuntimeInit.java Test: Treehugger Change-Id: I8f637e160a2d7810feb43b6a43ec7d628af18fb8
-
atrost authored
Only log once per change-package-state(resets every app launch if used from within the app process). Next: reset every app launch for server usage as well. Test: using the test app. Bug: 138374585 Change-Id: I5587f7138cf2cd8d144e88cf294e65c14bb32bfb
-
Treehugger Robot authored
-
Nataniel Borges authored
When running the flicker tests on postsubmit the apps require the following permission: "android.permission.WRITE_SECURE_SETTINGS" Test: atest FlickerTests Change-Id: I6a2647fb6d2351617297b3f89ae3f3edc1aad981
-
Howard Chen authored
-
Chen Xu authored
-
Chen Xu authored
-
Chen Xu authored
-
John Reck authored
Timeout recovery isn't working properly, so increase it to avoid any false-positives from something like a slow screen-on Bug: 137509524 Test: none Change-Id: Ic4fae04b41f71600479f9557e334f67c27851db4 Merged-In: Ic4fae04b41f71600479f9557e334f67c27851db4
-
- Sep 25, 2019
-
-
Christopher Ferris authored
-
Treehugger Robot authored
-
Christopher Ferris authored
Bug: 137795072 Test: dumpsys meminfo <PID> and verified non-zero return for Native Heap Test: using jemalloc and using scudo. Change-Id: I418c89eaf2eb21d64f008435fa588d22523ffdbd
-
Anna Trostanetski authored
-
Treehugger Robot authored
-
Mathieu Chartier authored
-
Marco Nelissen authored
-
Treehugger Robot authored
-
Mathieu Chartier authored
To get profiling info, we need to avoid having compiled code. Also pass down the --count-hotness-in-compiled-code for measuring performance in compiled code. Bug: 139883463 Test: manual Change-Id: Ib02b476522b7709172fc06d6517446cad59045d4
-
Mathieu Chartier authored
-
atrost authored
The APIs behave the same as the AppInfo APIs, and returns the change is enabled if there is no installed package with the provided name. Test: flashed device, used the test app, and made the API use the new per-package API. Bug: 138275545 Change-Id: Ic925751dddc6c2e0996fe195a208f5c689554839
-
Marco Nelissen authored
Bug: 141546997 Test: build, boot Change-Id: I1550c14f3a0967910809cc2415d10f62c967bd44 Merged-In: I1550c14f3a0967910809cc2415d10f62c967bd44
-
Jorim Jaggi authored
* changes: Ignore flicker tests with open bugs Don't remove flicker test logs from device for easier debugging Reduce delays on Flicker test rotation Make OpenAppCold/Warm tests compatible with AOSP Make Flicker Tests compatible with current AOSP
-
vichang authored
-
Treehugger Robot authored
-
Chalard Jean authored
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Taesu Lee authored
Change deprecated TelephonyIntents.ACTION_DEFAULT_SUBSCRIPTION_CHANGED as SubscriptionManager.ACTION_DEFAULT_SUBSCRIPTION_CHANGED. And clean up the code to - use int type for subscription Id - get new default PhoneId corresponding to new default SubId for no value Test: Manual Change-Id: I3084ca5d477c7f3861061ee2b17906fd2e7e5d46 Signed-off-by:
Taesu Lee <taesu82.lee@samsung.com>
-
- Sep 24, 2019
-
-
Mathieu Chartier authored
Keep trying to force profile saves until it's not empty. This handles the case when the system server isn't started enough to save a profile yet. This can be affected by boot time fluctuations if we don't wait. Test: atest BootImageProfileTest Bug: 139883463 Change-Id: I98b359412f919bd64c2cd2a5b7d6659d1cef113d
-
Oscar Shu authored
-