1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.filter.script.internal

File ScriptFilterStreamConverterJob.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart8.png
54% of files have more coverage

Code metrics

4
9
2
1
77
41
4
0.44
4.5
2
2

Classes

Class Line # Actions
ScriptFilterStreamConverterJob 46 9 0% 4 4
0.7333333573.3%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.filter.script.internal;
21   
22    import javax.inject.Inject;
23    import javax.inject.Named;
24    import javax.inject.Provider;
25   
26    import org.xwiki.component.annotation.Component;
27    import org.xwiki.component.annotation.InstantiationStrategy;
28    import org.xwiki.component.descriptor.ComponentInstantiationStrategy;
29    import org.xwiki.component.phase.Initializable;
30    import org.xwiki.component.phase.InitializationException;
31    import org.xwiki.filter.internal.job.FilterStreamConverterJob;
32    import org.xwiki.model.reference.DocumentReference;
33   
34    import com.xpn.xwiki.XWikiContext;
35   
36    /**
37    * Override {@link FilterStreamConverterJob} to set current wiki/user to search for extension in the right
38    * {@link org.xwiki.component.manager.ComponentManager}.
39    *
40    * @version $Id: 00b9bfecdd43cc2e080454a5cc1e0fa1a80ba606 $
41    * @since 6.2M1
42    */
43    @Component
44    @InstantiationStrategy(ComponentInstantiationStrategy.PER_LOOKUP)
45    @Named(FilterStreamConverterJob.JOBTYPE)
 
46    public class ScriptFilterStreamConverterJob extends FilterStreamConverterJob implements Initializable
47    {
48    @Inject
49    private Provider<XWikiContext> xcontextProvider;
50   
51    private String contextWiki;
52   
53    private DocumentReference contextUser;
54   
 
55  1 toggle @Override
56    public void initialize() throws InitializationException
57    {
58  1 XWikiContext xcontext = this.xcontextProvider.get();
59  1 if (xcontext != null) {
60  1 this.contextWiki = xcontext.getWikiId();
61  1 this.contextUser = xcontext.getUserReference();
62    }
63    }
64   
 
65  1 toggle @Override
66    public void run()
67    {
68    // Set proper context wiki and user
69  1 XWikiContext xcontext = this.xcontextProvider.get();
70  1 if (xcontext != null) {
71  0 xcontext.setWikiId(this.contextWiki);
72  0 xcontext.setUserReference(this.contextUser);
73    }
74   
75  1 super.run();
76    }
77    }