View Javadoc
1   /**
2    * This file Copyright (c) 2003-2018 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.context;
35  
36  import info.magnolia.repository.RepositoryManager;
37  
38  import java.util.HashMap;
39  import java.util.Map;
40  
41  import javax.inject.Inject;
42  import javax.jcr.LoginException;
43  import javax.jcr.RepositoryException;
44  import javax.jcr.Session;
45  import javax.jcr.observation.EventListener;
46  import javax.jcr.observation.EventListenerIterator;
47  import javax.jcr.observation.ObservationManager;
48  
49  import org.slf4j.Logger;
50  import org.slf4j.LoggerFactory;
51  
52  
53  /**
54   * Basic implementation of the <code>RepositoryAcquiringStrategy</code> providing storage of JCR sessions and hierarchy manager instances to extending classes.
55   */
56  public abstract class AbstractRepositoryStrategy implements JCRSessionStrategy {
57      private static final Logger log = LoggerFactory.getLogger(AbstractRepositoryStrategy.class);
58  
59      private final Map<String, Session> jcrSessions = new HashMap<String, Session>();
60  
61      protected final RepositoryManager repositoryManager;
62  
63      @Inject
64      protected AbstractRepositoryStrategy(RepositoryManager repositoryManager) {
65          this.repositoryManager = repositoryManager;
66      }
67  
68      @Override
69      public Session getSession(String workspaceName) throws LoginException, RepositoryException {
70          Session jcrSession = jcrSessions.get(workspaceName);
71  
72          if (jcrSession == null) {
73              log.debug("creating jcr session {} by thread {}", workspaceName, Thread.currentThread().getName());
74  
75              jcrSession = internalGetSession(workspaceName);
76              jcrSessions.put(workspaceName, jcrSession);
77          }
78  
79          return jcrSession;
80      }
81  
82      protected abstract Session internalGetSession(String workspaceName) throws RepositoryException;
83  
84      protected void release(boolean checkObservation) {
85          log.debug("releasing jcr sessions");
86          for (Session session : jcrSessions.values()) {
87              releaseSession(session, checkObservation);
88          }
89          jcrSessions.clear();
90      }
91  
92      protected void releaseSession(final Session session, boolean checkObservation) {
93          final String workspaceName = session.getWorkspace().getName();
94          if (session.isLive()) {
95              try {
96                  final ObservationManager observationManager = session.getWorkspace().getObservationManager();
97                  final EventListenerIterator listeners = observationManager.getRegisteredEventListeners();
98                  if (!checkObservation || !listeners.hasNext()) {
99                      session.logout();
100                     log.debug("logged out jcr session: {} by thread {}", session, Thread.currentThread().getName());
101 
102                 } else {
103                     log.warn("won't close session because of registered observation listener {}", workspaceName);
104                     if (log.isDebugEnabled()) {
105                         while (listeners.hasNext()) {
106                             EventListener listener = listeners.nextEventListener();
107                             log.debug("registered listener {}", listener);
108                         }
109                     }
110                 }
111             } catch (RepositoryException e) {
112                 log.error("can't check if event listeners are registered", e);
113             }
114         } else {
115             log.warn("session has been already closed {}", workspaceName);
116         }
117     }
118 
119     /**
120      * Returns the number of sessions managed by this strategy.
121      */
122     protected int getLocalSessionCount() {
123         return jcrSessions.size();
124     }
125 }