1 package org.apache.maven.surefire.booter;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import static org.apache.maven.surefire.util.internal.ObjectUtils.requireNonNull;
23
24
25
26
27
28
29
30
31
32
33
34
35 final class ProcessInfo
36 {
37 static final ProcessInfo INVALID_PROCESS_INFO = new ProcessInfo( null, null );
38 static final ProcessInfo ERR_PROCESS_INFO = new ProcessInfo( null, null );
39
40
41
42
43
44
45 static ProcessInfo unixProcessInfo( long pid, long etime )
46 {
47 return new ProcessInfo( pid, etime );
48 }
49
50 static ProcessInfo windowsProcessInfo( long pid, String startTimestamp )
51 {
52 return new ProcessInfo( pid, requireNonNull( startTimestamp, "startTimestamp is NULL" ) );
53 }
54
55 private final Long pid;
56 private final Comparable time;
57
58 private ProcessInfo( Long pid, Comparable time )
59 {
60 this.pid = pid;
61 this.time = time;
62 }
63
64 boolean isValid()
65 {
66 return this != INVALID_PROCESS_INFO;
67 }
68
69 boolean isError()
70 {
71 return this == ERR_PROCESS_INFO;
72 }
73
74 long getPID()
75 {
76 checkValid();
77 return pid;
78 }
79
80 Comparable getTime()
81 {
82 checkValid();
83 return time;
84 }
85
86 @SuppressWarnings( "unchecked" )
87 boolean isTimeEqualTo( ProcessInfo that )
88 {
89 checkValid();
90 that.checkValid();
91 return this.time.compareTo( that.time ) == 0;
92 }
93
94 @SuppressWarnings( "unchecked" )
95 boolean isTimeAfter( ProcessInfo that )
96 {
97 checkValid();
98 that.checkValid();
99 return this.time.compareTo( that.time ) > 0;
100 }
101
102 private void checkValid()
103 {
104 if ( !isValid() || isError() )
105 {
106 throw new IllegalStateException( "invalid process info" );
107 }
108 }
109 }