Skip to content

Commit 712dde8

Browse files
committedFeb 15, 2022
Fix post-init methods not being run
- Since subclass converters were added, config post-init methods were not working as intended due to a mistake - Enable asynchronous file writes to sql databases for BlockDataManager
1 parent 952ed0a commit 712dde8

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed
 

‎res/plugin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: RedLib
22
main: redempt.redlib.RedLib
3-
version: 2022-02-02 02:53
3+
version: 2022-02-15 22:13
44
author: Redempt
55
api-version: 1.13
66
load: STARTUP

‎src/redempt/redlib/RedLib.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static String msg(String msg) {
5050
* @return An instance of RedLib if it is a plugin dependency, or your plugin if RedLib is shaded
5151
*/
5252
public static Plugin getInstance() {
53-
return redLib != null ? redLib : getCallingPlugin();
53+
return redLib != null ? redLib : JavaPlugin.getProvidingPlugin(RedLib.class);
5454
}
5555

5656
private static int getMidVersion() {

‎src/redempt/redlib/blockdata/BlockDataManager.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ private CompletableFuture<Void> save(ChunkPosition pos, boolean force) {
180180
blocks.forEach((k, v) -> {
181181
map.put(k.toString(), v.data);
182182
});
183-
return backend.save(pos, map.toString());
183+
String data = map.toString();
184+
return backend.save(pos, data);
184185
}
185186

186187
private CompletableFuture<Void> unload(ChunkPosition pos) {
@@ -203,6 +204,12 @@ public void remove(DataBlock db) {
203204
Optional.ofNullable(dataBlocks.get(cpos)).ifPresent(m -> m.remove(db.getBlockPosition()));
204205
}
205206

207+
/**
208+
* Moves a DataBlock to a new location asynchronously
209+
* @param db The DataBlock whose data should be moved
210+
* @param location The Block to move the data to
211+
* @return A CompletableFuture for the moving task
212+
*/
206213
public CompletableFuture<DataBlock> moveAsync(DataBlock db, Block location) {
207214
remove(db);
208215
ChunkPosition cpos = new ChunkPosition(location);

‎src/redempt/redlib/blockdata/backend/SQLiteBackend.java

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public SQLiteBackend(Path path) {
3737
e.printStackTrace();
3838
}
3939
helper = new SQLHelper(SQLHelper.openSQLite(path));
40+
helper.execute("PRAGMA synchronous = OFF;");
4041
helper.executeUpdate("CREATE TABLE IF NOT EXISTS data (x INT, z INT, world STRING, data TEXT, PRIMARY KEY (x, z, world));");
4142
helper.setCommitInterval(5 * 20 * 60);
4243
}

‎src/redempt/redlib/config/instantiation/FieldSummary.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public static FieldSummary getFieldSummary(ConversionManager manager, Class<?> c
7474
List<ConfigField> fields = new ArrayList<>();
7575
Map<ConfigField, TypeConverter<?>> converters = new HashMap<>();
7676
Method postInit = null;
77-
7877
while (clazz != null && (staticContext || clazz.isAnnotationPresent(ConfigMappable.class) || Instantiator.isRecord(clazz))) {
7978
for (Field field : clazz.getDeclaredFields()) {
8079
int mod = field.getModifiers();
@@ -110,12 +109,11 @@ public static FieldSummary getFieldSummary(ConversionManager manager, Class<?> c
110109
pos++;
111110
}
112111
}
112+
if (!staticContext && postInit == null) {
113+
postInit = getPostInitMethod(clazz);
114+
}
113115
clazz = clazz.getSuperclass();
114116
}
115-
116-
if (!staticContext) {
117-
postInit = getPostInitMethod(clazz);
118-
}
119117
return new FieldSummary(fields, converters, configPath, configPathConverter, postInit);
120118
} catch (NoSuchMethodException e) {
121119
e.printStackTrace();

0 commit comments

Comments
 (0)
Please sign in to comment.