413 |
ira |
1 |
/*******************************************************************************
|
|
|
2 |
* LogEntry.java
|
|
|
3 |
*
|
|
|
4 |
* Holds the LogEntry class, which is a representation of what happened every
|
|
|
5 |
* step() in a Scheduler (or derived classes).
|
|
|
6 |
*
|
|
|
7 |
* Copyright (c) 2006, Ira W. Snyder (devel@irasnyder.com)
|
|
|
8 |
*
|
|
|
9 |
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
10 |
* of this software and associated documentation files (the "Software"), to deal
|
|
|
11 |
* in the Software without restriction, including without limitation the rights
|
|
|
12 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
13 |
* copies of the Software, and to permit persons to whom the Software is
|
|
|
14 |
* furnished to do so, subject to the following conditions:
|
|
|
15 |
*
|
|
|
16 |
* The above copyright notice and this permission notice shall be included in
|
|
|
17 |
* all copies or substantial portions of the Software.
|
|
|
18 |
*
|
|
|
19 |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
20 |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
21 |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
22 |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
23 |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
24 |
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
25 |
* IN THE SOFTWARE.
|
|
|
26 |
******************************************************************************/
|
|
|
27 |
|
|
|
28 |
class LogEntry
|
|
|
29 |
{
|
|
|
30 |
public static enum MsgType { START, EXPIRE, COMPLETE };
|
|
|
31 |
|
|
|
32 |
public final int time;
|
|
|
33 |
public final Process proc;
|
|
|
34 |
public final MsgType msg;
|
|
|
35 |
|
|
|
36 |
public LogEntry (Process proc, int time, MsgType msg)
|
|
|
37 |
{
|
|
|
38 |
this.time = time;
|
|
|
39 |
this.proc = proc;
|
|
|
40 |
this.msg = msg;
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
public String toString ()
|
|
|
44 |
{
|
|
|
45 |
String action = new String ("invalid");
|
|
|
46 |
|
|
|
47 |
switch (msg)
|
|
|
48 |
{
|
|
|
49 |
case START:
|
|
|
50 |
action = "started";
|
|
|
51 |
break;
|
|
|
52 |
case EXPIRE:
|
|
|
53 |
action = "expired";
|
|
|
54 |
break;
|
|
|
55 |
case COMPLETE:
|
|
|
56 |
action = "finished";
|
|
|
57 |
break;
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
return "@" + time + " " + proc.name + " " + action;
|
|
|
61 |
}
|
|
|
62 |
}
|
|
|
63 |
|
|
|
64 |
/* vim: set ts=4 sts=4 sw=4 expandtab: */
|
|
|
65 |
|