source: josm/trunk/src/org/openstreetmap/josm/data/CustomConfigurator.java@ 8846

Last change on this file since 8846 was 8846, checked in by Don-vip, 9 years ago

sonar - fb-contrib - minor performance improvements:

  • Method passes constant String of length 1 to character overridden method
  • Method needlessly boxes a boolean constant
  • Method uses iterator().next() on a List to get the first item
  • Method converts String to boxed primitive using excessive boxing
  • Method converts String to primitive using excessive boxing
  • Method creates array using constants
  • Class defines List based fields but uses them like Sets
  • Property svn:eol-style set to native
File size: 50.1 KB
RevLine 
[5927]1// License: GPL. For details, see LICENSE file.
[5114]2package org.openstreetmap.josm.data;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.io.BufferedInputStream;
7import java.io.ByteArrayInputStream;
8import java.io.CharArrayReader;
9import java.io.CharArrayWriter;
10import java.io.File;
11import java.io.FileInputStream;
12import java.io.InputStream;
[7082]13import java.nio.charset.StandardCharsets;
[5114]14import java.util.ArrayList;
15import java.util.Collection;
16import java.util.Collections;
17import java.util.HashMap;
18import java.util.HashSet;
19import java.util.Iterator;
20import java.util.List;
[8404]21import java.util.Locale;
[5114]22import java.util.Map;
23import java.util.Map.Entry;
[8338]24import java.util.Set;
[5114]25import java.util.SortedMap;
26import java.util.TreeMap;
27import java.util.regex.Matcher;
28import java.util.regex.Pattern;
[5874]29
[5114]30import javax.script.ScriptEngine;
31import javax.script.ScriptEngineManager;
[5874]32import javax.script.ScriptException;
[5114]33import javax.swing.JOptionPane;
34import javax.swing.SwingUtilities;
35import javax.xml.parsers.DocumentBuilder;
36import javax.xml.parsers.DocumentBuilderFactory;
37import javax.xml.transform.OutputKeys;
38import javax.xml.transform.Transformer;
39import javax.xml.transform.TransformerFactory;
40import javax.xml.transform.dom.DOMSource;
41import javax.xml.transform.stream.StreamResult;
42
[5874]43import org.openstreetmap.josm.Main;
[6578]44import org.openstreetmap.josm.data.Preferences.ListListSetting;
45import org.openstreetmap.josm.data.Preferences.ListSetting;
46import org.openstreetmap.josm.data.Preferences.MapListSetting;
[5874]47import org.openstreetmap.josm.data.Preferences.Setting;
[6578]48import org.openstreetmap.josm.data.Preferences.StringSetting;
[5114]49import org.openstreetmap.josm.gui.io.DownloadFileTask;
50import org.openstreetmap.josm.plugins.PluginDownloadTask;
51import org.openstreetmap.josm.plugins.PluginInformation;
52import org.openstreetmap.josm.plugins.ReadLocalPluginInformationTask;
53import org.openstreetmap.josm.tools.LanguageInfo;
[5874]54import org.openstreetmap.josm.tools.Utils;
[5114]55import org.w3c.dom.Document;
56import org.w3c.dom.Element;
57import org.w3c.dom.Node;
58import org.w3c.dom.NodeList;
59
60/**
61 * Class to process configuration changes stored in XML
62 * can be used to modify preferences, store/delete files in .josm folders etc
63 */
[6362]64public final class CustomConfigurator {
[7027]65
[6360]66 private CustomConfigurator() {
67 // Hide default constructor for utils classes
68 }
[7027]69
[5114]70 private static StringBuilder summary = new StringBuilder();
[6069]71
[5114]72 public static void log(String fmt, Object... vars) {
73 summary.append(String.format(fmt, vars));
74 }
[6069]75
[5114]76 public static void log(String s) {
77 summary.append(s);
[8390]78 summary.append('\n');
[5114]79 }
[6069]80
[5114]81 public static String getLog() {
82 return summary.toString();
83 }
[6069]84
[5114]85 public static void readXML(String dir, String fileName) {
86 readXML(new File(dir, fileName));
87 }
88
89 /**
90 * Read configuration script from XML file, modifying given preferences object
91 * @param file - file to open for reading XML
92 * @param prefs - arbitrary Preferences object to modify by script
93 */
94 public static void readXML(final File file, final Preferences prefs) {
[8510]95 synchronized (CustomConfigurator.class) {
96 busy = true;
[5114]97 }
98 new XMLCommandProcessor(prefs).openAndReadXML(file);
[8510]99 synchronized (CustomConfigurator.class) {
[6069]100 CustomConfigurator.class.notifyAll();
[8510]101 busy = false;
[5114]102 }
103 }
[6069]104
[5114]105 /**
106 * Read configuration script from XML file, modifying main preferences
107 * @param file - file to open for reading XML
108 */
109 public static void readXML(File file) {
110 readXML(file, Main.pref);
111 }
[6069]112
[5114]113 /**
114 * Downloads file to one of JOSM standard folders
115 * @param address - URL to download
[6069]116 * @param path - file path relative to base where to put downloaded file
[5114]117 * @param base - only "prefs", "cache" and "plugins" allowed for standard folders
118 */
119 public static void downloadFile(String address, String path, String base) {
120 processDownloadOperation(address, path, getDirectoryByAbbr(base), true, false);
121 }
122
123 /**
124 * Downloads file to one of JOSM standard folders nad unpack it as ZIP/JAR file
125 * @param address - URL to download
[6069]126 * @param path - file path relative to base where to put downloaded file
[5114]127 * @param base - only "prefs", "cache" and "plugins" allowed for standard folders
128 */
129 public static void downloadAndUnpackFile(String address, String path, String base) {
130 processDownloadOperation(address, path, getDirectoryByAbbr(base), true, true);
131 }
132
133 /**
134 * Downloads file to arbitrary folder
135 * @param address - URL to download
[6069]136 * @param path - file path relative to parentDir where to put downloaded file
[5114]137 * @param parentDir - folder where to put file
138 * @param mkdir - if true, non-existing directories will be created
139 * @param unzip - if true file wil be unzipped and deleted after download
140 */
141 public static void processDownloadOperation(String address, String path, String parentDir, boolean mkdir, boolean unzip) {
142 String dir = parentDir;
143 if (path.contains("..") || path.startsWith("/") || path.contains(":")) {
144 return; // some basic protection
145 }
146 File fOut = new File(dir, path);
147 DownloadFileTask downloadFileTask = new DownloadFileTask(Main.parent, address, fOut, mkdir, unzip);
148
[6232]149 Main.worker.submit(downloadFileTask);
[5114]150 log("Info: downloading file from %s to %s in background ", parentDir, fOut.getAbsolutePath());
151 if (unzip) log("and unpacking it"); else log("");
[6069]152
[5114]153 }
154
155 /**
156 * Simple function to show messageBox, may be used from JS API and from other code
[6069]157 * @param type - 'i','w','e','q','p' for Information, Warning, Error, Question, Message
[5114]158 * @param text - message to display, HTML allowed
159 */
160 public static void messageBox(String type, String text) {
[8510]161 if (type == null || type.isEmpty()) type = "plain";
[5114]162
163 switch (type.charAt(0)) {
164 case 'i': JOptionPane.showMessageDialog(Main.parent, text, tr("Information"), JOptionPane.INFORMATION_MESSAGE); break;
165 case 'w': JOptionPane.showMessageDialog(Main.parent, text, tr("Warning"), JOptionPane.WARNING_MESSAGE); break;
166 case 'e': JOptionPane.showMessageDialog(Main.parent, text, tr("Error"), JOptionPane.ERROR_MESSAGE); break;
167 case 'q': JOptionPane.showMessageDialog(Main.parent, text, tr("Question"), JOptionPane.QUESTION_MESSAGE); break;
168 case 'p': JOptionPane.showMessageDialog(Main.parent, text, tr("Message"), JOptionPane.PLAIN_MESSAGE); break;
169 }
170 }
[6069]171
[5114]172 /**
173 * Simple function for choose window, may be used from JS API and from other code
174 * @param text - message to show, HTML allowed
175 * @param opts -
176 * @return number of pressed button, -1 if cancelled
177 */
178 public static int askForOption(String text, String opts) {
179 Integer answer;
[8461]180 if (!opts.isEmpty()) {
[5114]181 String[] options = opts.split(";");
[8509]182 answer = JOptionPane.showOptionDialog(Main.parent, text, "Question",
183 JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, 0);
[5114]184 } else {
[8509]185 answer = JOptionPane.showOptionDialog(Main.parent, text, "Question",
186 JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, null, 2);
[5114]187 }
[8510]188 if (answer == null) return -1; else return answer;
[5114]189 }
190
191 public static String askForText(String text) {
192 String s = JOptionPane.showInputDialog(Main.parent, text, tr("Enter text"), JOptionPane.QUESTION_MESSAGE);
[8510]193 if (s != null && !(s = s.trim()).isEmpty()) {
[5114]194 return s;
195 } else {
196 return "";
197 }
198 }
199
200 /**
201 * This function exports part of user preferences to specified file.
202 * Default values are not saved.
203 * @param filename - where to export
204 * @param append - if true, resulting file cause appending to exuisting preferences
205 * @param keys - which preferences keys you need to export ("imagery.entries", for example)
206 */
207 public static void exportPreferencesKeysToFile(String filename, boolean append, String... keys) {
[8338]208 Set<String> keySet = new HashSet<>();
[5114]209 Collections.addAll(keySet, keys);
210 exportPreferencesKeysToFile(filename, append, keySet);
211 }
212
213 /**
214 * This function exports part of user preferences to specified file.
215 * Default values are not saved.
216 * Preference keys matching specified pattern are saved
[5890]217 * @param fileName - where to export
[5114]218 * @param append - if true, resulting file cause appending to exuisting preferences
219 * @param pattern - Regexp pattern forh preferences keys you need to export (".*imagery.*", for example)
220 */
221 public static void exportPreferencesKeysByPatternToFile(String fileName, boolean append, String pattern) {
[7005]222 List<String> keySet = new ArrayList<>();
[7027]223 Map<String, Setting<?>> allSettings = Main.pref.getAllSettings();
[5114]224 for (String key: allSettings.keySet()) {
225 if (key.matches(pattern)) keySet.add(key);
226 }
227 exportPreferencesKeysToFile(fileName, append, keySet);
228 }
[6069]229
[5114]230 /**
231 * Export specified preferences keys to configuration file
232 * @param filename - name of file
[8509]233 * @param append - will the preferences be appended to existing ones when file is imported later.
234 * Elsewhere preferences from file will replace existing keys.
[5114]235 * @param keys - collection of preferences key names to save
236 */
237 public static void exportPreferencesKeysToFile(String filename, boolean append, Collection<String> keys) {
238 Element root = null;
239 Document document = null;
240 Document exportDocument = null;
241
242 try {
243 String toXML = Main.pref.toXML(true);
[7082]244 InputStream is = new ByteArrayInputStream(toXML.getBytes(StandardCharsets.UTF_8));
[5114]245 DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
246 builderFactory.setValidating(false);
247 builderFactory.setNamespaceAware(false);
248 DocumentBuilder builder = builderFactory.newDocumentBuilder();
249 document = builder.parse(is);
250 exportDocument = builder.newDocument();
251 root = document.getDocumentElement();
252 } catch (Exception ex) {
[6248]253 Main.warn("Error getting preferences to save:" +ex.getMessage());
[5114]254 }
[8510]255 if (root == null) return;
[5114]256 try {
[6069]257
[5114]258 Element newRoot = exportDocument.createElement("config");
259 exportDocument.appendChild(newRoot);
[6069]260
[5114]261 Element prefElem = exportDocument.createElement("preferences");
[8510]262 prefElem.setAttribute("operation", append ? "append" : "replace");
[5114]263 newRoot.appendChild(prefElem);
264
265 NodeList childNodes = root.getChildNodes();
266 int n = childNodes.getLength();
[8449]267 for (int i = 0; i < n; i++) {
[5114]268 Node item = childNodes.item(i);
269 if (item.getNodeType() == Node.ELEMENT_NODE) {
270 String currentKey = ((Element) item).getAttribute("key");
271 if (keys.contains(currentKey)) {
272 Node imported = exportDocument.importNode(item, true);
273 prefElem.appendChild(imported);
274 }
275 }
276 }
277 File f = new File(filename);
278 Transformer ts = TransformerFactory.newInstance().newTransformer();
279 ts.setOutputProperty(OutputKeys.INDENT, "yes");
280 ts.transform(new DOMSource(exportDocument), new StreamResult(f.toURI().getPath()));
281 } catch (Exception ex) {
[6643]282 Main.warn("Error saving preferences part:");
283 Main.error(ex);
[5114]284 }
285 }
[6069]286
[6578]287 public static void deleteFile(String path, String base) {
[5114]288 String dir = getDirectoryByAbbr(base);
[8510]289 if (dir == null) {
[5114]290 log("Error: Can not find base, use base=cache, base=prefs or base=plugins attribute.");
291 return;
292 }
293 log("Delete file: %s\n", path);
294 if (path.contains("..") || path.startsWith("/") || path.contains(":")) {
295 return; // some basic protection
296 }
297 File fOut = new File(dir, path);
298 if (fOut.exists()) {
299 deleteFileOrDirectory(fOut);
300 }
301 }
302
303 public static void deleteFileOrDirectory(String path) {
304 deleteFileOrDirectory(new File(path));
305 }
[6069]306
[5114]307 public static void deleteFileOrDirectory(File f) {
308 if (f.isDirectory()) {
[8308]309 File[] files = f.listFiles();
310 if (files != null) {
311 for (File f1: files) {
312 deleteFileOrDirectory(f1);
313 }
[6069]314 }
[5114]315 }
316 try {
317 f.delete();
318 } catch (Exception e) {
[8308]319 log("Warning: Can not delete file "+f.getPath()+": "+e.getMessage());
[5114]320 }
321 }
322
[8840]323 private static boolean busy;
[5114]324
325 public static void pluginOperation(String install, String uninstall, String delete) {
[7005]326 final List<String> installList = new ArrayList<>();
327 final List<String> removeList = new ArrayList<>();
328 final List<String> deleteList = new ArrayList<>();
[8404]329 Collections.addAll(installList, install.toLowerCase(Locale.ENGLISH).split(";"));
330 Collections.addAll(removeList, uninstall.toLowerCase(Locale.ENGLISH).split(";"));
331 Collections.addAll(deleteList, delete.toLowerCase(Locale.ENGLISH).split(";"));
332 installList.remove("");
333 removeList.remove("");
334 deleteList.remove("");
[6069]335
[5115]336 if (!installList.isEmpty()) {
337 log("Plugins install: "+installList);
338 }
339 if (!removeList.isEmpty()) {
340 log("Plugins turn off: "+removeList);
341 }
342 if (!deleteList.isEmpty()) {
343 log("Plugins delete: "+deleteList);
344 }
[5114]345
346 final ReadLocalPluginInformationTask task = new ReadLocalPluginInformationTask();
347 Runnable r = new Runnable() {
[6084]348 @Override
[5114]349 public void run() {
350 if (task.isCanceled()) return;
[6069]351 synchronized (CustomConfigurator.class) {
[8404]352 try { // proceed only after all other tasks were finished
353 while (busy) CustomConfigurator.class.wait();
354 } catch (InterruptedException ex) {
355 Main.warn("InterruptedException while reading local plugin information");
356 }
[6069]357
[8404]358 SwingUtilities.invokeLater(new Runnable() {
359 @Override
360 public void run() {
361 List<PluginInformation> availablePlugins = task.getAvailablePlugins();
362 List<PluginInformation> toInstallPlugins = new ArrayList<>();
363 List<PluginInformation> toRemovePlugins = new ArrayList<>();
364 List<PluginInformation> toDeletePlugins = new ArrayList<>();
365 for (PluginInformation pi: availablePlugins) {
366 String name = pi.name.toLowerCase(Locale.ENGLISH);
367 if (installList.contains(name)) toInstallPlugins.add(pi);
368 if (removeList.contains(name)) toRemovePlugins.add(pi);
369 if (deleteList.contains(name)) toDeletePlugins.add(pi);
[5114]370 }
[8404]371 if (!installList.isEmpty()) {
372 PluginDownloadTask pluginDownloadTask =
373 new PluginDownloadTask(Main.parent, toInstallPlugins, tr("Installing plugins"));
374 Main.worker.submit(pluginDownloadTask);
375 }
376 Collection<String> pls = new ArrayList<>(Main.pref.getCollection("plugins"));
377 for (PluginInformation pi: toInstallPlugins) {
378 if (!pls.contains(pi.name)) {
379 pls.add(pi.name);
380 }
381 }
382 for (PluginInformation pi: toRemovePlugins) {
383 pls.remove(pi.name);
384 }
385 for (PluginInformation pi: toDeletePlugins) {
386 pls.remove(pi.name);
387 new File(Main.pref.getPluginsDirectory(), pi.name+".jar").deleteOnExit();
388 }
[8510]389 Main.pref.putCollection("plugins", pls);
[5114]390 }
[8404]391 });
392 }
[5114]393 }
394 };
395 Main.worker.submit(task);
396 Main.worker.submit(r);
397 }
[6069]398
[5114]399 private static String getDirectoryByAbbr(String base) {
[7834]400 String dir;
401 if ("prefs".equals(base) || base.isEmpty()) {
402 dir = Main.pref.getPreferencesDirectory().getAbsolutePath();
403 } else if ("cache".equals(base)) {
404 dir = Main.pref.getCacheDirectory().getAbsolutePath();
405 } else if ("plugins".equals(base)) {
406 dir = Main.pref.getPluginsDirectory().getAbsolutePath();
407 } else {
408 dir = null;
409 }
410 return dir;
[5114]411 }
412
413 public static Preferences clonePreferences(Preferences pref) {
414 Preferences tmp = new Preferences();
[6578]415 tmp.settingsMap.putAll(pref.settingsMap);
416 tmp.defaultsMap.putAll(pref.defaultsMap);
[8443]417 tmp.colornames.putAll(pref.colornames);
[6069]418
[5114]419 return tmp;
420 }
421
422 public static class XMLCommandProcessor {
[6069]423
[8285]424 private Preferences mainPrefs;
[8510]425 private Map<String, Element> tasksMap = new HashMap<>();
[6069]426
[5114]427 private boolean lastV; // last If condition result
[6069]428
[8285]429 private ScriptEngine engine;
[6069]430
[5114]431 public void openAndReadXML(File file) {
432 log("-- Reading custom preferences from " + file.getAbsolutePath() + " --");
433 try {
[5162]434 String fileDir = file.getParentFile().getAbsolutePath();
[8510]435 if (fileDir != null) engine.eval("scriptDir='"+normalizeDirName(fileDir) +"';");
[7033]436 try (InputStream is = new BufferedInputStream(new FileInputStream(file))) {
437 openAndReadXML(is);
438 }
[5201]439 } catch (Exception ex) {
440 log("Error reading custom preferences: " + ex.getMessage());
441 }
442 }
443
444 public void openAndReadXML(InputStream is) {
445 try {
[5114]446 DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
447 builderFactory.setValidating(false);
448 builderFactory.setNamespaceAware(true);
449 DocumentBuilder builder = builderFactory.newDocumentBuilder();
450 Document document = builder.parse(is);
451 synchronized (CustomConfigurator.class) {
452 processXML(document);
453 }
454 } catch (Exception ex) {
455 log("Error reading custom preferences: "+ex.getMessage());
456 }
457 log("-- Reading complete --");
458 }
459
460 public XMLCommandProcessor(Preferences mainPrefs) {
461 try {
462 this.mainPrefs = mainPrefs;
463 CustomConfigurator.summary = new StringBuilder();
464 engine = new ScriptEngineManager().getEngineByName("rhino");
465 engine.eval("API={}; API.pref={}; API.fragments={};");
[6069]466
[7834]467 engine.eval("homeDir='"+normalizeDirName(Main.pref.getPreferencesDirectory().getAbsolutePath()) +"';");
[8846]468 engine.eval("josmVersion="+Version.getInstance().getVersion()+';');
[7033]469 String className = CustomConfigurator.class.getName();
[5114]470 engine.eval("API.messageBox="+className+".messageBox");
471 engine.eval("API.askText=function(text) { return String("+className+".askForText(text));}");
472 engine.eval("API.askOption="+className+".askForOption");
473 engine.eval("API.downloadFile="+className+".downloadFile");
474 engine.eval("API.downloadAndUnpackFile="+className+".downloadAndUnpackFile");
475 engine.eval("API.deleteFile="+className+".deleteFile");
476 engine.eval("API.plugin ="+className+".pluginOperation");
477 engine.eval("API.pluginInstall = function(names) { "+className+".pluginOperation(names,'','');}");
478 engine.eval("API.pluginUninstall = function(names) { "+className+".pluginOperation('',names,'');}");
479 engine.eval("API.pluginDelete = function(names) { "+className+".pluginOperation('','',names);}");
480 } catch (Exception ex) {
481 log("Error: initializing script engine: "+ex.getMessage());
482 }
483 }
484
485 private void processXML(Document document) {
486 Element root = document.getDocumentElement();
487 processXmlFragment(root);
488 }
489
490 private void processXmlFragment(Element root) {
491 NodeList childNodes = root.getChildNodes();
492 int nops = childNodes.getLength();
493 for (int i = 0; i < nops; i++) {
494 Node item = childNodes.item(i);
495 if (item.getNodeType() != Node.ELEMENT_NODE) continue;
496 String elementName = item.getNodeName();
497 Element elem = (Element) item;
498
[7012]499 switch(elementName) {
500 case "var":
[5114]501 setVar(elem.getAttribute("name"), evalVars(elem.getAttribute("value")));
[7012]502 break;
503 case "task":
[5114]504 tasksMap.put(elem.getAttribute("name"), elem);
[7012]505 break;
506 case "runtask":
[5114]507 if (processRunTaskElement(elem)) return;
[7012]508 break;
509 case "ask":
[6069]510 processAskElement(elem);
[7012]511 break;
512 case "if":
[6069]513 processIfElement(elem);
[7012]514 break;
515 case "else":
[6069]516 processElseElement(elem);
[7012]517 break;
518 case "break":
[5114]519 return;
[7012]520 case "plugin":
[5114]521 processPluginInstallElement(elem);
[7012]522 break;
523 case "messagebox":
[5114]524 processMsgBoxElement(elem);
[7012]525 break;
526 case "preferences":
[5114]527 processPreferencesElement(elem);
[7012]528 break;
529 case "download":
[5114]530 processDownloadElement(elem);
[7012]531 break;
532 case "delete":
[5114]533 processDeleteElement(elem);
[7012]534 break;
535 case "script":
[5114]536 processScriptElement(elem);
[7012]537 break;
538 default:
[5114]539 log("Error: Unknown element " + elementName);
540 }
541 }
542 }
543
544 private void processPreferencesElement(Element item) {
545 String oper = evalVars(item.getAttribute("operation"));
546 String id = evalVars(item.getAttribute("id"));
[6069]547
[5114]548 if ("delete-keys".equals(oper)) {
549 String pattern = evalVars(item.getAttribute("pattern"));
550 String key = evalVars(item.getAttribute("key"));
551 if (key != null) {
552 PreferencesUtils.deletePreferenceKey(key, mainPrefs);
553 }
554 if (pattern != null) {
555 PreferencesUtils.deletePreferenceKeyByPattern(pattern, mainPrefs);
556 }
557 return;
558 }
[6069]559
[5114]560 Preferences tmpPref = readPreferencesFromDOMElement(item);
561 PreferencesUtils.showPrefs(tmpPref);
[6069]562
[8461]563 if (!id.isEmpty()) {
[5114]564 try {
565 String fragmentVar = "API.fragments['"+id+"']";
566 engine.eval(fragmentVar+"={};");
567 PreferencesUtils.loadPrefsToJS(engine, tmpPref, fragmentVar, false);
568 // we store this fragment as API.fragments['id']
569 } catch (ScriptException ex) {
570 log("Error: can not load preferences fragment : "+ex.getMessage());
571 }
572 }
[6069]573
[5114]574 if ("replace".equals(oper)) {
575 log("Preferences replace: %d keys: %s\n",
576 tmpPref.getAllSettings().size(), tmpPref.getAllSettings().keySet().toString());
577 PreferencesUtils.replacePreferences(tmpPref, mainPrefs);
578 } else if ("append".equals(oper)) {
579 log("Preferences append: %d keys: %s\n",
580 tmpPref.getAllSettings().size(), tmpPref.getAllSettings().keySet().toString());
581 PreferencesUtils.appendPreferences(tmpPref, mainPrefs);
582 } else if ("delete-values".equals(oper)) {
583 PreferencesUtils.deletePreferenceValues(tmpPref, mainPrefs);
584 }
585 }
[6069]586
[5114]587 private void processDeleteElement(Element item) {
588 String path = evalVars(item.getAttribute("path"));
589 String base = evalVars(item.getAttribute("base"));
590 deleteFile(base, path);
591 }
592
593 private void processDownloadElement(Element item) {
594 String address = evalVars(item.getAttribute("url"));
595 String path = evalVars(item.getAttribute("path"));
596 String unzip = evalVars(item.getAttribute("unzip"));
597 String mkdir = evalVars(item.getAttribute("mkdir"));
598
599 String base = evalVars(item.getAttribute("base"));
600 String dir = getDirectoryByAbbr(base);
[8510]601 if (dir == null) {
[5114]602 log("Error: Can not find directory to place file, use base=cache, base=prefs or base=plugins attribute.");
603 return;
604 }
[6069]605
[5114]606 if (path.contains("..") || path.startsWith("/") || path.contains(":")) {
607 return; // some basic protection
608 }
[8394]609 if (address == null || path == null || address.isEmpty() || path.isEmpty()) {
[5114]610 log("Error: Please specify url=\"where to get file\" and path=\"where to place it\"");
611 return;
612 }
613 processDownloadOperation(address, path, dir, "true".equals(mkdir), "true".equals(unzip));
614 }
[6069]615
[5114]616 private void processPluginInstallElement(Element elem) {
617 String install = elem.getAttribute("install");
618 String uninstall = elem.getAttribute("remove");
619 String delete = elem.getAttribute("delete");
620 pluginOperation(install, uninstall, delete);
621 }
[6069]622
[5114]623 private void processMsgBoxElement(Element elem) {
624 String text = evalVars(elem.getAttribute("text"));
625 String locText = evalVars(elem.getAttribute(LanguageInfo.getJOSMLocaleCode()+".text"));
[8510]626 if (locText != null && !locText.isEmpty()) text = locText;
[5114]627
628 String type = evalVars(elem.getAttribute("type"));
629 messageBox(type, text);
630 }
631
632 private void processAskElement(Element elem) {
633 String text = evalVars(elem.getAttribute("text"));
634 String locText = evalVars(elem.getAttribute(LanguageInfo.getJOSMLocaleCode()+".text"));
[8510]635 if (!locText.isEmpty()) text = locText;
[5114]636 String var = elem.getAttribute("var");
[8510]637 if (var.isEmpty()) var = "result";
[6069]638
[5114]639 String input = evalVars(elem.getAttribute("input"));
640 if ("true".equals(input)) {
641 setVar(var, askForText(text));
642 } else {
643 String opts = evalVars(elem.getAttribute("options"));
644 String locOpts = evalVars(elem.getAttribute(LanguageInfo.getJOSMLocaleCode()+".options"));
[8510]645 if (!locOpts.isEmpty()) opts = locOpts;
[5114]646 setVar(var, String.valueOf(askForOption(text, opts)));
647 }
648 }
649
650 public void setVar(String name, String value) {
651 try {
652 engine.eval(name+"='"+value+"';");
653 } catch (ScriptException ex) {
654 log("Error: Can not assign variable: %s=%s : %s\n", name, value, ex.getMessage());
655 }
656 }
[6069]657
[5114]658 private void processIfElement(Element elem) {
659 String realValue = evalVars(elem.getAttribute("test"));
[8395]660 boolean v = false;
661 if ("true".equals(realValue) || "false".equals(realValue)) {
662 processXmlFragment(elem);
663 v = true;
664 } else {
[5114]665 log("Error: Illegal test expression in if: %s=%s\n", elem.getAttribute("test"), realValue);
666 }
[6069]667
[5114]668 lastV = v;
669 }
670
671 private void processElseElement(Element elem) {
672 if (!lastV) {
[6069]673 processXmlFragment(elem);
[5114]674 }
675 }
676
677 private boolean processRunTaskElement(Element elem) {
678 String taskName = elem.getAttribute("name");
679 Element task = tasksMap.get(taskName);
[8510]680 if (task != null) {
[5114]681 log("EXECUTING TASK "+taskName);
682 processXmlFragment(task); // process task recursively
683 } else {
684 log("Error: Can not execute task "+taskName);
685 return true;
686 }
687 return false;
688 }
[6069]689
[5114]690 private void processScriptElement(Element elem) {
691 String js = elem.getChildNodes().item(0).getTextContent();
692 log("Processing script...");
693 try {
694 PreferencesUtils.modifyPreferencesByScript(engine, mainPrefs, js);
695 } catch (ScriptException ex) {
696 messageBox("e", ex.getMessage());
697 log("JS error: "+ex.getMessage());
698 }
699 log("Script finished");
700 }
[6069]701
[5114]702 /**
[6296]703 * substitute ${expression} = expression evaluated by JavaScript
[5114]704 */
705 private String evalVars(String s) {
[5162]706 Pattern p = Pattern.compile("\\$\\{([^\\}]*)\\}");
[5114]707 Matcher mr = p.matcher(s);
708 StringBuffer sb = new StringBuffer();
709 while (mr.find()) {
[6296]710 try {
711 String result = engine.eval(mr.group(1)).toString();
712 mr.appendReplacement(sb, result);
713 } catch (ScriptException ex) {
714 log("Error: Can not evaluate expression %s : %s", mr.group(1), ex.getMessage());
715 }
[5114]716 }
717 mr.appendTail(sb);
718 return sb.toString();
719 }
720
721 private Preferences readPreferencesFromDOMElement(Element item) {
722 Preferences tmpPref = new Preferences();
723 try {
724 Transformer xformer = TransformerFactory.newInstance().newTransformer();
725 CharArrayWriter outputWriter = new CharArrayWriter(8192);
726 StreamResult out = new StreamResult(outputWriter);
727
728 xformer.transform(new DOMSource(item), out);
[6069]729
[8510]730 String fragmentWithReplacedVars = evalVars(outputWriter.toString());
[5114]731
732 CharArrayReader reader = new CharArrayReader(fragmentWithReplacedVars.toCharArray());
733 tmpPref.fromXML(reader);
734 } catch (Exception ex) {
735 log("Error: can not read XML fragment :" + ex.getMessage());
[6069]736 }
[5114]737
738 return tmpPref;
739 }
740
[5162]741 private String normalizeDirName(String dir) {
[8846]742 String s = dir.replace('\\', '/');
[8510]743 if (s.endsWith("/")) s = s.substring(0, s.length()-1);
[5162]744 return s;
745 }
[5114]746 }
747
748 /**
[6578]749 * Helper class to do specific Preferences operation - appending, replacing,
[5114]750 * deletion by key and by value
751 * Also contains functions that convert preferences object to JavaScript object and back
752 */
[6987]753 public static final class PreferencesUtils {
[6069]754
[6986]755 private PreferencesUtils() {
756 // Hide implicit public constructor for utility class
757 }
758
[5114]759 private static void replacePreferences(Preferences fragment, Preferences mainpref) {
[7027]760 for (Entry<String, Setting<?>> entry: fragment.settingsMap.entrySet()) {
[6578]761 mainpref.putSetting(entry.getKey(), entry.getValue());
[5114]762 }
763 }
764
765 private static void appendPreferences(Preferences fragment, Preferences mainpref) {
[7027]766 for (Entry<String, Setting<?>> entry: fragment.settingsMap.entrySet()) {
[5114]767 String key = entry.getKey();
[6578]768 if (entry.getValue() instanceof StringSetting) {
769 mainpref.putSetting(key, entry.getValue());
770 } else if (entry.getValue() instanceof ListSetting) {
771 ListSetting lSetting = (ListSetting) entry.getValue();
772 Collection<String> newItems = getCollection(mainpref, key, true);
773 if (newItems == null) continue;
774 for (String item : lSetting.getValue()) {
775 // add nonexisting elements to then list
776 if (!newItems.contains(item)) {
777 newItems.add(item);
778 }
[5114]779 }
[6578]780 mainpref.putCollection(key, newItems);
781 } else if (entry.getValue() instanceof ListListSetting) {
782 ListListSetting llSetting = (ListListSetting) entry.getValue();
783 Collection<Collection<String>> newLists = getArray(mainpref, key, true);
784 if (newLists == null) continue;
[5114]785
[6578]786 for (Collection<String> list : llSetting.getValue()) {
787 // add nonexisting list (equals comparison for lists is used implicitly)
788 if (!newLists.contains(list)) {
789 newLists.add(list);
790 }
[5114]791 }
[6578]792 mainpref.putArray(key, newLists);
793 } else if (entry.getValue() instanceof MapListSetting) {
794 MapListSetting mlSetting = (MapListSetting) entry.getValue();
795 List<Map<String, String>> newMaps = getListOfStructs(mainpref, key, true);
796 if (newMaps == null) continue;
[5114]797
[6578]798 // get existing properties as list of maps
[5114]799
[6578]800 for (Map<String, String> map : mlSetting.getValue()) {
801 // add nonexisting map (equals comparison for maps is used implicitly)
802 if (!newMaps.contains(map)) {
803 newMaps.add(map);
804 }
[5114]805 }
[6578]806 mainpref.putListOfStructs(entry.getKey(), newMaps);
[5114]807 }
808 }
809 }
[6069]810
[5114]811 /**
[6578]812 * Delete items from @param mainpref collections that match items from @param fragment collections
813 */
814 private static void deletePreferenceValues(Preferences fragment, Preferences mainpref) {
[5114]815
[7027]816 for (Entry<String, Setting<?>> entry : fragment.settingsMap.entrySet()) {
[6578]817 String key = entry.getKey();
818 if (entry.getValue() instanceof StringSetting) {
819 StringSetting sSetting = (StringSetting) entry.getValue();
820 // if mentioned value found, delete it
821 if (sSetting.equals(mainpref.settingsMap.get(key))) {
822 mainpref.put(key, null);
823 }
824 } else if (entry.getValue() instanceof ListSetting) {
825 ListSetting lSetting = (ListSetting) entry.getValue();
826 Collection<String> newItems = getCollection(mainpref, key, true);
827 if (newItems == null) continue;
[5114]828
[6578]829 // remove mentioned items from collection
830 for (String item : lSetting.getValue()) {
831 log("Deleting preferences: from list %s: %s\n", key, item);
832 newItems.remove(item);
833 }
834 mainpref.putCollection(entry.getKey(), newItems);
835 } else if (entry.getValue() instanceof ListListSetting) {
836 ListListSetting llSetting = (ListListSetting) entry.getValue();
837 Collection<Collection<String>> newLists = getArray(mainpref, key, true);
838 if (newLists == null) continue;
[5114]839
[6578]840 // if items are found in one of lists, remove that list!
841 Iterator<Collection<String>> listIterator = newLists.iterator();
842 while (listIterator.hasNext()) {
843 Collection<String> list = listIterator.next();
844 for (Collection<String> removeList : llSetting.getValue()) {
845 if (list.containsAll(removeList)) {
846 // remove current list, because it matches search criteria
847 log("Deleting preferences: list from lists %s: %s\n", key, list);
848 listIterator.remove();
849 }
850 }
[5114]851 }
852
[6578]853 mainpref.putArray(key, newLists);
854 } else if (entry.getValue() instanceof MapListSetting) {
855 MapListSetting mlSetting = (MapListSetting) entry.getValue();
856 List<Map<String, String>> newMaps = getListOfStructs(mainpref, key, true);
857 if (newMaps == null) continue;
[5114]858
[6578]859 Iterator<Map<String, String>> mapIterator = newMaps.iterator();
860 while (mapIterator.hasNext()) {
861 Map<String, String> map = mapIterator.next();
862 for (Map<String, String> removeMap : mlSetting.getValue()) {
863 if (map.entrySet().containsAll(removeMap.entrySet())) {
864 // the map contain all mentioned key-value pair, so it should be deleted from "maps"
865 log("Deleting preferences: deleting map from maps %s: %s\n", key, map);
866 mapIterator.remove();
867 }
868 }
[5114]869 }
[6578]870 mainpref.putListOfStructs(entry.getKey(), newMaps);
[5114]871 }
872 }
873 }
[6069]874
[5114]875 private static void deletePreferenceKeyByPattern(String pattern, Preferences pref) {
[7027]876 Map<String, Setting<?>> allSettings = pref.getAllSettings();
877 for (Entry<String, Setting<?>> entry : allSettings.entrySet()) {
[6258]878 String key = entry.getKey();
[5114]879 if (key.matches(pattern)) {
[6258]880 log("Deleting preferences: deleting key from preferences: " + key);
[6578]881 pref.putSetting(key, null);
[5114]882 }
883 }
884 }
885
886 private static void deletePreferenceKey(String key, Preferences pref) {
[7027]887 Map<String, Setting<?>> allSettings = pref.getAllSettings();
[5114]888 if (allSettings.containsKey(key)) {
[6258]889 log("Deleting preferences: deleting key from preferences: " + key);
[6578]890 pref.putSetting(key, null);
[5114]891 }
892 }
[6069]893
[5114]894 private static Collection<String> getCollection(Preferences mainpref, String key, boolean warnUnknownDefault) {
[6578]895 ListSetting existing = Utils.cast(mainpref.settingsMap.get(key), ListSetting.class);
896 ListSetting defaults = Utils.cast(mainpref.defaultsMap.get(key), ListSetting.class);
[5114]897 if (existing == null && defaults == null) {
898 if (warnUnknownDefault) defaultUnknownWarning(key);
899 return null;
900 }
[6578]901 if (existing != null)
[7005]902 return new ArrayList<>(existing.getValue());
[6578]903 else
[7005]904 return defaults.getValue() == null ? null : new ArrayList<>(defaults.getValue());
[5114]905 }
[6069]906
[5114]907 private static Collection<Collection<String>> getArray(Preferences mainpref, String key, boolean warnUnknownDefault) {
[6578]908 ListListSetting existing = Utils.cast(mainpref.settingsMap.get(key), ListListSetting.class);
909 ListListSetting defaults = Utils.cast(mainpref.defaultsMap.get(key), ListListSetting.class);
[5114]910
911 if (existing == null && defaults == null) {
912 if (warnUnknownDefault) defaultUnknownWarning(key);
913 return null;
914 }
[6578]915 if (existing != null)
916 return new ArrayList<Collection<String>>(existing.getValue());
917 else
918 return defaults.getValue() == null ? null : new ArrayList<Collection<String>>(defaults.getValue());
[5114]919 }
920
921 private static List<Map<String, String>> getListOfStructs(Preferences mainpref, String key, boolean warnUnknownDefault) {
[6578]922 MapListSetting existing = Utils.cast(mainpref.settingsMap.get(key), MapListSetting.class);
923 MapListSetting defaults = Utils.cast(mainpref.settingsMap.get(key), MapListSetting.class);
[5114]924
925 if (existing == null && defaults == null) {
926 if (warnUnknownDefault) defaultUnknownWarning(key);
927 return null;
928 }
929
[6578]930 if (existing != null)
[7005]931 return new ArrayList<>(existing.getValue());
[6578]932 else
[7005]933 return defaults.getValue() == null ? null : new ArrayList<>(defaults.getValue());
[5114]934 }
935
936 private static void defaultUnknownWarning(String key) {
937 log("Warning: Unknown default value of %s , skipped\n", key);
938 JOptionPane.showMessageDialog(
939 Main.parent,
[8510]940 tr("<html>Settings file asks to append preferences to <b>{0}</b>,<br/> "+
941 "but its default value is unknown at this moment.<br/> " +
942 "Please activate corresponding function manually and retry importing.", key),
[5114]943 tr("Warning"),
944 JOptionPane.WARNING_MESSAGE);
945 }
946
947 private static void showPrefs(Preferences tmpPref) {
[6578]948 Main.info("properties: " + tmpPref.settingsMap);
[5114]949 }
[6069]950
[5114]951 private static void modifyPreferencesByScript(ScriptEngine engine, Preferences tmpPref, String js) throws ScriptException {
952 loadPrefsToJS(engine, tmpPref, "API.pref", true);
953 engine.eval(js);
954 readPrefsFromJS(engine, tmpPref, "API.pref");
955 }
956
[6248]957 /**
[5114]958 * Convert JavaScript preferences object to preferences data structures
959 * @param engine - JS engine to put object
960 * @param tmpPref - preferences to fill from JS
961 * @param varInJS - JS variable name, where preferences are stored
[8470]962 * @throws ScriptException if the evaluation fails
[5114]963 */
964 public static void readPrefsFromJS(ScriptEngine engine, Preferences tmpPref, String varInJS) throws ScriptException {
965 String finish =
966 "stringMap = new java.util.TreeMap ;"+
967 "listMap = new java.util.TreeMap ;"+
968 "listlistMap = new java.util.TreeMap ;"+
969 "listmapMap = new java.util.TreeMap ;"+
970 "for (key in "+varInJS+") {"+
971 " val = "+varInJS+"[key];"+
972 " type = typeof val == 'string' ? 'string' : val.type;"+
973 " if (type == 'string') {"+
974 " stringMap.put(key, val);"+
975 " } else if (type == 'list') {"+
976 " l = new java.util.ArrayList;"+
977 " for (i=0; i<val.length; i++) {"+
978 " l.add(java.lang.String.valueOf(val[i]));"+
979 " }"+
980 " listMap.put(key, l);"+
981 " } else if (type == 'listlist') {"+
982 " l = new java.util.ArrayList;"+
983 " for (i=0; i<val.length; i++) {"+
984 " list=val[i];"+
985 " jlist=new java.util.ArrayList;"+
986 " for (j=0; j<list.length; j++) {"+
987 " jlist.add(java.lang.String.valueOf(list[j]));"+
988 " }"+
989 " l.add(jlist);"+
990 " }"+
991 " listlistMap.put(key, l);"+
992 " } else if (type == 'listmap') {"+
993 " l = new java.util.ArrayList;"+
994 " for (i=0; i<val.length; i++) {"+
995 " map=val[i];"+
996 " jmap=new java.util.TreeMap;"+
997 " for (var key2 in map) {"+
998 " jmap.put(key2,java.lang.String.valueOf(map[key2]));"+
999 " }"+
1000 " l.add(jmap);"+
1001 " }"+
1002 " listmapMap.put(key, l);"+
1003 " } else {" +
1004 " org.openstreetmap.josm.data.CustomConfigurator.log('Unknown type:'+val.type+ '- use list, listlist or listmap'); }"+
1005 " }";
1006 engine.eval(finish);
1007
[5590]1008 @SuppressWarnings("unchecked")
[5114]1009 Map<String, String> stringMap = (Map<String, String>) engine.get("stringMap");
[5590]1010 @SuppressWarnings("unchecked")
[8419]1011 Map<String, List<String>> listMap = (SortedMap<String, List<String>>) engine.get("listMap");
[5590]1012 @SuppressWarnings("unchecked")
[5114]1013 Map<String, List<Collection<String>>> listlistMap = (SortedMap<String, List<Collection<String>>>) engine.get("listlistMap");
[5590]1014 @SuppressWarnings("unchecked")
[8510]1015 Map<String, List<Map<String, String>>> listmapMap = (SortedMap<String, List<Map<String, String>>>) engine.get("listmapMap");
[5114]1016
[6578]1017 tmpPref.settingsMap.clear();
[5114]1018
[7027]1019 Map<String, Setting<?>> tmp = new HashMap<>();
[5114]1020 for (Entry<String, String> e : stringMap.entrySet()) {
[6578]1021 tmp.put(e.getKey(), new StringSetting(e.getValue()));
[5114]1022 }
1023 for (Entry<String, List<String>> e : listMap.entrySet()) {
[6578]1024 tmp.put(e.getKey(), new ListSetting(e.getValue()));
[5114]1025 }
1026
1027 for (Entry<String, List<Collection<String>>> e : listlistMap.entrySet()) {
[7027]1028 @SuppressWarnings("unchecked")
[8510]1029 List<List<String>> value = (List) e.getValue();
[6578]1030 tmp.put(e.getKey(), new ListListSetting(value));
[5114]1031 }
1032 for (Entry<String, List<Map<String, String>>> e : listmapMap.entrySet()) {
[6578]1033 tmp.put(e.getKey(), new MapListSetting(e.getValue()));
[5114]1034 }
[7027]1035 for (Entry<String, Setting<?>> e : tmp.entrySet()) {
[6578]1036 if (e.getValue().equals(tmpPref.defaultsMap.get(e.getKey()))) continue;
1037 tmpPref.settingsMap.put(e.getKey(), e.getValue());
1038 }
[5114]1039 }
[6069]1040
[5114]1041 /**
1042 * Convert preferences data structures to JavaScript object
1043 * @param engine - JS engine to put object
1044 * @param tmpPref - preferences to convert
1045 * @param whereToPutInJS - variable name to store preferences in JS
1046 * @param includeDefaults - include known default values to JS objects
[8470]1047 * @throws ScriptException if the evaluation fails
[5114]1048 */
[8509]1049 public static void loadPrefsToJS(ScriptEngine engine, Preferences tmpPref, String whereToPutInJS, boolean includeDefaults)
1050 throws ScriptException {
[7005]1051 Map<String, String> stringMap = new TreeMap<>();
1052 Map<String, List<String>> listMap = new TreeMap<>();
1053 Map<String, List<List<String>>> listlistMap = new TreeMap<>();
1054 Map<String, List<Map<String, String>>> listmapMap = new TreeMap<>();
[5114]1055
1056 if (includeDefaults) {
[7027]1057 for (Map.Entry<String, Setting<?>> e: tmpPref.defaultsMap.entrySet()) {
1058 Setting<?> setting = e.getValue();
[6578]1059 if (setting instanceof StringSetting) {
1060 stringMap.put(e.getKey(), ((StringSetting) setting).getValue());
1061 } else if (setting instanceof ListSetting) {
1062 listMap.put(e.getKey(), ((ListSetting) setting).getValue());
1063 } else if (setting instanceof ListListSetting) {
1064 listlistMap.put(e.getKey(), ((ListListSetting) setting).getValue());
1065 } else if (setting instanceof MapListSetting) {
1066 listmapMap.put(e.getKey(), ((MapListSetting) setting).getValue());
1067 }
1068 }
[5114]1069 }
[7027]1070 Iterator<Map.Entry<String, Setting<?>>> it = tmpPref.settingsMap.entrySet().iterator();
[6578]1071 while (it.hasNext()) {
[7027]1072 Map.Entry<String, Setting<?>> e = it.next();
[6578]1073 if (e.getValue().getValue() == null) {
1074 it.remove();
1075 }
1076 }
[5114]1077
[7027]1078 for (Map.Entry<String, Setting<?>> e: tmpPref.settingsMap.entrySet()) {
1079 Setting<?> setting = e.getValue();
[6578]1080 if (setting instanceof StringSetting) {
1081 stringMap.put(e.getKey(), ((StringSetting) setting).getValue());
1082 } else if (setting instanceof ListSetting) {
1083 listMap.put(e.getKey(), ((ListSetting) setting).getValue());
1084 } else if (setting instanceof ListListSetting) {
1085 listlistMap.put(e.getKey(), ((ListListSetting) setting).getValue());
1086 } else if (setting instanceof MapListSetting) {
1087 listmapMap.put(e.getKey(), ((MapListSetting) setting).getValue());
1088 }
1089 }
[5114]1090
1091 engine.put("stringMap", stringMap);
1092 engine.put("listMap", listMap);
1093 engine.put("listlistMap", listlistMap);
1094 engine.put("listmapMap", listmapMap);
1095
1096 String init =
1097 "function getJSList( javaList ) {"+
1098 " var jsList; var i; "+
1099 " if (javaList == null) return null;"+
1100 "jsList = [];"+
1101 " for (i = 0; i < javaList.size(); i++) {"+
1102 " jsList.push(String(list.get(i)));"+
1103 " }"+
1104 "return jsList;"+
1105 "}"+
1106 "function getJSMap( javaMap ) {"+
1107 " var jsMap; var it; var e; "+
1108 " if (javaMap == null) return null;"+
1109 " jsMap = {};"+
1110 " for (it = javaMap.entrySet().iterator(); it.hasNext();) {"+
1111 " e = it.next();"+
1112 " jsMap[ String(e.getKey()) ] = String(e.getValue()); "+
1113 " }"+
1114 " return jsMap;"+
1115 "}"+
1116 "for (it = stringMap.entrySet().iterator(); it.hasNext();) {"+
1117 " e = it.next();"+
1118 whereToPutInJS+"[String(e.getKey())] = String(e.getValue());"+
1119 "}\n"+
1120 "for (it = listMap.entrySet().iterator(); it.hasNext();) {"+
1121 " e = it.next();"+
1122 " list = e.getValue();"+
1123 " jslist = getJSList(list);"+
1124 " jslist.type = 'list';"+
1125 whereToPutInJS+"[String(e.getKey())] = jslist;"+
1126 "}\n"+
1127 "for (it = listlistMap.entrySet().iterator(); it.hasNext(); ) {"+
1128 " e = it.next();"+
1129 " listlist = e.getValue();"+
1130 " jslistlist = [];"+
1131 " for (it2 = listlist.iterator(); it2.hasNext(); ) {"+
1132 " list = it2.next(); "+
1133 " jslistlist.push(getJSList(list));"+
1134 " }"+
1135 " jslistlist.type = 'listlist';"+
1136 whereToPutInJS+"[String(e.getKey())] = jslistlist;"+
1137 "}\n"+
1138 "for (it = listmapMap.entrySet().iterator(); it.hasNext();) {"+
1139 " e = it.next();"+
1140 " listmap = e.getValue();"+
1141 " jslistmap = [];"+
1142 " for (it2 = listmap.iterator(); it2.hasNext();) {"+
1143 " map = it2.next();"+
1144 " jslistmap.push(getJSMap(map));"+
1145 " }"+
1146 " jslistmap.type = 'listmap';"+
1147 whereToPutInJS+"[String(e.getKey())] = jslistmap;"+
1148 "}\n";
[6069]1149
[5114]1150 // Execute conversion script
1151 engine.eval(init);
1152 }
1153 }
1154}
Note: See TracBrowser for help on using the repository browser.