Skip to content

Commit

Permalink
add corresponding TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Dec 12, 2023
1 parent eb7a986 commit d5b7910
Show file tree
Hide file tree
Showing 11 changed files with 56 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@

import java.io.File;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes

/**
* Appose is a library for interprocess cooperation with shared memory. The
* guiding principles are <em>simplicity</em> and <em>efficiency</em>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@
import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.nio.file.Paths;

import org.apache.commons.compress.archivers.ArchiveException;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
public class Builder {


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
import java.nio.channels.Selector;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.text.SimpleDateFormat;
Expand All @@ -53,6 +52,11 @@
import java.util.function.Consumer;
import java.util.stream.Collectors;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
/**
* Conda environment manager, implemented by delegating to micromamba.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package io.bioimage.modelrunner.apposed.appose;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
public class CondaException
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
import java.util.List;
import java.util.Set;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
public interface Environment {

default String base() { return "."; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
import java.nio.file.Paths;
import java.util.List;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
/**
* Utility methods for working with file paths.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorInputStream;
import org.apache.commons.compress.utils.IOUtils;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
/**
* Utility methods unzip bzip2 files
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,12 @@
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Consumer;

import io.bioimage.modelrunner.apposed.appose.TaskEvent;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
/**
* An Appose *service* provides access to a linked Appose *worker* running in a
* different process. Using the service, programs create Appose {@link Task}s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
import com.sun.jna.platform.win32.WinError;
import com.sun.jna.platform.win32.WinNT;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
/**
* <strong>Unfinished</strong> port of Python's
* {@code multiprocess.shared_memory.SharedMemory} class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@

import io.bioimage.modelrunner.apposed.appose.Service.ResponseType;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
public class TaskEvent {

public final Service.Task task;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;

//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
//TODO remove once appose project is released with the needed changes
public final class Types {

private Types() {
Expand Down

0 comments on commit d5b7910

Please sign in to comment.