412 |
ira |
1 |
/*******************************************************************************
|
415 |
ira |
2 |
* Project1.java
|
412 |
ira |
3 |
*
|
|
|
4 |
* Holds the Project1 class, which has the main implementation of CS431
|
|
|
5 |
* Project #1.
|
|
|
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 |
|
415 |
ira |
28 |
/**
|
|
|
29 |
* The main class that holds the user interface for CS431 Project #1.
|
|
|
30 |
*
|
|
|
31 |
* @class CS431 Fall 2006
|
|
|
32 |
* @author Ira W. Snyder (devel@irasnyder.com)
|
|
|
33 |
*/
|
|
|
34 |
public class Project1
|
412 |
ira |
35 |
{
|
415 |
ira |
36 |
/**
|
|
|
37 |
* The main() function for CS431 Project #1.
|
|
|
38 |
*
|
|
|
39 |
* @param argv the arguments given on the command line
|
|
|
40 |
*/
|
412 |
ira |
41 |
public static void main (String[] argv)
|
|
|
42 |
{
|
|
|
43 |
String s;
|
|
|
44 |
ConfigParser cp;
|
|
|
45 |
|
|
|
46 |
/* Check if we have a file to read */
|
|
|
47 |
if (argv.length > 0)
|
|
|
48 |
{
|
|
|
49 |
System.out.printf ("Using %s as the input file\n", argv[0]);
|
|
|
50 |
cp = new ConfigParser (argv[0]);
|
|
|
51 |
}
|
|
|
52 |
else
|
|
|
53 |
{
|
|
|
54 |
System.out.printf ("Using the keyboard as the input file\n");
|
|
|
55 |
cp = new ConfigParser ();
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
System.out.println ("RRInterval=" + cp.getRRInterval ());
|
|
|
59 |
System.out.println ("Processes =" + cp.getProcesses ());
|
413 |
ira |
60 |
System.out.println ("DONE DIAGNOSTICS!");
|
412 |
ira |
61 |
|
|
|
62 |
/* First Come First Served Scheduler */
|
413 |
ira |
63 |
System.out.println ("\n\nFirst Come First Served");
|
412 |
ira |
64 |
FCFSScheduler fcfs = new FCFSScheduler ();
|
|
|
65 |
|
|
|
66 |
for (Process p : cp.getProcesses ())
|
413 |
ira |
67 |
fcfs.addProcess (p, 0);
|
412 |
ira |
68 |
|
|
|
69 |
fcfs.run ();
|
|
|
70 |
|
|
|
71 |
/* Shortest-Job First Scheduler */
|
413 |
ira |
72 |
System.out.println ("\n\nShortest Job First");
|
|
|
73 |
SJFScheduler sjf = new SJFScheduler ();
|
|
|
74 |
int count = 0;
|
412 |
ira |
75 |
|
413 |
ira |
76 |
for (Process p : cp.getProcesses ())
|
|
|
77 |
sjf.addProcess (p, count++);
|
|
|
78 |
|
|
|
79 |
sjf.run ();
|
|
|
80 |
|
|
|
81 |
/* Round-Robin Scheduler */
|
|
|
82 |
System.out.println ("\n\nRound Robin");
|
|
|
83 |
RRScheduler rr = new RRScheduler (cp.getRRInterval ());
|
|
|
84 |
|
|
|
85 |
for (Process p : cp.getProcesses ())
|
|
|
86 |
rr.addProcess (p, 0);
|
|
|
87 |
|
|
|
88 |
rr.run ();
|
412 |
ira |
89 |
}
|
|
|
90 |
}
|
|
|
91 |
|
|
|
92 |
/* vim: set ts=4 sts=4 sw=4 expandtab: */
|
|
|
93 |
|