All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.xpack.core.security.support.RestorableContextClassLoader Maven / Gradle / Ivy

/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0; you may not use this file except in compliance with the Elastic License
 * 2.0.
 */
package org.elasticsearch.xpack.core.security.support;

import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;

import org.elasticsearch.SpecialPermission;

/**
 * A try-with-resource compatible object for configuring a thread {@link Thread#getContextClassLoader()}.
 * On construction this class will set the current (or provided) thread's context class loader.
 * On {@link #close()}, it restores the previous value of the class loader.
 */
public class RestorableContextClassLoader implements AutoCloseable {

    private final Thread thread;
    private ClassLoader restore;

    public RestorableContextClassLoader(Class fromClass) throws PrivilegedActionException {
        this(Thread.currentThread(), getClassLoader(fromClass));
    }

    private static ClassLoader getClassLoader(Class fromClass) throws PrivilegedActionException {
        return AccessController.doPrivileged((PrivilegedExceptionAction) fromClass::getClassLoader);
    }

    public RestorableContextClassLoader(Thread thread, ClassLoader setClassLoader) throws PrivilegedActionException {
        this.thread = thread;
        SpecialPermission.check();
        AccessController.doPrivileged((PrivilegedExceptionAction) () -> {
            restore = thread.getContextClassLoader();
            thread.setContextClassLoader(setClassLoader);
            return null;
        });
    }

    @Override
    public void close() throws PrivilegedActionException {
        SpecialPermission.check();
        AccessController.doPrivileged((PrivilegedExceptionAction) () -> {
            this.thread.setContextClassLoader(this.restore);
            return null;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy