aboutsummaryrefslogtreecommitdiff
path: root/compatibility/Context.java
blob: 218fcd7c27c71952a68dbff56d2f9cd9c113be51 (plain) (blame)
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
package cbt;
import java.io.*;
import java.util.*;
import java.util.concurrent.*;

// TODO: try to reduce the number of members
public interface Context{
  // recently added methods that needs default values for old versions to work
  public default long cbtLastModified(){
    throw new IncompatibleCbtVersionException("You need to override this method.");
  };
  public default Map<Object,Object> persistentCache(){
    throw new IncompatibleCbtVersionException("You need to override this method.");
  };
  public default Map<Object,Object> transientCache(){
    throw new IncompatibleCbtVersionException("You need to override this method.");
  };
  public default long start(){
    throw new IncompatibleCbtVersionException("You need to override this method.");
  };
  public default File workingDirectory(){
    return projectDirectory();
  };
  public default boolean loop(){
    return false;
  };

  // methods that exist for longer which every CBT version in use should have by now, no default values needed
  public abstract File cwd(); // REPLACE by something that allows to run cbt on some other directly
  public abstract String[] argsArray(); // replace this by https://github.com/cvogt/cbt/issues/172 ?
  public abstract String[] enabledLoggersArray();
  public abstract String scalaVersionOrNull(); // needed to propagate scalaVersion to dependendee builds
  public abstract File cache();
  public abstract File cbtHome();
  public abstract File cbtRootHome(); // REMOVE
  public abstract File compatibilityTarget(); // maybe replace this with search in the classloader for it?
  public abstract BuildInterface parentBuildOrNull();

  // deprecated methods
  @java.lang.Deprecated
  public abstract Long startCompat();
  @java.lang.Deprecated
  public abstract Boolean cbtHasChangedCompat();
  @java.lang.Deprecated
  public abstract ConcurrentHashMap<String,Object> permanentKeys();
  @java.lang.Deprecated
  public abstract ConcurrentHashMap<Object,ClassLoader> permanentClassLoaders();
  @java.lang.Deprecated
  public abstract File projectDirectory();
}