source: josm/trunk/src/org/openstreetmap/josm/data/Version.java@ 5634

Last change on this file since 5634 was 5362, checked in by stoecker, 12 years ago

reintroduce the feature to give the build a name

  • Property svn:eol-style set to native
File size: 6.5 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.io.BufferedReader;
7import java.io.IOException;
8import java.io.InputStreamReader;
9import java.net.URL;
10import java.util.HashMap;
11import java.util.Map.Entry;
12import java.util.regex.Matcher;
13import java.util.regex.Pattern;
14
15import org.openstreetmap.josm.Main;
16import org.openstreetmap.josm.tools.LanguageInfo;
17
18/**
19 * Provides basic information about the currently used JOSM build.
20 *
21 */
22public class Version {
23 /** constant to indicate that the current build isn't assigned a JOSM version number */
24 static public final int JOSM_UNKNOWN_VERSION = 0;
25
26 /** the unique instance */
27 private static Version instance;
28
29 /**
30 * Load the specified resource as string.
31 *
32 * @param resource the resource url to load
33 * @return the content of the resource file; null, if an error occurred
34 */
35 static public String loadResourceFile(URL resource) {
36 if (resource == null) return null;
37 BufferedReader in;
38 String s = null;
39 try {
40 in = new BufferedReader(new InputStreamReader(resource.openStream(), "UTF-8"));
41 StringBuffer sb = new StringBuffer();
42 for (String line = in.readLine(); line != null; line = in.readLine()) {
43 sb.append(line).append("\n");
44 }
45 s = sb.toString();
46 } catch (IOException e) {
47 System.err.println(tr("Failed to load resource ''{0}'', error is {1}.", resource.toString(), e.toString()));
48 e.printStackTrace();
49 }
50 return s;
51 }
52
53 /**
54 * Replies the unique instance of the version information
55 *
56 * @return the unique instance of the version information
57 */
58
59 static public Version getInstance() {
60 if (instance == null) {
61 instance = new Version();
62 instance.init();
63 }
64 return instance;
65 }
66
67 private int version;
68 private String releaseDescription;
69 private String time;
70 private String buildName;
71 private boolean isLocalBuild;
72
73 protected HashMap<String, String> parseManifestStyleFormattedString(String content) {
74 HashMap<String, String> properties = new HashMap<String, String>();
75 if (content == null) return properties;
76 Pattern p = Pattern.compile("^([^:]+):(.*)$");
77 for (String line: content.split("\n")) {
78 if (line == null || line.trim().equals("")) {
79 continue;
80 }
81 if (line.matches("^\\s*#.*$")) {
82 continue;
83 }
84 Matcher m = p.matcher(line);
85 if (m.matches()) {
86 properties.put(m.group(1), m.group(2));
87 }
88 }
89 return properties;
90 }
91
92 /**
93 * Initializes the version infos from the revision resource file
94 *
95 * @param revisionInfo the revision info loaded from a revision resource file
96 */
97 protected void initFromRevisionInfo(String revisionInfo) {
98 if (revisionInfo == null) {
99 this.releaseDescription = tr("UNKNOWN");
100 this.version = JOSM_UNKNOWN_VERSION;
101 this.time = null;
102 return;
103 }
104
105 HashMap<String, String> properties = parseManifestStyleFormattedString(revisionInfo);
106 String value = properties.get("Revision");
107 if (value != null) {
108 value = value.trim();
109 try {
110 version = Integer.parseInt(value);
111 } catch(NumberFormatException e) {
112 version = 0;
113 System.err.println(tr("Warning: unexpected JOSM version number in revision file, value is ''{0}''", value));
114 }
115 } else {
116 version = JOSM_UNKNOWN_VERSION;
117 }
118
119 // the last changed data
120 //
121 time = properties.get("Last Changed Date");
122 if (time == null) {
123 time = properties.get("Build-Date");
124 }
125
126 // is this a local build ?
127 //
128 isLocalBuild = false;
129 value = properties.get("Is-Local-Build");
130 if (value != null && value.trim().toLowerCase().equals("true")) {
131 isLocalBuild = true;
132 }
133
134 // is this a specific build ?
135 //
136 buildName = null;
137 value = properties.get("Build-Name");
138 if (value != null && !value.trim().isEmpty()) {
139 buildName = value.trim();
140 }
141
142 // the revision info
143 //
144 StringBuffer sb = new StringBuffer();
145 for(Entry<String,String> property: properties.entrySet()) {
146 sb.append(property.getKey()).append(":").append(property.getValue()).append("\n");
147 }
148 releaseDescription = sb.toString();
149 }
150
151 public void init() {
152 URL u = Main.class.getResource("/REVISION");
153 if (u == null) {
154 System.err.println(tr("Warning: the revision file ''/REVISION'' is missing."));
155 version = 0;
156 releaseDescription = "";
157 return;
158 }
159 initFromRevisionInfo(loadResourceFile(u));
160 }
161
162 /**
163 * Replies the version string. Either the SVN revision "1234" (as string) or the
164 * the I18n equivalent of "UNKNOWN".
165 *
166 * @return the JOSM version
167 */
168 public String getVersionString() {
169 return version == 0 ? tr("UNKNOWN") : Integer.toString(version);
170 }
171
172 /**
173 * Replies a text with the release attributes
174 *
175 * @return a text with the release attributes
176 */
177 public String getReleaseAttributes() {
178 return releaseDescription;
179 }
180
181 /**
182 * Replies the build date as string
183 *
184 * @return the build date as string
185 */
186 public String getTime() {
187 return time;
188 }
189
190 /**
191 * Replies the JOSM version. Replies {@link #JOSM_UNKNOWN_VERSION} if the version isn't known.
192 * @return the JOSM version
193 */
194 public int getVersion() {
195 return version;
196 }
197
198 /**
199 * Replies true if this is a local build, i.e. an inofficial development build.
200 *
201 * @return true if this is a local build, i.e. an inofficial development build.
202 */
203 public boolean isLocalBuild() {
204 return isLocalBuild;
205 }
206
207 public String getAgentString() {
208 int v = getVersion();
209 String s = (v == JOSM_UNKNOWN_VERSION) ? "UNKNOWN" : Integer.toString(v);
210 if (buildName != null) {
211 s += " " + buildName;
212 }
213 if (isLocalBuild() && v != JOSM_UNKNOWN_VERSION) {
214 s += " SVN";
215 }
216 return "JOSM/1.5 ("+ s+" "+LanguageInfo.getJOSMLocaleCode()+")";
217 }
218}
Note: See TracBrowser for help on using the repository browser.