View Javadoc

1   /**
2    * This file Copyright (c) 2003-2014 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.cms.beans.config;
35  
36  import info.magnolia.cms.core.Content;
37  import info.magnolia.cms.core.DefaultContent;
38  import info.magnolia.cms.util.ObservationUtil;
39  import info.magnolia.cms.util.SystemContentWrapper;
40  import info.magnolia.context.MgnlContext;
41  import info.magnolia.repository.RepositoryConstants;
42  
43  import java.util.ArrayList;
44  import java.util.HashMap;
45  import java.util.HashSet;
46  import java.util.Iterator;
47  import java.util.List;
48  import java.util.Map;
49  import java.util.Set;
50  
51  import javax.jcr.ItemNotFoundException;
52  import javax.jcr.Node;
53  import javax.jcr.RepositoryException;
54  import javax.jcr.Session;
55  import javax.jcr.observation.EventIterator;
56  import javax.jcr.observation.EventListener;
57  
58  import org.slf4j.Logger;
59  import org.slf4j.LoggerFactory;
60  
61  /**
62   * A lot of "manager" objects are observed. Will mean that they reload the registered content after the content was changed. To
63   * centralize this code we use this abstract manager. A subclass will implement onRegister and onClear.
64   * 
65   * @author philipp
66   */
67  public abstract class ObservedManager {
68      protected final Logger log = LoggerFactory.getLogger(getClass());
69  
70      /**
71       * UUIDs and paths of the registered main nodes. They will get registered again after a change.
72       */
73      protected Set<String> registeredUUIDs = new HashSet<String>();
74      private Map<String, String> UUIDToPathMap = new HashMap<String, String>();
75  
76      /**
77       * Register a node. The uuid and path are cached and then onRegister() called.
78       * 
79       * @param node the node to register
80       */
81      public synchronized void register(Content node) {
82          if (node == null) {
83              log.warn("Tried to register a non-existing node!");
84              return;
85          }
86  
87          ObservationUtil.registerDeferredChangeListener(RepositoryConstants.CONFIG, node.getHandle(), new EventListener() {
88  
89              @Override
90              public void onEvent(EventIterator events) {
91                  reload();
92              }
93          }, 1000, 5000);
94  
95          try {
96              registeredUUIDs.add(node.getUUID());
97              UUIDToPathMap.put(node.getUUID(), node.getHandle());
98              onRegister(new SystemContentWrapper(node));
99          } catch (Exception e) {
100             log.warn("Was not able to register [" + node.getHandle() + "]", e);
101         }
102     }
103 
104     /**
105      * Calls onClear and reregister the nodes by calling onRegister.
106      */
107     public synchronized void reload() {
108         // Call onClear and reregister the nodes by calling onRegister
109         onClear();
110 
111         Session session = null;
112         try {
113             session = MgnlContext.getSystemContext().getJCRSession(RepositoryConstants.CONFIG);
114         } catch (RepositoryException e) {
115             throw new RuntimeException(e);
116         }
117 
118         // copy to avoid ConcurrentModificationException since the list get changed during iteration
119         List<String> uuidsAndPaths = new ArrayList<String>(registeredUUIDs);
120 
121         for (Iterator<String> iter = uuidsAndPaths.iterator(); iter.hasNext();) {
122             String uuid = iter.next();
123             try {
124                 Node node = getNodeByIdentifierOrPath(session, uuid, UUIDToPathMap.get(uuid));
125                 reload(new DefaultContent(node));
126             } catch (Exception e) {
127                 registeredUUIDs.remove(uuid);
128                 UUIDToPathMap.remove(uuid);
129                 log.warn("Can't reload the node with uuid [" + uuid + "] and path [" + UUIDToPathMap.get(uuid) + "]");
130             }
131         }
132         return;
133     }
134 
135     /**
136      * Get a node by uuid, or failing that, by its path.
137      * 
138      * @return The node with the specified UUID, or failing that, the specified path.
139      * @throws RepositoryException if node cannot be located by either UUID or path.
140      */
141     protected static Node getNodeByIdentifierOrPath(Session session, String uuid, String path) throws RepositoryException {
142         Node node = null;
143 
144         try {
145             node = session.getNodeByIdentifier(uuid);
146         } catch (ItemNotFoundException e) {
147             node = session.getNode(path);
148         }
149 
150         return node;
151     }
152 
153     /**
154      * Reload a specific node.
155      * 
156      * @param node
157      */
158     protected void reload(Content node) {
159         onRegister(node);
160     }
161 
162     /**
163      * Clears the registered UUIDs and calls onClear().
164      */
165     public void clear() {
166         this.registeredUUIDs.clear();
167         this.UUIDToPathMap.clear();
168         onClear();
169     }
170 
171     /**
172      * Registers a node.
173      * 
174      * @param node
175      */
176     protected abstract void onRegister(Content node);
177 
178     /**
179      * The implementor should clear everthing. If needed the nodes will get registered.
180      */
181     protected abstract void onClear();
182 
183 }