source: AE/installer2/src/net/oni2/aeinstaller/backend/mods/ModManager.java@ 641

Last change on this file since 641 was 640, checked in by alloc, 12 years ago

AEI2 0.97:

  • Finished toolmanager
File size: 8.2 KB
RevLine 
[600]1package net.oni2.aeinstaller.backend.mods;
2
3import java.io.File;
4import java.io.FileFilter;
[604]5import java.io.FileInputStream;
6import java.io.FileNotFoundException;
7import java.io.FileOutputStream;
8import java.io.IOException;
[600]9import java.util.Collection;
10import java.util.HashMap;
[602]11import java.util.HashSet;
[626]12import java.util.TreeMap;
[602]13import java.util.TreeSet;
[600]14import java.util.Vector;
15
[604]16import com.thoughtworks.xstream.XStream;
17import com.thoughtworks.xstream.io.xml.StaxDriver;
18
[600]19import net.oni2.aeinstaller.backend.Paths;
20import net.oni2.aeinstaller.backend.depot.DepotManager;
21import net.oni2.aeinstaller.backend.depot.model.NodeMod;
22import net.oni2.aeinstaller.backend.depot.model.TaxonomyTerm;
[604]23import net.oni2.aeinstaller.backend.oni.Installer;
[600]24
25/**
26 * @author Christian Illy
27 */
28public class ModManager {
29 private static ModManager instance = new ModManager();
30
31 private HashMap<String, Type> types = new HashMap<String, Type>();
32 private HashMap<Integer, Mod> mods = new HashMap<Integer, Mod>();
[602]33 private HashMap<Integer, Mod> tools = new HashMap<Integer, Mod>();
[600]34
[604]35 private Vector<Integer> currentlyInstalled = new Vector<Integer>();
36
[600]37 /**
[604]38 * @param f
39 * Mod selection file
40 * @return Mod selection
41 */
42 @SuppressWarnings("unchecked")
43 public Vector<Integer> loadModSelection(File f) {
44 Vector<Integer> res = new Vector<Integer>();
45 try {
[608]46 if (f.exists()) {
47 FileInputStream fis = new FileInputStream(f);
48 XStream xs = new XStream(new StaxDriver());
49 Object obj = xs.fromXML(fis);
50 if (obj instanceof Vector<?>)
51 res = (Vector<Integer>) obj;
52 fis.close();
53 }
[604]54 } catch (FileNotFoundException e) {
55 e.printStackTrace();
56 } catch (IOException e) {
57 e.printStackTrace();
58 }
59 return res;
60 }
61
62 /**
63 * @param f
64 * Mod selection file
65 * @param mods
66 * Selected mods
67 */
68 public void saveModSelection(File f, TreeSet<Mod> mods) {
69 try {
70 Vector<Integer> installed = new Vector<Integer>();
71 for (Mod m : mods) {
72 installed.add(m.getPackageNumber());
73 }
74 FileOutputStream fos = new FileOutputStream(f);
75 XStream xs = new XStream(new StaxDriver());
76 xs.toXML(installed, fos);
77 fos.close();
78 } catch (FileNotFoundException e) {
79 e.printStackTrace();
80 } catch (IOException e) {
81 e.printStackTrace();
82 }
83 }
84
85 /**
[600]86 * First initialization of ModManager
87 */
88 public void init() {
89 types = new HashMap<String, Type>();
90 mods = new HashMap<Integer, Mod>();
91
[608]92 Type localType = new Type("-Local-", null);
93 types.put("-Local-", localType);
[600]94
[635]95 for (TaxonomyTerm tt : DepotManager.getInstance().getTypes()) {
[600]96 types.put(tt.getName(), new Type(tt.getName(), tt));
97 }
98
99 HashMap<Integer, Mod> modFolders = new HashMap<Integer, Mod>();
100 if (Paths.getModsPath().exists()) {
101 for (File f : Paths.getModsPath().listFiles(new FileFilter() {
102 @Override
103 public boolean accept(File pathname) {
104 return pathname.isDirectory();
105 }
106 })) {
107 Mod m = new Mod(f);
108 modFolders.put(m.getPackageNumber(), m);
109 }
110 }
111
112 for (NodeMod nm : DepotManager.getInstance().getModPackageNodes()) {
113 if (nm.getUploads().size() == 1) {
114 Mod m = new Mod(nm);
[603]115 if (nm.isTool())
[602]116 tools.put(m.getPackageNumber(), m);
117 else
118 mods.put(m.getPackageNumber(), m);
[600]119 modFolders.remove(m.getPackageNumber());
120 }
121 }
122
123 for (Mod m : modFolders.values()) {
[608]124 if (!m.isMandatoryMod()) {
125 localType.addEntry(m);
126 m.getTypes().add(localType);
127 }
[640]128 if (m.isTool())
129 tools.put(m.getPackageNumber(), m);
130 else
131 mods.put(m.getPackageNumber(), m);
[600]132 }
133
[637]134 updateInstalledMods();
135 }
136
137 /**
138 * Update the list of currently installed mods
139 */
140 public void updateInstalledMods() {
[604]141 currentlyInstalled = Installer.getInstalledMods();
142 if (currentlyInstalled == null)
143 currentlyInstalled = new Vector<Integer>();
[600]144 }
145
146 /**
147 * @return Singleton instance
148 */
149 public static ModManager getInstance() {
150 return instance;
151 }
152
153 Type getTypeByName(String name) {
154 return types.get(name);
155 }
156
157 /**
158 * @return Collection of types which do have mods associated
159 */
160 public Collection<Type> getTypesWithContent() {
161 Vector<Type> res = new Vector<Type>();
162 for (Type t : types.values()) {
163 if (t.getEntries().size() > 0)
164 res.add(t);
165 }
166 return res;
167 }
168
169 /**
[608]170 * @return Collection of mods valid on this platform and not mandatory
[600]171 */
[608]172 public Collection<Mod> getModsValidAndNotMandatory() {
173 Vector<Mod> res = new Vector<Mod>();
174 for (Mod m : mods.values())
175 if (m.isValidOnPlatform() && !m.isMandatoryMod())
176 res.add(m);
177 return res;
[600]178 }
179
180 /**
[608]181 * @return Mods which are always installed and valid on this platform
[600]182 */
[604]183 public TreeSet<Mod> getMandatoryMods() {
184 TreeSet<Mod> res = new TreeSet<Mod>();
[600]185 for (Mod m : mods.values()) {
[608]186 if (m.isValidOnPlatform() && m.isMandatoryMod())
[600]187 res.add(m);
188 }
189 return res;
190 }
[604]191
[602]192 /**
[621]193 * @return Mods which are already locally available
194 */
195 public TreeSet<Mod> getLocalAvailableMods() {
196 TreeSet<Mod> res = new TreeSet<Mod>();
197 for (Mod m : mods.values()) {
198 if (m.isLocalAvailable())
199 res.add(m);
200 }
201 return res;
202 }
203
204 /**
205 * @return Mods which can be updated
206 */
207 public TreeSet<Mod> getUpdatableMods() {
208 TreeSet<Mod> res = new TreeSet<Mod>();
209 for (Mod m : getLocalAvailableMods()) {
210 if (m.isNewerAvailable())
211 res.add(m);
212 }
213 return res;
214 }
215
216 /**
[608]217 * @return Collection of tools valid on this platform and not mandatory
[602]218 */
[626]219 public TreeMap<String, Mod> getTools() {
220 TreeMap<String, Mod> res = new TreeMap<String, Mod>();
[608]221 for (Mod m : tools.values())
222 if (m.isValidOnPlatform() && !m.isMandatoryMod())
[626]223 res.put(m.getName(), m);
[608]224 return res;
[602]225 }
[604]226
[602]227 /**
[608]228 * @return Tools which are always installed and valid on this platform
[602]229 */
[604]230 public TreeSet<Mod> getMandatoryTools() {
231 TreeSet<Mod> res = new TreeSet<Mod>();
[602]232 for (Mod m : tools.values()) {
[608]233 if (m.isValidOnPlatform() && m.isMandatoryMod())
[602]234 res.add(m);
235 }
236 return res;
237 }
238
239 /**
[621]240 * @return Tools which are already locally available
241 */
242 public TreeSet<Mod> getLocalAvailableTools() {
243 TreeSet<Mod> res = new TreeSet<Mod>();
244 for (Mod m : tools.values()) {
245 if (m.isLocalAvailable())
246 res.add(m);
247 }
248 return res;
249 }
250
251 /**
252 * @return Tools which can be updated
253 */
254 public TreeSet<Mod> getUpdatableTools() {
255 TreeSet<Mod> res = new TreeSet<Mod>();
256 for (Mod m : getLocalAvailableTools()) {
257 if (m.isNewerAvailable())
258 res.add(m);
259 }
260 return res;
261 }
262
263 /**
[623]264 * @return Currently installed tools
265 */
266 public TreeSet<Mod> getInstalledTools() {
267 TreeSet<Mod> res = new TreeSet<Mod>();
268 for (int n : Installer.getInstalledTools()) {
269 res.add(getModByNumber(n));
270 }
271 return res;
272 }
273
274 /**
275 * Get a mod/tool by its package number
[602]276 *
277 * @param number
278 * Package number
[623]279 * @return Mod/tool or null
[602]280 */
[636]281 private Mod getModByNumber(int number) {
[623]282 if (mods.containsKey(number))
283 return mods.get(number);
284 if (tools.containsKey(number))
285 return tools.get(number);
[602]286 return null;
287 }
288
289 /**
290 * Check for unresolved dependencies within the given mods
291 *
292 * @param mods
293 * Mods to check
294 * @return Unmet dependencies
295 */
296 public HashMap<Mod, HashSet<Mod>> checkDependencies(TreeSet<Mod> mods) {
[624]297 // TODO: Verify functionality (checkDependencies)
[602]298 HashMap<Mod, HashSet<Mod>> res = new HashMap<Mod, HashSet<Mod>>();
299
300 for (Mod m : mods) {
301 for (int depNum : m.getDependencies()) {
302 Mod other = getModByNumber(depNum);
303 if (!mods.contains(other)) {
304 if (!res.containsKey(m))
305 res.put(m, new HashSet<Mod>());
306 res.get(m).add(other);
307 }
308 }
309 }
310
311 return res;
312 }
313
314 /**
[608]315 * Check for incompabitilites between given mods
[602]316 *
317 * @param mods
318 * Mods to check
[608]319 * @return Incompatible mods
[602]320 */
[608]321 public HashMap<Mod, HashSet<Mod>> checkIncompabitilites(TreeSet<Mod> mods) {
[624]322 // TODO: Verify functionality (checkIncompatibilities)
[602]323 HashMap<Mod, HashSet<Mod>> res = new HashMap<Mod, HashSet<Mod>>();
324
325 for (Mod m : mods) {
[608]326 for (int confNum : m.getIncompabitilities()) {
[602]327 Mod other = getModByNumber(confNum);
328 if (mods.contains(other)) {
329 if (!res.containsKey(m))
330 res.put(m, new HashSet<Mod>());
331 res.get(m).add(other);
332 }
333 }
334 }
335
336 return res;
337 }
338
[604]339 /**
340 * @param m
341 * Mod to check
342 * @return Is mod installed?
343 */
[631]344 boolean isModInstalled(Mod m) {
[604]345 return currentlyInstalled.contains(m.getPackageNumber());
346 }
[600]347}
Note: See TracBrowser for help on using the repository browser.