|
| 1 | +/* |
| 2 | + * #%L |
| 3 | + * SciJava Common shared library for SciJava software. |
| 4 | + * %% |
| 5 | + * Copyright (C) 2009 - 2017 Board of Regents of the University of |
| 6 | + * Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck |
| 7 | + * Institute of Molecular Cell Biology and Genetics. |
| 8 | + * %% |
| 9 | + * Redistribution and use in source and binary forms, with or without |
| 10 | + * modification, are permitted provided that the following conditions are met: |
| 11 | + * |
| 12 | + * 1. Redistributions of source code must retain the above copyright notice, |
| 13 | + * this list of conditions and the following disclaimer. |
| 14 | + * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 15 | + * this list of conditions and the following disclaimer in the documentation |
| 16 | + * and/or other materials provided with the distribution. |
| 17 | + * |
| 18 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE |
| 22 | + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | + * POSSIBILITY OF SUCH DAMAGE. |
| 29 | + * #L% |
| 30 | + */ |
| 31 | + |
| 32 | +package org.scijava.log; |
| 33 | + |
| 34 | +import java.util.ArrayList; |
| 35 | +import java.util.Collections; |
| 36 | +import java.util.List; |
| 37 | +import java.util.StringJoiner; |
| 38 | +import java.util.concurrent.ConcurrentMap; |
| 39 | +import java.util.concurrent.ConcurrentSkipListMap; |
| 40 | + |
| 41 | +/** |
| 42 | + * Identifies where a {@link LogMessage} came from. |
| 43 | + * |
| 44 | + * @author Matthias Arzt |
| 45 | + */ |
| 46 | +public class LogSource { |
| 47 | + |
| 48 | + private final LogSource parent; |
| 49 | + |
| 50 | + private final List<String> path; |
| 51 | + |
| 52 | + private final ConcurrentMap<String, LogSource> children = |
| 53 | + new ConcurrentSkipListMap<>(); |
| 54 | + |
| 55 | + private String formatted = null; |
| 56 | + |
| 57 | + private LogSource(LogSource parent, String name) { |
| 58 | + this.parent = parent; |
| 59 | + List<String> parentPath = parent.path(); |
| 60 | + List<String> list = new ArrayList<>(parentPath.size() + 1); |
| 61 | + list.addAll(parentPath); |
| 62 | + list.add(name); |
| 63 | + this.path = Collections.unmodifiableList(list); |
| 64 | + } |
| 65 | + |
| 66 | + private LogSource() { |
| 67 | + this.parent = null; |
| 68 | + this.path = Collections.emptyList(); |
| 69 | + } |
| 70 | + |
| 71 | + /** Returns the root log source. This LogSource represents the empty list. */ |
| 72 | + public static LogSource newRoot() { |
| 73 | + return new LogSource(); |
| 74 | + } |
| 75 | + |
| 76 | + /** Returns the list of strings which is represented by this LogSource. */ |
| 77 | + public List<String> path() { |
| 78 | + return path; |
| 79 | + } |
| 80 | + |
| 81 | + /** Returns the last entry in the list of strings. */ |
| 82 | + public String name() { |
| 83 | + if (path.isEmpty()) return ""; |
| 84 | + return path.get(path.size() - 1); |
| 85 | + } |
| 86 | + |
| 87 | + /** |
| 88 | + * Returns the LogSource which represents the path of this LogSource extended |
| 89 | + * by name. |
| 90 | + */ |
| 91 | + public LogSource subSource(String name) { |
| 92 | + LogSource child = children.get(name); |
| 93 | + if (child != null) return child; |
| 94 | + child = new LogSource(this, name); |
| 95 | + children.putIfAbsent(name, child); |
| 96 | + return children.get(name); |
| 97 | + } |
| 98 | + |
| 99 | + @Override |
| 100 | + public String toString() { |
| 101 | + if (formatted != null) return formatted; |
| 102 | + StringJoiner joiner = new StringJoiner(":"); |
| 103 | + path.forEach(s -> joiner.add(s)); |
| 104 | + formatted = joiner.toString(); |
| 105 | + return formatted; |
| 106 | + } |
| 107 | + |
| 108 | + public boolean isRoot() { |
| 109 | + return parent == null; |
| 110 | + } |
| 111 | + |
| 112 | + /** Gets the parent of this source, or null if the source is a root. */ |
| 113 | + public LogSource parent() { |
| 114 | + return parent; |
| 115 | + } |
| 116 | +} |
0 commit comments