URLStreamHandlerFactory

URLStreamHandlerFactory

我遇到了一个意外错误,该错误是由正在更新的Android应用程序中调用URL.setURLStreamHandlerFactory(factory);引起的。

public class ApplicationRoot extends Application {

    static {
        /* Add application support for custom URI protocols. */
        final URLStreamHandlerFactory factory = new URLStreamHandlerFactory() {
            @Override
            public URLStreamHandler createURLStreamHandler(final String protocol) {
                if (ExternalProtocol.PROTOCOL.equals(protocol)) {
                    return new ExternalProtocol();
                }
                if (ArchiveProtocol.PROTOCOL.equals(protocol)) {
                    return new ArchiveProtocol();
                }
                return null;
            }
        };
        URL.setURLStreamHandlerFactory(factory);
    }

}

简介:

这是我的情况:我正在维护以企业方式使用的非市场应用程序。我的企业销售带有由企业开发和维护的预安装应用程序的平板电脑。这些预安装的应用程序不是ROM的一部分。它们作为典型的未知源应用程序安装。我们不会通过Play商店或任何其他市场进行更新。而是,应用程序更新由自定义的Update Manager应用程序控制,该应用程序直接与我们的服务器通信以执行OTA更新。

问题:

我正在维护的此Update Manager应用程序有时需要自我更新。在应用程序更新自身之后,它立即通过android.intent.action.PACKAGE_REPLACED广播重新启动,我在AndroidManifest中进行了注册。但是,在更新后立即重新启动应用程序时,我偶尔会收到此Error
java.lang.Error: Factory already set
    at java.net.URL.setURLStreamHandlerFactory(URL.java:112)
    at com.xxx.xxx.ApplicationRoot.<clinit>(ApplicationRoot.java:37)
    at java.lang.Class.newInstanceImpl(Native Method)
    at java.lang.Class.newInstance(Class.java:1208)
    at android.app.Instrumentation.newApplication(Instrumentation.java:996)
    at android.app.Instrumentation.newApplication(Instrumentation.java:981)
    at android.app.LoadedApk.makeApplication(LoadedApk.java:511)
    at android.app.ActivityThread.handleReceiver(ActivityThread.java:2625)
    at android.app.ActivityThread.access$1800(ActivityThread.java:172)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1384)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:146)
    at android.app.ActivityThread.main(ActivityThread.java:5653)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:515)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1291)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1107)
    at dalvik.system.NativeStart.main(Native Method)

请注意,大多数情况下,应用程序会正常重启。但是,每隔一段时间,我就会收到上述错误。我很困惑,因为我在这里叫setURLStreamHandlerFactory的唯一位置是在static块中完成的,我认为-虽然我错了,但我还是纠正了它-在首次加载ApplicationRoot类时,只被调用了一次。但是,似乎它被调用了两次,导致了上面的错误。

问题:

炽烈的气氛中正在发生什么?在这一点上,我唯一的猜测是更新后的应用程序的VM/进程与先前安装的正在更新的应用程序相同,因此,当调用新staticApplicationRoot块时,旧URLStreamHandlerFactory设置的ApplicationRoot仍然是“积极的”。这可能吗?如何避免这种情况?看到它并不总是会发生,这似乎是某种种族条件。也许在Android的APK安装程序中?谢谢,

编辑:

根据要求的其他代码。这是处理广播的 list 部分
<receiver android:name=".OnSelfUpdate" >
    <intent-filter>
        <action android:name="android.intent.action.PACKAGE_REPLACED" />
        <data android:scheme="package" />
    </intent-filter>
</receiver>

还有BroadcastReceiver本身
public class OnSelfUpdate extends BroadcastReceiver {

    @Override
    public void onReceive(final Context context, final Intent intent) {
        /* Get the application(s) updated. */
        final int uid = intent.getIntExtra(Intent.EXTRA_UID, 0);
        final PackageManager packageManager = context.getPackageManager();
        final String[] packages = packageManager.getPackagesForUid(uid);

        if (packages != null) {
            final String thisPackage = context.getPackageName();
            for (final String pkg : packages) {
                /* Check to see if this application was updated. */
                if (pkg.equals(thisPackage)) {
                    final Intent intent = new Intent(context, MainActivity.class);
                    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    context.startActivity(intent);
                    break;
                }
            }
        }
    }

}

最佳答案

加载类时将执行静态块-如果由于某种原因(例如,在更新类时)重新加载了该类,它将再次执行。

在您的情况下,这意味着您上次加载时设置的URLStreamHandlerFactory将保留。

除非您更新了URLStreamHandlerFactory,否则这并不是真正的问题。

有两种解决方法:

  • 捕获Error并继续以自己的方式继续,而忽略了您仍在使用旧工厂的事实。
  • 实现一个非常简单的包装程序,该包装程序委派给另一个可以替换且无需更改的URLStreamHandlerFactory。但是,在这里您将遇到与包装器相同的问题,因此您需要在该包装器上捕获Error或将其与选项3结合使用。
  • 使用系统属性跟踪是否已安装处理程序。

  • 代码:
    public static void maybeInstall(URLStreamHandlerFactory factory) {
        if(System.getProperty("com.xxx.streamHandlerFactoryInstalled") == null) {
            URL.setURLStreamHandlerFactory(factory);
            System.setProperty("com.xxx.streamHandlerFactoryInstalled", "true");
        }
    }
    
  • 使用反射强制替换。我完全不知道为什么您只能设置一次URLStreamHandlerFactory-对我而言,TBH毫无意义。

  • 代码:
    public static void forcefullyInstall(URLStreamHandlerFactory factory) {
        try {
            // Try doing it the normal way
            URL.setURLStreamHandlerFactory(factory);
        } catch (final Error e) {
            // Force it via reflection
            try {
                final Field factoryField = URL.class.getDeclaredField("factory");
                factoryField.setAccessible(true);
                factoryField.set(null, factory);
            } catch (NoSuchFieldException | IllegalAccessException e1) {
                throw new Error("Could not access factory field on URL class: {}", e);
            }
        }
    }
    

    字段名称在Oracle的factory上为JRE,在Android上可能有所不同。

    10-07 15:40