-
Notifications
You must be signed in to change notification settings - Fork 1
/
Grader.java
207 lines (181 loc) · 4.28 KB
/
Grader.java
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.io.ByteArrayOutputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
public class Grader
{
private static int maxTasks = 100;
private static int currentTask = 0;
private static int[] score = new int[maxTasks];
private static int[] scorePossible = new int[maxTasks];
private static String[] hints = new String[maxTasks];
private static PrintStream originalOut = System.out;
private static InputStream originalIn = System.in;
private static ByteArrayOutputStream os = new ByteArrayOutputStream();
private static ByteArrayInputStream is;
private static PrintStream ps = new PrintStream(os);
private final static double EPSILON = 0.00001;
public static boolean equals(double a, double b){
return a == b ? true : Math.abs(a - b) < EPSILON;
}
public static void captureSystemOut()
{
os.reset();
System.setOut(ps);
}
public static void resetSystemOut()
{
System.setOut(originalOut);
}
public static void setInput(String input)
{
is = new ByteArrayInputStream(input.getBytes());
System.setIn( is );
}
public static boolean systemOutContains(String needle)
{
return os.toString().contains(needle);
}
public static boolean classExists(String className)
{
boolean exists = false;
try
{
Class c = Class.forName(className);
exists = true;
}
catch (ClassNotFoundException e)
{
exists = false;
}
return exists;
}
public static boolean hasMethod(Class c, String methodName)
{
boolean canHaz = false;
try
{
Method[] allMethods = c.getDeclaredMethods();
for ( Method m : allMethods )
{
if( m.getName().equals(methodName) )
canHaz = true;
}
}
catch (Exception e)
{
canHaz = false;
}
return canHaz;
}
public static boolean hasMethod(Class c, String methodName, Class returnType)
{
boolean canHaz = false;
try
{
Method[] allMethods = c.getDeclaredMethods();
for ( Method m : allMethods )
{
if( m.getName().equals(methodName) &&
m.getReturnType().equals(returnType) )
{
canHaz = true;
}
}
}
catch (Exception e)
{
canHaz = false;
}
return canHaz;
}
public static boolean hasMethod(Class c, String methodName, Class returnType, Class[] args)
{
boolean canHaz = false;
try
{
Method[] allMethods = c.getDeclaredMethods();
for ( Method m : allMethods )
{
if( m.getName().equals(methodName) &&
m.getReturnType().equals(returnType) )
{
Class[] params = m.getParameterTypes();
if ( args.length == params.length )
{
canHaz = true;
for(int i = 0; i<args.length; i++)
{
if( !args[i].equals(params[i]) )
return false;
}
}
}
}
}
catch (Exception e)
{
canHaz = false;
}
return canHaz;
}
public static void beginTask(String taskName)
{
System.out.print(currentTask+"\t"+taskName+"... ");
captureSystemOut();
}
public static void endTask()
{
System.setOut(originalOut);
System.setIn(originalIn);
printScore(currentTask);
currentTask++;
}
public static void setHint(String h)
{
hints[currentTask] = h;
}
public static void setScorePossible(int max)
{
scorePossible[currentTask] = max;
}
public static void setScore(int x)
{
score[currentTask] = x;
}
public static void incrementScore()
{
increaseScore(1);
}
public static void increaseScore(int n)
{
score[currentTask] += n;
score[currentTask] = Math.min( score[currentTask], scorePossible[currentTask] );
}
public static void printScore(int i)
{
System.out.println( score[i] + "/" + scorePossible[i] );
if ( (score[i] < scorePossible[i]) &&
(hints[currentTask] != null) )
{
System.out.println( "\tHINT: " + hints[currentTask] +"\n");
}
}
public static void printTotalScore()
{
int total = 0;
int totalPossible = 0;
for ( int s : score )
{
total += s;
}
for ( int sp : scorePossible )
{
totalPossible += sp;
}
System.out.println("\nTOTAL = " + total + "/" + totalPossible + "\n");
}
}