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.module;
35  
36  import info.magnolia.module.model.ModuleDefinition;
37  import info.magnolia.module.model.Version;
38  import info.magnolia.module.ui.ModuleManagerUI;
39  import info.magnolia.module.delta.Delta;
40  import info.magnolia.module.delta.DeltaType;
41  import info.magnolia.objectfactory.Components;
42  
43  import java.util.ArrayList;
44  import java.util.EnumSet;
45  import java.util.HashSet;
46  import java.util.List;
47  import java.util.Set;
48  
49  /**
50   * ModuleManager is responsible for the lifecycle of modules.
51   * (loads definitions, install/update/uninstall, start/stop)
52   *
53   * @author gjoseph
54   * @version $Revision: $ ($Author: $)
55   */
56  public interface ModuleManager {
57  
58      /**
59       * Loads modules definitions, validates dependencies and sorts modules
60       * by dependencies.
61       *
62       * TODO - this should not be done by ModuleManager
63       */
64      List<ModuleDefinition> loadDefinitions() throws ModuleManagementException;
65  
66      /**
67       * Checks if we need to do any module installation, update or uninstall.
68       */
69      void checkForInstallOrUpdates() throws ModuleManagementException;
70  
71      /**
72       * Returns the status as discovered by checkForInstallOrUpdates().
73       * @throws IllegalStateException if checkForInstallOrUpdates was never called.
74       */
75      ModuleManagementState getStatus();
76  
77      ModuleManagerUI getUI();
78  
79      void performInstallOrUpdate();
80  
81      InstallContext getInstallContext();
82  
83      void startModules();
84  
85      void stopModules();
86  
87      /**
88       * Use this to retrieve the configured singleton impl of ModuleManager.
89       * @deprecated since 4.5, use IoC.
90       */
91      public class Factory {
92          /**
93           * @deprecated since 4.5, use IoC.
94           */
95          public static ModuleManager getInstance() {
96              return Components.getSingleton(ModuleManager.class);
97          }
98      }
99  
100     /**
101      * Represent what's to be done for all modules.
102      */
103     public final static class ModuleManagementState {
104         private final List<ModuleAndDeltas> list;
105         private EnumSet<DeltaType> cachedDeltaTypes;
106 
107         public ModuleManagementState() {
108             this.list = new ArrayList<ModuleAndDeltas>();
109         }
110 
111         public boolean needsUpdateOrInstall() {
112             return !(list.isEmpty());
113         }
114 
115         void addModule(ModuleDefinition module, Version currentVersion, List<Delta> deltas) {
116             list.add(new ModuleAndDeltas(module, currentVersion, deltas));
117         }
118 
119         public List<ModuleAndDeltas> getList() {
120             return list;
121         }
122 
123         /**
124          * Returns one of the given Strings depending on the combination of delta types
125          * in the registered deltas. Typical use:
126          * <code>
127          * getDeltaTypesDescription({"modules need to be installed", "modules need to be installed", "modules need to be installed or updated"});
128          * </code>
129          * @param texts
130          * @return
131          */
132         public String getDeltaTypesDescription(String[] texts) {
133             if (texts == null || texts.length != 3) {
134                 throw new IllegalStateException("Please pass an array of 3 strings.");
135             }
136 
137             // we can cache this, since this method is only used after all modules' deltas have been registered.
138             if (cachedDeltaTypes == null) {
139                 cachedDeltaTypes = getDeltaTypes();
140             }
141 
142             if (cachedDeltaTypes.size() == 1) {
143                 if (cachedDeltaTypes.contains(DeltaType.install)) {
144                     return texts[0];
145                 } else if (cachedDeltaTypes.contains(DeltaType.update)) {
146                     return texts[1];
147                 }
148             } else if (cachedDeltaTypes.size() == 2) {
149                 if (cachedDeltaTypes.containsAll(EnumSet.<DeltaType>of(DeltaType.install, DeltaType.update))) {
150                     return texts[2];
151                 }
152             }
153             throw new IllegalStateException("Unhandled delta types combination: " + cachedDeltaTypes);
154         }
155 
156         protected EnumSet<DeltaType> getDeltaTypes() {
157             if (list.isEmpty()) {
158                 throw new IllegalStateException("No registered deltas");
159             }
160             final Set<DeltaType> types = new HashSet<DeltaType>();
161             for (ModuleAndDeltas moduleAndDeltas : list) {
162                 for (Delta delta : moduleAndDeltas.getDeltas()) {
163                     types.add(delta.getType());
164                 }
165             }
166             return EnumSet.copyOf(types);
167         }
168     }
169 
170     /**
171      * Represents what's to be done for each module.
172      */
173     public final static class ModuleAndDeltas {
174         private final ModuleDefinition module;
175         private final Version currentVersion;
176         private final List<Delta> deltas;
177 
178         public ModuleAndDeltas(ModuleDefinition module, Version currentVersion, List<Delta> deltas) {
179             this.module = module;
180             this.currentVersion = currentVersion;
181             this.deltas = deltas;
182         }
183 
184         public ModuleDefinition getModule() {
185             return module;
186         }
187 
188         public Version getCurrentVersion() {
189             return currentVersion;
190         }
191 
192         public List<Delta> getDeltas() {
193             return deltas;
194         }
195 
196         @Override
197         public String toString() {
198             final StringBuffer sb = new StringBuffer("ModuleAndDeltas for ");
199             sb.append(module.getName());
200             if (currentVersion != null) {
201                 sb.append(": current version is ");
202                 sb.append(currentVersion);
203                 sb.append(", updating to ");
204             } else {
205                 sb.append(": installing version ");
206             }
207             sb.append(module.getVersion());
208             sb.append(" with ");
209             sb.append(deltas.size());
210             sb.append(" deltas.");
211             return sb.toString();
212         }
213     }
214 
215 }