package mp.code; import java.util.Optional; import java.util.UUID; import mp.code.data.DetachResult; import mp.code.exceptions.ConnectionException; import mp.code.exceptions.ConnectionRemoteException; import mp.code.exceptions.ControllerException; /** * Represents a CodeMP workspace, which broadly speaking is a collection * of buffers across which edits and cursor movements are tracked. * @apiNote Generally, it is safer to avoid storing this directly. * Instead, users should let the native library manage as * much as possible for them. * They should store the workspace ID and retrieve the object * whenever needed with {@link Client#getWorkspace(String)}. */ public final class Workspace { private final long ptr; Workspace(long ptr) { this.ptr = ptr; } private static native String get_workspace_id(long self); /** * Gets the unique identifier of the current workspace. * @return the identifier */ public String getWorkspaceId() { return get_workspace_id(this.ptr); } private static native CursorController get_cursor(long self); /** * Gets the {@link CursorController} for the current workspace. * @return the {@link CursorController} */ public CursorController getCursor() { return get_cursor(this.ptr); } private static native BufferController get_buffer(long self, String path); /** * Looks for a {@link BufferController} with the given path within the * current workspace and returns it if it exists. * @param path the current path * @return the {@link BufferController} with the given path, if it exists */ public Optional getBuffer(String path) { return Optional.ofNullable(get_buffer(this.ptr, path)); } private static native String[] get_file_tree(long self, String filter, boolean strict); /** * Gets the file tree for this workspace, optionally filtering it. * @param filter applies an optional filter to the outputs * @param strict whether it should be a strict match (equals) or not (startsWith) * @return an array containing file tree as flat paths */ @SuppressWarnings("OptionalUsedAsFieldOrParameterType") public String[] getFileTree(Optional filter, boolean strict) { return get_file_tree(this.ptr, filter.orElse(null), strict); } private static native String[] active_buffers(long self); /** * Returns the currently active buffers (the ones the user is currently * attached to). * @return an array containing the paths of the active buffers */ public String[] activeBuffers() { return active_buffers(this.ptr); } private static native void create_buffer(long self, String path) throws ConnectionRemoteException; /** * Creates a buffer with the given path. * @param path the new buffer's path * @throws ConnectionRemoteException if an error occurs in communicating with the server */ public void createBuffer(String path) throws ConnectionRemoteException { create_buffer(this.ptr, path); } private static native BufferController attach_to_buffer(long self, String path) throws ConnectionException; /** * Attaches to an existing buffer with the given path, if present. * @param path the path of the buffer to attach to * @return the {@link BufferController} associated with that path * @throws ConnectionException if an error occurs in communicating with the server, or if the buffer did not exist */ public BufferController attachToBuffer(String path) throws ConnectionException { return attach_to_buffer(ptr, path); } private static native DetachResult detach_from_buffer(long self, String path); /** * Detaches from a given buffer. * @param path the path of the buffer to detach from * @return a {@link DetachResult} representing the outcome of the operation */ public DetachResult detachFromBuffer(String path) { return detach_from_buffer(this.ptr, path); } private static native void fetch_buffers(long self) throws ConnectionRemoteException; /** * Updates the local list of buffers. * @throws ConnectionRemoteException if an error occurs in communicating with the server */ public void fetchBuffers() throws ConnectionRemoteException { fetch_buffers(this.ptr); } private static native void fetch_users(long self) throws ConnectionRemoteException; /** * Updates the local list of users. * @throws ConnectionRemoteException if an error occurs in communicating with the server */ public void fetchUsers() throws ConnectionRemoteException { fetch_buffers(this.ptr); } private static native UUID[] list_buffer_users(long self, String path) throws ConnectionRemoteException; /** * Lists the user attached to a certain buffer. * The user must be attached to the buffer to perform this operation. * @param path the path of the buffer to search * @return an array of user {@link UUID UUIDs} * @throws ConnectionRemoteException if an error occurs in communicating with the server, or the user wasn't attached */ public UUID[] listBufferUsers(String path) throws ConnectionRemoteException { return list_buffer_users(this.ptr, path); } private static native void delete_buffer(long self, String path) throws ConnectionRemoteException; /** * Deletes the buffer with the given path. * @param path the path of the buffer to delete * @throws ConnectionRemoteException if an error occurs in communicating with the server */ public void deleteBuffer(String path) throws ConnectionRemoteException { delete_buffer(this.ptr, path); } private static native Event event(long self) throws ControllerException; /** * Blocks until a workspace event occurs. * You shouldn't call this, unless it's on a dedicated thread. * @return the {@link Event} that has occurred * @throws ControllerException if the event arrived while the underlying controller was already closed */ public Event event() throws ControllerException { return event(this.ptr); } private static native void free(long self); @Override protected void finalize() { free(this.ptr); } static { NativeUtils.loadLibraryIfNeeded(); } /** * Represents a workspace-wide event. */ public static final class Event { private final Type type; private final String argument; Event(Type type, String argument) { this.type = type; this.argument = argument; } /** * Gets the user who joined, if any did. * @return the user who joined, if any did */ public Optional getUserJoined() { if(this.type == Type.USER_JOIN) { return Optional.of(this.argument); } else return Optional.empty(); } /** * Gets the user who left, if any did. * @return the user who left, if any did */ public Optional getUserLeft() { if(this.type == Type.USER_LEAVE) { return Optional.of(this.argument); } else return Optional.empty(); } /** * Gets the path of buffer that changed, if any did. * @return the path of buffer that changed, if any did */ public Optional getChangedBuffer() { if(this.type == Type.FILE_TREE_UPDATED) { return Optional.of(this.argument); } else return Optional.empty(); } enum Type { USER_JOIN, USER_LEAVE, FILE_TREE_UPDATED } } }