Changeset 12826 in josm for trunk/src/org


Ignore:
Timestamp:
2017-09-12T00:58:32+02:00 (7 years ago)
Author:
Don-vip
Message:

see #15229 - see #15182 - remove GUI references from PreferencesUtils

Location:
trunk/src/org/openstreetmap/josm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/PreferencesUtils.java

    r12634 r12826  
    2323import org.openstreetmap.josm.data.preferences.Setting;
    2424import org.openstreetmap.josm.data.preferences.StringSetting;
    25 import org.openstreetmap.josm.gui.io.CustomConfigurator;
    2625import org.openstreetmap.josm.tools.Logging;
    2726import org.openstreetmap.josm.tools.Utils;
     
    3433public final class PreferencesUtils {
    3534
     35    private static StringBuilder summary = new StringBuilder();
     36
    3637    private PreferencesUtils() {
    3738        // Hide implicit public constructor for utility class
     39    }
     40
     41    /**
     42     * Log a formatted message.
     43     * @param fmt format
     44     * @param vars arguments
     45     * @see String#format
     46     * @since 12826
     47     */
     48    public static void log(String fmt, Object... vars) {
     49        summary.append(String.format(fmt, vars));
     50    }
     51
     52    /**
     53     * Log a message.
     54     * @param s message to log
     55     * @since 12826
     56     */
     57    public static void log(String s) {
     58        summary.append(s).append('\n');
     59    }
     60
     61    /**
     62     * Log an exception.
     63     * @param e exception to log
     64     * @param s message prefix
     65     * @since 12826
     66     */
     67    public static void log(Exception e, String s) {
     68        summary.append(s).append(' ').append(Logging.getErrorMessage(e)).append('\n');
     69    }
     70
     71    /**
     72     * Returns the log.
     73     * @return the log
     74     * @since 12826
     75     */
     76    public static String getLog() {
     77        return summary.toString();
     78    }
     79
     80    /**
     81     * Resets the log.
     82     * @since 12826
     83     */
     84    public static void resetLog() {
     85        summary = new StringBuilder();
    3886    }
    3987
     
    112160                // remove mentioned items from collection
    113161                for (String item : lSetting.getValue()) {
    114                     CustomConfigurator.log("Deleting preferences: from list %s: %s\n", key, item);
     162                    log("Deleting preferences: from list %s: %s\n", key, item);
    115163                    newItems.remove(item);
    116164                }
     
    128176                        if (list.containsAll(removeList)) {
    129177                            // remove current list, because it matches search criteria
    130                             CustomConfigurator.log("Deleting preferences: list from lists %s: %s\n", key, list);
     178                            log("Deleting preferences: list from lists %s: %s\n", key, list);
    131179                            listIterator.remove();
    132180                        }
     
    146194                        if (map.entrySet().containsAll(removeMap.entrySet())) {
    147195                            // the map contain all mentioned key-value pair, so it should be deleted from "maps"
    148                             CustomConfigurator.log("Deleting preferences: deleting map from maps %s: %s\n", key, map);
     196                            log("Deleting preferences: deleting map from maps %s: %s\n", key, map);
    149197                            mapIterator.remove();
    150198                        }
     
    161209            String key = entry.getKey();
    162210            if (key.matches(pattern)) {
    163                 CustomConfigurator.log("Deleting preferences: deleting key from preferences: " + key);
     211                log("Deleting preferences: deleting key from preferences: " + key);
    164212                pref.putSetting(key, null);
    165213            }
     
    170218        Map<String, Setting<?>> allSettings = pref.getAllSettings();
    171219        if (allSettings.containsKey(key)) {
    172             CustomConfigurator.log("Deleting preferences: deleting key from preferences: " + key);
     220            log("Deleting preferences: deleting key from preferences: " + key);
    173221            pref.putSetting(key, null);
    174222        }
     
    218266
    219267    private static void defaultUnknownWarning(String key) {
    220         CustomConfigurator.log("Warning: Unknown default value of %s , skipped\n", key);
     268        log("Warning: Unknown default value of %s , skipped\n", key);
    221269        JOptionPane.showMessageDialog(
    222270                Main.parent,
     
    285333            "    listmapMap.put(key, l);"+
    286334            "  }  else {" +
    287             "   " + CustomConfigurator.class.getName() + ".log('Unknown type:'+val.type+ '- use list, listlist or listmap'); }"+
     335            "   " + PreferencesUtils.class.getName() + ".log('Unknown type:'+val.type+ '- use list, listlist or listmap'); }"+
    288336            "  }";
    289337        engine.eval(finish);
  • trunk/src/org/openstreetmap/josm/gui/io/CustomConfigurator.java

    r12634 r12826  
    6666public final class CustomConfigurator {
    6767
    68     private static StringBuilder summary = new StringBuilder();
    69 
    7068    private CustomConfigurator() {
    7169        // Hide default constructor for utils classes
     
    7775     * @param vars arguments
    7876     * @see String#format
    79      */
     77     * @deprecated to be removed end of 2017. Use {@link PreferencesUtils#log(String, Object...)} instead
     78     */
     79    @Deprecated
    8080    public static void log(String fmt, Object... vars) {
    81         summary.append(String.format(fmt, vars));
     81        PreferencesUtils.log(fmt, vars);
    8282    }
    8383
     
    8585     * Log a message.
    8686     * @param s message to log
    87      */
     87     * @deprecated to be removed end of 2017. Use {@link PreferencesUtils#log(String)} instead
     88     */
     89    @Deprecated
    8890    public static void log(String s) {
    89         summary.append(s).append('\n');
     91        PreferencesUtils.log(s);
    9092    }
    9193
     
    9597     * @param s message prefix
    9698     * @since 10469
    97      */
     99     * @deprecated to be removed end of 2017. Use {@link PreferencesUtils#log(Exception, String)} instead
     100     */
     101    @Deprecated
    98102    public static void log(Exception e, String s) {
    99         summary.append(s).append(' ').append(Logging.getErrorMessage(e)).append('\n');
     103        PreferencesUtils.log(e, s);
    100104    }
    101105
     
    103107     * Returns the log.
    104108     * @return the log
    105      */
     109     * @deprecated to be removed end of 2017. Use {@link PreferencesUtils#getLog()} instead
     110     */
     111    @Deprecated
    106112    public static String getLog() {
    107         return summary.toString();
     113        return PreferencesUtils.getLog();
    108114    }
    109115
    110116    /**
    111117     * Resets the log.
    112      */
     118     * @deprecated to be removed end of 2017. Use {@link PreferencesUtils#resetLog()} instead
     119     */
     120    @Deprecated
    113121    public static void resetLog() {
    114         summary = new StringBuilder();
     122        PreferencesUtils.resetLog();
    115123    }
    116124
     
    185193
    186194        MainApplication.worker.submit(downloadFileTask);
    187         log("Info: downloading file from %s to %s in background ", parentDir, fOut.getAbsolutePath());
    188         if (unzip) log("and unpacking it"); else log("");
     195        PreferencesUtils.log("Info: downloading file from %s to %s in background ", parentDir, fOut.getAbsolutePath());
     196        if (unzip) PreferencesUtils.log("and unpacking it"); else PreferencesUtils.log("");
    189197
    190198    }
     
    315323        String dir = getDirectoryByAbbr(base);
    316324        if (dir == null) {
    317             log("Error: Can not find base, use base=cache, base=prefs or base=plugins attribute.");
     325            PreferencesUtils.log("Error: Can not find base, use base=cache, base=prefs or base=plugins attribute.");
    318326            return;
    319327        }
    320         log("Delete file: %s\n", path);
     328        PreferencesUtils.log("Delete file: %s\n", path);
    321329        if (path.contains("..") || path.startsWith("/") || path.contains(":")) {
    322330            return; // some basic protection
     
    338346        }
    339347        if (!Utils.deleteFile(f)) {
    340             log("Warning: Can not delete file "+f.getPath());
     348            PreferencesUtils.log("Warning: Can not delete file "+f.getPath());
    341349        }
    342350    }
     
    356364
    357365        if (!installList.isEmpty()) {
    358             log("Plugins install: "+installList);
     366            PreferencesUtils.log("Plugins install: "+installList);
    359367        }
    360368        if (!removeList.isEmpty()) {
    361             log("Plugins turn off: "+removeList);
     369            PreferencesUtils.log("Plugins turn off: "+removeList);
    362370        }
    363371        if (!deleteList.isEmpty()) {
    364             log("Plugins delete: "+deleteList);
     372            PreferencesUtils.log("Plugins delete: "+deleteList);
    365373        }
    366374
     
    437445
    438446        public void openAndReadXML(File file) {
    439             log("-- Reading custom preferences from " + file.getAbsolutePath() + " --");
     447            PreferencesUtils.log("-- Reading custom preferences from " + file.getAbsolutePath() + " --");
    440448            try {
    441449                String fileDir = file.getParentFile().getAbsolutePath();
     
    445453                }
    446454            } catch (ScriptException | IOException | SecurityException ex) {
    447                 log(ex, "Error reading custom preferences:");
     455                PreferencesUtils.log(ex, "Error reading custom preferences:");
    448456            }
    449457        }
     
    456464                }
    457465            } catch (SAXException | IOException | ParserConfigurationException ex) {
    458                 log(ex, "Error reading custom preferences:");
    459             }
    460             log("-- Reading complete --");
     466                PreferencesUtils.log(ex, "Error reading custom preferences:");
     467            }
     468            PreferencesUtils.log("-- Reading complete --");
    461469        }
    462470
     
    464472            try {
    465473                this.mainPrefs = mainPrefs;
    466                 resetLog();
     474                PreferencesUtils.resetLog();
    467475                engine = new ScriptEngineManager().getEngineByName("JavaScript");
    468476                engine.eval("API={}; API.pref={}; API.fragments={};");
     
    482490                engine.eval("API.pluginDelete = function(names) { "+className+".pluginOperation('','',names);}");
    483491            } catch (ScriptException ex) {
    484                 log("Error: initializing script engine: "+ex.getMessage());
     492                PreferencesUtils.log("Error: initializing script engine: "+ex.getMessage());
    485493                Logging.error(ex);
    486494            }
     
    540548                    break;
    541549                default:
    542                     log("Error: Unknown element " + elementName);
     550                    PreferencesUtils.log("Error: Unknown element " + elementName);
    543551                }
    544552            }
     
    567575                    // we store this fragment as API.fragments['id']
    568576                } catch (ScriptException ex) {
    569                     log(ex, "Error: can not load preferences fragment:");
     577                    PreferencesUtils.log(ex, "Error: can not load preferences fragment:");
    570578                }
    571579            }
    572580
    573581            if ("replace".equals(oper)) {
    574                 log("Preferences replace: %d keys: %s\n",
     582                PreferencesUtils.log("Preferences replace: %d keys: %s\n",
    575583                   tmpPref.getAllSettings().size(), tmpPref.getAllSettings().keySet().toString());
    576584                PreferencesUtils.replacePreferences(tmpPref, mainPrefs);
    577585            } else if ("append".equals(oper)) {
    578                 log("Preferences append: %d keys: %s\n",
     586                PreferencesUtils.log("Preferences append: %d keys: %s\n",
    579587                   tmpPref.getAllSettings().size(), tmpPref.getAllSettings().keySet().toString());
    580588                PreferencesUtils.appendPreferences(tmpPref, mainPrefs);
     
    594602            String dir = getDirectoryByAbbr(base);
    595603            if (dir == null) {
    596                 log("Error: Can not find directory to place file, use base=cache, base=prefs or base=plugins attribute.");
     604                PreferencesUtils.log("Error: Can not find directory to place file, use base=cache, base=prefs or base=plugins attribute.");
    597605                return;
    598606            }
     
    605613            String address = evalVars(item.getAttribute("url"));
    606614            if (address.isEmpty() || path.isEmpty()) {
    607                 log("Error: Please specify url=\"where to get file\" and path=\"where to place it\"");
     615                PreferencesUtils.log("Error: Please specify url=\"where to get file\" and path=\"where to place it\"");
    608616                return;
    609617            }
     
    652660                engine.eval(name+"='"+value+"';");
    653661            } catch (ScriptException ex) {
    654                 log(ex, String.format("Error: Can not assign variable: %s=%s :", name, value));
     662                PreferencesUtils.log(ex, String.format("Error: Can not assign variable: %s=%s :", name, value));
    655663            }
    656664        }
     
    663671                v = true;
    664672            } else {
    665                 log("Error: Illegal test expression in if: %s=%s\n", elem.getAttribute("test"), realValue);
     673                PreferencesUtils.log("Error: Illegal test expression in if: %s=%s\n", elem.getAttribute("test"), realValue);
    666674            }
    667675
     
    679687            Element task = tasksMap.get(taskName);
    680688            if (task != null) {
    681                 log("EXECUTING TASK "+taskName);
     689                PreferencesUtils.log("EXECUTING TASK "+taskName);
    682690                processXmlFragment(task); // process task recursively
    683691            } else {
    684                 log("Error: Can not execute task "+taskName);
     692                PreferencesUtils.log("Error: Can not execute task "+taskName);
    685693                return true;
    686694            }
     
    690698        private void processScriptElement(Element elem) {
    691699            String js = elem.getChildNodes().item(0).getTextContent();
    692             log("Processing script...");
     700            PreferencesUtils.log("Processing script...");
    693701            try {
    694702                PreferencesUtils.modifyPreferencesByScript(engine, mainPrefs, js);
    695703            } catch (ScriptException ex) {
    696704                messageBox("e", ex.getMessage());
    697                 log(ex, "JS error:");
    698             }
    699             log("Script finished");
     705                PreferencesUtils.log(ex, "JS error:");
     706            }
     707            PreferencesUtils.log("Script finished");
    700708        }
    701709
     
    713721                    mr.appendReplacement(sb, result);
    714722                } catch (ScriptException ex) {
    715                     log(ex, String.format("Error: Can not evaluate expression %s :", mr.group(1)));
     723                    PreferencesUtils.log(ex, String.format("Error: Can not evaluate expression %s :", mr.group(1)));
    716724                }
    717725            }
     
    734742                tmpPref.fromXML(reader);
    735743            } catch (TransformerException | XMLStreamException | IOException ex) {
    736                 log(ex, "Error: can not read XML fragment:");
     744                PreferencesUtils.log(ex, "Error: can not read XML fragment:");
    737745            }
    738746
  • trunk/src/org/openstreetmap/josm/gui/preferences/advanced/AdvancedPreference.java

    r12634 r12826  
    3939import org.openstreetmap.josm.actions.DiskAccessAction;
    4040import org.openstreetmap.josm.data.Preferences;
     41import org.openstreetmap.josm.data.PreferencesUtils;
    4142import org.openstreetmap.josm.data.preferences.Setting;
    4243import org.openstreetmap.josm.data.preferences.StringSetting;
     
    264265        for (File f : files) {
    265266            CustomConfigurator.readXML(f, tmpPrefs);
    266             log.append(CustomConfigurator.getLog());
     267            log.append(PreferencesUtils.getLog());
    267268        }
    268269        log.append("</html>");
Note: See TracChangeset for help on using the changeset viewer.