blob: 80af319cfbfeb8eaa7e081666c2ecc953855f26e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../../jacoco-resources/report.gif" type="image/gif"/><title>SubjectAwareExecutor.java</title><link rel="stylesheet" href="../../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../../index.html" class="el_report">Apache Shiro :: Test Coverage</a> &gt; <a href="../index.html" class="el_bundle">shiro-core</a> &gt; <a href="index.source.html" class="el_package">org.apache.shiro.concurrent</a> &gt; <span class="el_source">SubjectAwareExecutor.java</span></div><h1>SubjectAwareExecutor.java</h1><pre class="source lang-java linenums">/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* &quot;License&quot;); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.shiro.concurrent;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.subject.Subject;
import java.util.concurrent.Executor;
/**
* {@code Executor} implementation that will automatically first associate any argument
* {@link Runnable} instances with the currently available {@link Subject} and then
* dispatch the Subject-enabled runnable to an underlying delegate {@link Executor}
* instance.
* &lt;p/&gt;
* This is a simplification for applications that want to execute code as the currently
* executing {@code Subject} on another thread, but don't want or need to call the
* {@link Subject#associateWith(Runnable)} method and dispatch to a Thread manually. This
* simplifies code and reduces Shiro dependencies across application source code.
* &lt;p/&gt;
* Consider this code that could be repeated in many places across an application:
* &lt;pre&gt;
* {@link Runnable Runnable} applicationWork = //instantiate or acquire Runnable from somewhere
* {@link Subject Subject} subject = {@link SecurityUtils SecurityUtils}.{@link SecurityUtils#getSubject() getSubject()};
* {@link Runnable Runnable} work = subject.{@link Subject#associateWith(Runnable) associateWith(applicationWork)};
* {@link Executor anExecutor}.{@link Executor#execute(Runnable) execute(work)};
* &lt;/pre&gt;
* Instead, if the {@code Executor} instance used in application code is an instance of this class (which delegates
* to the target Executor that you want), all places in code like the above reduce to this:
* &lt;pre&gt;
* {@link Runnable Runnable} applicationWork = //instantiate or acquire Runnable from somewhere
* {@link Executor anExecutor}.{@link Executor#execute(Runnable) execute(work)};
* &lt;/pre&gt;
* Notice there is no use of the Shiro API in the 2nd code block, encouraging the principle of loose coupling across
* your codebase.
*
* @see SubjectAwareExecutorService
* @since 1.0
*/
public class SubjectAwareExecutor implements Executor {
/**
* The target Executor instance that will actually execute the subject-associated Runnable instances.
*/
private Executor targetExecutor;
<span class="fc" id="L63"> public SubjectAwareExecutor() {</span>
<span class="fc" id="L64"> }</span>
<span class="fc" id="L66"> public SubjectAwareExecutor(Executor targetExecutor) {</span>
<span class="pc bpc" id="L67" title="1 of 2 branches missed."> if (targetExecutor == null) {</span>
<span class="nc" id="L68"> throw new NullPointerException(&quot;target Executor instance cannot be null.&quot;);</span>
}
<span class="fc" id="L70"> this.targetExecutor = targetExecutor;</span>
<span class="fc" id="L71"> }</span>
/**
* Returns the target Executor instance that will actually execute the subject-associated Runnable instances.
*
* @return target Executor instance that will actually execute the subject-associated Runnable instances.
*/
public Executor getTargetExecutor() {
<span class="fc" id="L79"> return targetExecutor;</span>
}
/**
* Sets target Executor instance that will actually execute the subject-associated Runnable instances.
*
* @param targetExecutor the target Executor instance that will actually execute the subject-associated Runnable
* instances.
*/
public void setTargetExecutor(Executor targetExecutor) {
<span class="fc" id="L89"> this.targetExecutor = targetExecutor;</span>
<span class="fc" id="L90"> }</span>
/**
* Returns the currently Subject instance that should be associated with Runnable or Callable instances before
* being dispatched to the target {@code Executor} instance. This implementation merely defaults to returning
* {@code SecurityUtils}.{@link SecurityUtils#getSubject() getSubject()}.
*
* @return the currently Subject instance that should be associated with Runnable or Callable instances before
* being dispatched to the target {@code Executor} instance.
*/
protected Subject getSubject() {
<span class="fc" id="L101"> return SecurityUtils.getSubject();</span>
}
/**
* Utility method for subclasses to associate the argument {@code Runnable} with the currently executing subject
* and then return the associated Runnable. The default implementation merely defaults to
* &lt;pre&gt;
* Subject subject = {@link #getSubject() getSubject()};
* return subject.{@link Subject#associateWith(Runnable) associateWith(r)};
* &lt;/pre&gt;
*
* @param r the argument runnable to be associated with the current subject
* @return the associated runnable instance reflecting the current subject
*/
protected Runnable associateWithSubject(Runnable r) {
<span class="fc" id="L116"> Subject subject = getSubject();</span>
<span class="fc" id="L117"> return subject.associateWith(r);</span>
}
/**
* Executes the specified runnable by first associating it with the currently executing {@code Subject} and then
* dispatches the associated Runnable to the underlying target {@link Executor} instance.
*
* @param command the runnable to associate with the currently executing subject and then to execute via the target
* {@code Executor} instance.
*/
public void execute(Runnable command) {
<span class="fc" id="L128"> Runnable associated = associateWithSubject(command);</span>
<span class="fc" id="L129"> getTargetExecutor().execute(associated);</span>
<span class="fc" id="L130"> }</span>
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.3.201901230119</span></div></body></html>