-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEzlib.java
More file actions
735 lines (662 loc) · 24.4 KB
/
Ezlib.java
File metadata and controls
735 lines (662 loc) · 24.4 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
package com.saicone.ezlib;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.URLConnection;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.HashMap;
import java.util.Map;
import java.util.StringJoiner;
import java.util.function.UnaryOperator;
/**
* <p>Ezlib class to load, download & append libraries into class path.<br>
* Uses a gradle-like dependency format on load methods.</p>
*
* @author Rubenicos
*/
public class Ezlib {
private static final String DEFAULT_FOLDER = "libs";
/**
* Original ezlib package group that cannot be affected with relocations.
*/
public static final String GROUP = new String(new char[] {'c', 'o', 'm', '.', 's', 'a', 'i', 'c', 'o', 'n', 'e', '.', 'e', 'z', 'l', 'i', 'b'});
/**
* Current ezlib version to download ezlib loader.
*/
public static String VERSION = "project.version";
/**
* Change current ezlib version to another one, use "-SNAPSHOT" for latest commit.
*
* @param version Version string.
*/
public static void setVersion(String version) {
if (version != null) {
VERSION = version;
}
}
// Object parameters
private final File folder;
// Explicit initialization params
private PublicClassLoader publicClassLoader;
private Loader loader;
// Object options
private ClassLoader parentClassLoader = Ezlib.class.getClassLoader();
private String defaultRepository = "https://repo.maven.apache.org/maven2/";
private boolean pathSave = true;
private UnaryOperator<Path> pathMapper = null;
/**
* Constructs an Ezlib using default libs folder at root path.
*/
public Ezlib() {
this(new File("libs"));
}
/**
* Constructs an Ezlib with specified libs folder.
*
* @param folder Folder to save the downloaded files.
*/
public Ezlib(File folder) {
this.folder = folder == null ? new File(DEFAULT_FOLDER) : folder;
}
/**
* Get current libs folder instance.
*
* @return A folder who save the downloaded files.
*/
public File getFolder() {
return folder;
}
/**
* Get current class loader.<br>
* Take in count this value must be initialized using {@link #init()}
*
* @return A public class loader who save added URLs.
*/
public PublicClassLoader getPublicClassLoader() {
return publicClassLoader;
}
/**
* Get current loader instance.<br>
* Take in count this value must be initialized using {@link #init()}
*
* @return An object representing a URLs loader and class relocator.
*/
public Loader getLoader() {
return loader;
}
/**
* Get current parent class loader.
*
* @return A class loader to append files.
*/
public ClassLoader getParentClassLoader() {
return parentClassLoader;
}
/**
* Get default repository to use when is not defined in load methods.
*
* @return A string that represent a URL.
*/
public String getDefaultRepository() {
return defaultRepository;
}
/**
* Get the path mapper that is used with loaded dependencies.
*
* @return a unary operator that convert paths.
*/
public UnaryOperator<Path> getPathMapper() {
return pathMapper;
}
/**
* Gets if the current ezlib is saving dependencies into sub folders.
*
* @return true if it is saving into sub folders.
*/
public boolean isPathSave() {
return pathSave;
}
/**
* Get if the current ezlib is already initialized once.
*
* @return try if it was initialized.
*/
public boolean isInitialized() {
return publicClassLoader != null && loader != null;
}
/**
* Set parent class loader who is used to append files.
*
* @param parentClassLoader A class loader to append files.
*/
public void setParentClassLoader(ClassLoader parentClassLoader) {
this.parentClassLoader = parentClassLoader;
}
/**
* Set default repository to use when is not defined in load methods.
*
* @param defaultRepository A string that represent a URL.
* @return Current Ezlib instance.
*/
public Ezlib setDefaultRepository(String defaultRepository) {
this.defaultRepository = defaultRepository;
return this;
}
/**
* Set the path mapper that is used with loaded dependencies.
*
* @param pathMapper a unary operator that convert paths.
* @return Current Ezlib instance.
*/
public Ezlib setPathMapper(UnaryOperator<Path> pathMapper) {
this.pathMapper = pathMapper;
return this;
}
/**
* Change the current method to save downloaded dependencies.
*
* @param pathSave true to save dependencies into sub folders.
*/
public void setPathSave(boolean pathSave) {
this.pathSave = pathSave;
}
/**
* Initialize ezlib.
*
* @return the current ezlib instance.
*/
public Ezlib init() {
return init(null, null);
}
/**
* Initialize ezlib with defined PublicClassLoader.
*
* @param publicClassLoader class loader to use.
* @return the current ezlib instance.
*/
public Ezlib init(PublicClassLoader publicClassLoader) {
return init(publicClassLoader, null);
}
/**
* Initialize ezlib with defined Loader.
*
* @param loader loader to use.
* @return the current ezlib instance.
*/
public Ezlib init(Loader loader) {
return init(null, loader);
}
/**
* Initialize with defined PublicClassLoader and Loader.
*
* @param publicClassLoader class loader to use.
* @param loader loader to use.
* @return the current ezlib instance.
*/
public Ezlib init(PublicClassLoader publicClassLoader, Loader loader) {
this.publicClassLoader = publicClassLoader == null ? createClassLoader() : publicClassLoader;
this.loader = loader == null ? createLoader() : loader;
return this;
}
/**
* Create a public class loader, by default is created with ezlib loader dependency.
*
* @return A public class loader who save added URLs.
*/
public PublicClassLoader createClassLoader() {
File file;
try {
file = download(GROUP + ":internal:" + VERSION, "https://jitpack.io/");
} catch (IOException e) {
throw new RuntimeException("Can't download ezlib internal classes from dependency", e);
}
try {
return new PublicClassLoader(file.toURI().toURL());
} catch (Throwable t) {
throw new RuntimeException("Can't create public class loader for ezlib", t);
}
}
/**
* Create a loader to use it for {@link Loader#relocate(File, File, Map)} and {@link Loader#append(URL, ClassLoader)} methods.
*
* @return A loader object to append and relocate files.
*/
public Loader createLoader() {
try {
return new Loader();
} catch (ClassNotFoundException e) {
throw new RuntimeException("Cannot find the required classes from PublicClassLoader", e);
}
}
/**
* Close current public class loader.
*/
public void close() {
if (publicClassLoader != null) {
try {
publicClassLoader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
/**
* Create loadable dependency with provided file.
*
* @param file File to load has dependency.
* @return the dependency itself.
*/
public LoadableDependency dependency(File file) {
return new LoadableDependency(file);
}
/**
* Create loadable dependency with provided gradle-like path.
*
* @param path Gradle like path to load dependency.
* @return the dependency itself.
*/
public LoadableDependency dependency(String path) {
return new LoadableDependency(path);
}
/**
* Create loadable dependency with provided gradle-like path and repository url.
*
* @param path Gradle like path to load dependency.
* @param repository Repository url to download from.
* @return the dependency itself.
*/
public LoadableDependency dependency(String path, String repository) {
return new LoadableDependency(path).repository(repository);
}
private void load(LoadableDependency dependency) throws IllegalArgumentException {
File file = dependency.file;
if (dependency.file == null) {
try {
file = download(dependency.path, dependency.repository, dependency.urlFormat);
} catch (IOException e) {
throw new RuntimeException("Can't download '" + dependency + "' dependency", e);
}
}
if (dependency.relocations != null && !dependency.relocations.isEmpty()) {
Path path;
try {
path = Files.createTempFile(file.getName() + '.' + Math.abs(dependency.relocations.hashCode()), ".jar");
} catch (IOException e) {
throw new RuntimeException("Cannot create temporary file for relocated dependency", e);
}
path.toFile().deleteOnExit();
try {
loader.relocate(file, path.toFile(), dependency.relocations);
} catch (Throwable t) {
throw new RuntimeException("Cannot relocate dependency");
}
if (pathMapper != null) {
final Path result = pathMapper.apply(path);
if (!path.equals(result)) {
try {
Files.delete(path);
} catch (IOException ignored) { }
}
path = result;
}
file = path.toFile();
} else if (pathMapper != null) {
Path path;
try {
path = Files.createTempFile(file.getName() + '.' + Math.abs(file.hashCode()), ".jar");
} catch (IOException e) {
throw new RuntimeException("Cannot create temporary file for mapped dependency", e);
}
path.toFile().deleteOnExit();
final Path result = pathMapper.apply(path);
if (!path.equals(result)) {
try {
Files.delete(path);
} catch (IOException ignored) { }
}
path = result;
file = path.toFile();
}
try {
loader.append(file.toURI().toURL(), dependency.parent);
} catch (MalformedURLException e) {
throw new RuntimeException("Cannot convert dependency file to URL");
} catch (Throwable t) {
throw new RuntimeException("Cannot append dependency into " + (dependency.parent ? "parent" : "child") + " class path", t);
}
}
/**
* Download a dependency using gradle-like format (group:artifact:version) from repository url.
*
* @param dependency Dependency to load.
* @param repository Repository to download the dependency from it.
* @return A file representing the downloaded dependency.
* @throws IOException If any error occurs with the download.
* @throws IllegalArgumentException If the dependency is not formatted correctly.
*/
public File download(String dependency, String repository) throws IOException, IllegalArgumentException {
return download(dependency, repository, null);
}
/**
* Download a dependency using gradle-like format (group:artifact:version) from repository with defined url format.
*
* @param dependency Dependency to load.
* @param repository Repository to download the dependency from it.
* @param urlFormat Url download format.
* @return A file representing the downloaded dependency.
* @throws IOException If any error occurs with the download.
* @throws IllegalArgumentException If the dependency is not formatted correctly.
*/
public File download(String dependency, String repository, String urlFormat) throws IOException, IllegalArgumentException {
String path = parseUrl(dependency, urlFormat != null ? urlFormat : "%group%/%artifact%/%version%/%artifact%-%fileVersion%.jar");
File file = findFile(path);
return file.exists() ? file : download(parseRepository(repository != null ? repository : defaultRepository) + path, file);
}
/**
* Download a dependency from URL and save into an output file.<br>
* If output file does not exist, it will be created.
*
* @param url A string that represent a URL.
* @param output Output file to save the dependency.
* @return The same output file.
* @throws IOException If any error occurs with the download.
*/
public File download(String url, File output) throws IOException {
return download(new URL(url), output);
}
/**
* Download a dependency from URL and save into an output file.<br>
* If output file does not exist, it will be created.
*
* @param url URL to get the dependency.
* @param output Output file to save the dependency.
* @return The same output file.
* @throws IOException If any error occurs with the download.
*/
public File download(URL url, File output) throws IOException {
final URLConnection con = url.openConnection();
con.addRequestProperty("User-Agent", "Mozilla/5.0");
try (InputStream in = con.getInputStream(); OutputStream out = Files.newOutputStream(output.toPath())) {
byte[] buffer = new byte[4096];
int len;
while ((len = in.read(buffer)) > 0) {
out.write(buffer, 0, len);
}
return output;
}
}
/**
* Parse the provided repository to use for download dependencies.
*
* @param repository Repository url.
* @return The repository url correctly formatted.
*/
public String parseRepository(String repository) {
return repository.endsWith("/") ? repository : repository + "/";
}
/**
* Parse the provided dependency using url format.
*
* @param dependency The dependency gradle-like path.
* @param urlFormat The url format after repository url.
* @return The current dependency as url format to use with repository url.
* @throws IllegalArgumentException if the dependency is not formatted correctly.
*/
public String parseUrl(String dependency, String urlFormat) throws IllegalArgumentException {
final String[] split = dependency.split(":");
if (split.length < 3) {
throw new IllegalArgumentException("Malformed dependency");
}
String group = split[0].replace(".", "/");
StringJoiner fileVersion = new StringJoiner("-");
for (int i = 2; i < split.length; i++) {
final String s = split[i];
final int index = s.indexOf('@') + 1;
if (index > 1 && index < s.length()) {
fileVersion.add(s.substring(index));
split[i] = s.substring(0, index - 1);
} else {
fileVersion.add(s);
}
}
return urlFormat
.replace("%group%", group)
.replace("%artifact%", split[1])
.replace("%version%", split[2])
.replace("%fileVersion%", fileVersion.toString());
}
private File findFile(String path) {
File folder = this.folder;
int index = path.lastIndexOf('/');
String name = path.substring(index + 1);
if (pathSave && index > 0) {
for (String s : path.substring(0, index).split("/")) {
folder = new File(folder, s);
}
}
if (!folder.exists()) {
folder.mkdirs();
}
return new File(folder, name);
}
/**
* Simple PublicClassLoader class to add URLs with a public method.
*/
public static class PublicClassLoader extends URLClassLoader {
/**
* Constructs an PublicClassLoader with defined URL to create the instance.
*
* @param url The URL to load classes and resources.
*/
public PublicClassLoader(URL url) {
this(new URL[]{url}, Ezlib.class.getClassLoader());
}
/**
* Constructs an PublicClassLoader with defined URL to create the instance and
* parent class loader.
*
* @param urls The URLs to load classes and resources.
* @param parent Parent class loader.
*/
public PublicClassLoader(URL[] urls, ClassLoader parent) {
super(urls, parent);
}
@Override
public void addURL(URL url) {
super.addURL(url);
}
}
/**
* Loader class to relocate and append files.
*/
public class Loader {
private final Object appender;
private final Object relocator;
private final Method appendMethod;
private final Method relocateMethod;
/**
* Initialize loader with default parameters.
*
* @throws ClassNotFoundException if cannot find the required classes to initialize.
*/
public Loader() throws ClassNotFoundException {
this(
Class.forName(GROUP + ".internal." + VERSION + ".EzlibAppender", true, publicClassLoader),
Class.forName(GROUP + ".internal." + VERSION + ".EzlibRelocator", true, publicClassLoader)
);
}
/**
* Initialize loader with defined appender and relocator classes.
*
* @param appenderClass Appender class.
* @param relocatorClass Relocator class.
*/
public Loader(Class<?> appenderClass, Class<?> relocatorClass) {
try {
this.appender = appenderClass.getDeclaredConstructor().newInstance();
this.relocator = relocatorClass.getDeclaredConstructor().newInstance();
this.appendMethod = appenderClass.getDeclaredMethod("append", URL.class, ClassLoader.class);
this.relocateMethod = relocatorClass.getDeclaredMethod("relocate", File.class, File.class, Map.class);
} catch (Exception e) {
throw new RuntimeException("Cannot initialize Loader from Ezlib", e);
}
}
/**
* Initialize loader with defined appender and relocator with its methods.
*
* @param appender Appender to use.
* @param relocator Relocator to use.
* @param appendMethod Append method.
* @param relocateMethod Relocate method
*/
public Loader(Object appender, Object relocator, Method appendMethod, Method relocateMethod) {
this.appender = appender;
this.relocator = relocator;
this.appendMethod = appendMethod;
this.relocateMethod = relocateMethod;
}
/**
* Relocate a jar file including paths and imports and put the changes into an output file.<br>
* If output file does not exist, it will be created.
*
* @param input Input file to relocate.
* @param output Output file to put all the changes.
* @param pattern Path to relocate.
* @param relocated Relocated path.
* @throws Throwable If any error occurs on reflected method invoking.
*/
public void relocate(File input, File output, String pattern, String relocated) throws Throwable {
Map<String, String> map = new HashMap<>();
map.put(pattern, relocated);
relocate(input, output, map);
}
/**
* Relocate a jar file including paths and imports and put the changes into an output file.<br>
* If output file does not exist, it will be created.
*
* @param input Input file to relocate.
* @param output Output file to put all the changes.
* @param relocations A map containing all the paths you want to relocate.
* @throws Throwable If any error occurs on reflected method invoking.
*/
public void relocate(File input, File output, Map<String, String> relocations) throws Throwable {
relocateMethod.invoke(relocator, input, output, relocations);
}
/**
* Append a URL into current public class path instance.
*
* @param url URL to append.
* @throws Throwable If any error occurs on reflected method invoking.
*/
public void append(URL url) throws Throwable {
append(url, false);
}
/**
* Append a URL into class path.
*
* @param url URL to append.
* @param parent True if you want to append into parent class path.
* @throws Throwable If any error occurs on reflected method invoking.
*/
public void append(URL url, boolean parent) throws Throwable {
if (parent) {
append(url, getParentClassLoader());
} else {
getPublicClassLoader().addURL(url);
}
}
/**
* Append a URL into defined class loader.
*
* @param url URL to append.
* @param loader Class loader to append.
* @throws Throwable If any error occurs on reflected method invoking.
*/
public void append(URL url, ClassLoader loader) throws Throwable {
appendMethod.invoke(appender, url, loader);
}
}
/**
* Loadable dependency class to edit dependency after load.
*/
public class LoadableDependency {
private final String path;
private final File file;
private String repository;
private String urlFormat;
private Map<String, String> relocations;
private boolean parent;
/**
* Constructs a loadable dependency using gradle-like path format (group:artifact:version).
*
* @param path Dependency path.
*/
public LoadableDependency(String path) {
this.path = path;
this.file = null;
}
/**
* Constructs a loadable dependency using existing file.
*
* @param file File to load as dependency.
*/
public LoadableDependency(File file) {
this.path = null;
this.file = file;
}
/**
* Set dependency repository url.
*
* @param repository Repository url to download dependency from.
* @return the current dependency object.
*/
public LoadableDependency repository(String repository) {
this.repository = repository;
return this;
}
/**
* Set dependency url format to download.
*
* @param urlFormat Url download format.
* @return the current dependency object.
*/
public LoadableDependency urlFormat(String urlFormat) {
this.urlFormat = urlFormat;
return this;
}
/**
* Set dependency relocations.
*
* @param relocations Relocations to apply when dependency is loaded.
* @return the current dependency object.
*/
public LoadableDependency relocations(Map<String, String> relocations) {
this.relocations = relocations;
return this;
}
/**
* Change the dependency load method.
*
* @param parent true to load dependency into parent class loader.
* @return the current dependency object.
*/
public LoadableDependency parent(boolean parent) {
this.parent = parent;
return this;
}
/**
* Load the current dependency.
*
* @throws IllegalArgumentException if the dependency is not formatted correctly.
*/
public void load() throws IllegalArgumentException {
Ezlib.this.load(this);
}
}
}