]> git.argeo.org Git - lgpl/argeo-commons.git/blob - OsgiBootUtils.java
461b8e5a782eccf8012aa07b5e2fa8984131e9a0
[lgpl/argeo-commons.git] / OsgiBootUtils.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.osgi.boot;
18
19 import java.text.DateFormat;
20 import java.text.SimpleDateFormat;
21 import java.util.ArrayList;
22 import java.util.Date;
23 import java.util.List;
24 import java.util.StringTokenizer;
25
26 import org.osgi.framework.Bundle;
27
28 /** Utilities, mostly related to logging. */
29 public class OsgiBootUtils {
30 /** ISO8601 (as per log4j) and difference to UTC */
31 private static DateFormat dateFormat = new SimpleDateFormat(
32 "yyyy-MM-dd HH:mm:ss,SSS Z");
33
34 public static void info(Object obj) {
35 System.out.println("# OSGiBOOT # " + dateFormat.format(new Date())
36 + " # " + obj);
37 }
38
39 public static void debug(Object obj) {
40 System.out.println("# OSGiBOOT DBG # " + dateFormat.format(new Date())
41 + " # " + obj);
42 }
43
44 public static void warn(Object obj) {
45 System.out.println("# OSGiBOOT WARN # " + dateFormat.format(new Date())
46 + " # " + obj);
47 }
48
49 /**
50 * Gets a property value
51 *
52 * @return null when defaultValue is ""
53 */
54 public static String getProperty(String name, String defaultValue) {
55 final String value;
56 if (defaultValue != null)
57 value = System.getProperty(name, defaultValue);
58 else
59 value = System.getProperty(name);
60
61 if (value == null || value.equals(""))
62 return null;
63 else
64 return value;
65 }
66
67 public static String getProperty(String name) {
68 return getProperty(name, null);
69 }
70
71 public static String stateAsString(int state) {
72 switch (state) {
73 case Bundle.UNINSTALLED:
74 return "UNINSTALLED";
75 case Bundle.INSTALLED:
76 return "INSTALLED";
77 case Bundle.RESOLVED:
78 return "RESOLVED";
79 case Bundle.STARTING:
80 return "STARTING";
81 case Bundle.ACTIVE:
82 return "ACTIVE";
83 case Bundle.STOPPING:
84 return "STOPPING";
85 default:
86 return Integer.toString(state);
87 }
88 }
89
90 /**
91 * @return ==0: versions are identical, <0: tested version is newer, >0:
92 * currentVersion is newer.
93 */
94 public static int compareVersions(String currentVersion,
95 String testedVersion) {
96 List cToks = new ArrayList();
97 StringTokenizer cSt = new StringTokenizer(currentVersion, ".");
98 while (cSt.hasMoreTokens())
99 cToks.add(cSt.nextToken());
100 List tToks = new ArrayList();
101 StringTokenizer tSt = new StringTokenizer(currentVersion, ".");
102 while (tSt.hasMoreTokens())
103 tToks.add(tSt.nextToken());
104
105 int comp = 0;
106 comp: for (int i = 0; i < cToks.size(); i++) {
107 if (tToks.size() <= i) {
108 // equals until then, tested shorter
109 comp = 1;
110 break comp;
111 }
112
113 String c = (String) cToks.get(i);
114 String t = (String) tToks.get(i);
115
116 try {
117 int cInt = Integer.parseInt(c);
118 int tInt = Integer.parseInt(t);
119 if (cInt == tInt)
120 continue comp;
121 else {
122 comp = (cInt - tInt);
123 break comp;
124 }
125 } catch (NumberFormatException e) {
126 if (c.equals(t))
127 continue comp;
128 else {
129 comp = c.compareTo(t);
130 break comp;
131 }
132 }
133 }
134
135 if (comp == 0 && tToks.size() > cToks.size()) {
136 // equals until then, current shorter
137 comp = -1;
138 }
139
140 return comp;
141 }
142
143 }