1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
/**
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2021 Gothel Software e.K.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.direct_bt;
import java.io.IOException;
import java.io.PrintStream;
import java.net.URISyntaxException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import java.util.jar.Attributes;
import java.util.jar.Manifest;
import java.util.regex.Pattern;
import org.jau.base.JaulibVersion;
import org.jau.io.PrintUtil;
import org.jau.pkg.TempJarSHASum;
import org.jau.sec.SHASum;
import org.jau.util.JauVersion;
import org.jau.util.VersionUtil;
/**
* This {@code jaulib} derived version info class is only
* usable when having {@code jaulib} available, naturally.
*/
public class DirectBTVersion extends JauVersion {
/**
* Print full Direct-BT version information.
*
* {@link BTFactory#initDirectBTLibrary()} is being called.
*
* @param out the output stream used
*/
public static final void printVersionInfo(final PrintStream out) {
BTFactory.initDirectBTLibrary();
PrintUtil.println(out, "BTFactory: Jaulib: Available "+BTFactory.JAULIB_AVAILABLE+", JarCache in use "+BTFactory.JAULIB_JARCACHE_USED);
if( BTFactory.JAULIB_AVAILABLE ) {
out.println(VersionUtil.getPlatformInfo());
PrintUtil.println(out, "Version Info:");
final DirectBTVersion v = DirectBTVersion.getInstance();
out.println(v.toString());
PrintUtil.println(out, "");
PrintUtil.println(out, "Full Manifest:");
out.println(v.getFullManifestInfo(null).toString());
} else {
PrintUtil.println(out, "Full Manifest:");
final Manifest manifest = BTFactory.getManifest(BTFactory.class.getClassLoader(), new String[] { "org.direct_bt" } );
final Attributes attr = manifest.getMainAttributes();
final Set<Object> keys = attr.keySet();
final StringBuilder sb = new StringBuilder();
for(final Iterator<Object> iter=keys.iterator(); iter.hasNext(); ) {
final Attributes.Name key = (Attributes.Name) iter.next();
final String val = attr.getValue(key);
sb.append(" ");
sb.append(key);
sb.append(" = ");
sb.append(val);
sb.append(System.lineSeparator());
}
out.println(sb.toString());
}
PrintUtil.println(out, "Direct-BT Native Version "+BTFactory.getNativeVersion()+" (API "+BTFactory.getNativeAPIVersion()+")");
PrintUtil.println(out, "Direct-BT Java Version "+BTFactory.getImplVersion()+" (API "+BTFactory.getAPIVersion()+")");
}
protected DirectBTVersion(final String packageName, final Manifest mf) {
super(packageName, mf);
}
/**
* Returns a transient new instance.
*/
public static DirectBTVersion getInstance() {
final String packageNameCompileTime = "org.direct_bt";
final String packageNameRuntime = "org.direct_bt";
Manifest mf = VersionUtil.getManifest(DirectBTVersion.class.getClassLoader(), packageNameRuntime);
if(null != mf) {
return new DirectBTVersion(packageNameRuntime, mf);
} else {
mf = VersionUtil.getManifest(DirectBTVersion.class.getClassLoader(), packageNameCompileTime);
return new DirectBTVersion(packageNameCompileTime, mf);
}
}
/**
* Direct-BT definition of {@link TempJarSHASum}'s specialization of {@link SHASum}.
* <p>
* Implementation uses {@link org.jau.pkg.cache.TempJarCache}.
* </p>
* <p>
* Constructor defines the includes and excludes as used for Direct-BT {@link SHASum} computation.
* </p>
*/
static public class JarSHASum extends TempJarSHASum {
/**
* See {@link DirectBTJarSHASum}
* @throws SecurityException
* @throws IllegalArgumentException
* @throws NoSuchAlgorithmException
* @throws IOException
* @throws URISyntaxException
*/
public JarSHASum()
throws SecurityException, IllegalArgumentException, NoSuchAlgorithmException, IOException, URISyntaxException
{
super(MessageDigest.getInstance("SHA-256"), JaulibVersion.class, new ArrayList<Pattern>(), new ArrayList<Pattern>());
final List<Pattern> includes = getIncludes();
final String origin = getOrigin();
includes.add(Pattern.compile(origin+"/org/direct_bt/.*"));
includes.add(Pattern.compile(origin+"/jau/direct_bt/.*"));
}
}
public static void main(final String args[]) {
BTFactory.main(args);
}
}
|