2024-08-06 23:30:00 +02:00
|
|
|
package mp.code;
|
|
|
|
|
2024-08-07 10:22:01 +02:00
|
|
|
import mp.code.data.Cursor;
|
2024-08-06 23:30:00 +02:00
|
|
|
import mp.code.data.TextChange;
|
2024-09-05 02:45:33 +02:00
|
|
|
import mp.code.exceptions.ControllerException;
|
2024-08-06 23:30:00 +02:00
|
|
|
|
2024-08-07 10:22:01 +02:00
|
|
|
import java.util.Optional;
|
|
|
|
|
2024-08-06 23:30:00 +02:00
|
|
|
public class BufferController {
|
|
|
|
private final long ptr;
|
|
|
|
|
|
|
|
BufferController(long ptr) {
|
|
|
|
this.ptr = ptr;
|
|
|
|
}
|
|
|
|
|
2024-08-14 19:09:48 +02:00
|
|
|
private static native String get_name(long self);
|
2024-08-06 23:30:00 +02:00
|
|
|
public String getName() {
|
|
|
|
return get_name(this.ptr);
|
|
|
|
}
|
|
|
|
|
2024-09-05 02:45:33 +02:00
|
|
|
private static native String get_content(long self) throws ControllerException;
|
|
|
|
public String getContent() throws ControllerException {
|
2024-08-06 23:30:00 +02:00
|
|
|
return get_content(this.ptr);
|
|
|
|
}
|
|
|
|
|
2024-09-05 02:45:33 +02:00
|
|
|
private static native TextChange try_recv(long self) throws ControllerException;
|
|
|
|
public Optional<TextChange> tryRecv() throws ControllerException {
|
2024-08-07 10:22:01 +02:00
|
|
|
return Optional.ofNullable(try_recv(this.ptr));
|
|
|
|
}
|
|
|
|
|
2024-09-05 02:45:33 +02:00
|
|
|
private static native Cursor recv(long self) throws ControllerException;
|
|
|
|
public Cursor recv() throws ControllerException {
|
2024-08-07 10:22:01 +02:00
|
|
|
return recv(this.ptr);
|
2024-08-06 23:30:00 +02:00
|
|
|
}
|
|
|
|
|
2024-09-05 02:45:33 +02:00
|
|
|
private static native void send(long self, TextChange change) throws ControllerException;
|
|
|
|
public void send(TextChange change) throws ControllerException {
|
2024-08-06 23:30:00 +02:00
|
|
|
send(this.ptr, change);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static native void free(long self);
|
|
|
|
@Override
|
2024-08-07 02:43:25 +02:00
|
|
|
protected void finalize() {
|
2024-08-06 23:30:00 +02:00
|
|
|
free(this.ptr);
|
|
|
|
}
|
|
|
|
}
|