Subversion Repositories programming

Rev

Rev 412 | Rev 415 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
412 ira 1
/*******************************************************************************
2
 * File: Project1.java
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
 
28
class Project1
29
{
30
    public static void main (String[] argv)
31
    {
32
        String s;
33
        ConfigParser cp;
34
 
35
        /* Check if we have a file to read */
36
        if (argv.length > 0)
37
        {
38
            System.out.printf ("Using %s as the input file\n", argv[0]);
39
            cp = new ConfigParser (argv[0]);
40
        }
41
        else
42
        {
43
            System.out.printf ("Using the keyboard as the input file\n");
44
            cp = new ConfigParser ();
45
        }
46
 
47
        System.out.println ("RRInterval=" + cp.getRRInterval ());
48
        System.out.println ("Processes =" + cp.getProcesses  ());
413 ira 49
        System.out.println ("DONE DIAGNOSTICS!");
412 ira 50
 
51
        /* First Come First Served Scheduler */
413 ira 52
        System.out.println ("\n\nFirst Come First Served");
412 ira 53
        FCFSScheduler fcfs = new FCFSScheduler ();
54
 
55
        for (Process p : cp.getProcesses ())
413 ira 56
            fcfs.addProcess (p, 0);
412 ira 57
 
58
        fcfs.run ();
59
 
60
        /* Shortest-Job First Scheduler */
413 ira 61
        System.out.println ("\n\nShortest Job First");
62
        SJFScheduler sjf = new SJFScheduler ();
63
        int count = 0;
412 ira 64
 
413 ira 65
        for (Process p : cp.getProcesses ())
66
            sjf.addProcess (p, count++);
67
 
68
        sjf.run ();
69
 
70
        /* Round-Robin Scheduler */
71
        System.out.println ("\n\nRound Robin");
72
        RRScheduler rr = new RRScheduler (cp.getRRInterval ());
73
 
74
        for (Process p : cp.getProcesses ())
75
            rr.addProcess (p, 0);
76
 
77
        rr.run ();
412 ira 78
    }
79
}
80
 
81
/* vim: set ts=4 sts=4 sw=4 expandtab: */
82