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
 * FCFSScheduler.java
3
 *
4
 * This file holds the implementation of the First Come First Serve Scheduler
5
 * class.
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
 
413 ira 28
class FCFSScheduler extends Scheduler
412 ira 29
{
413 ira 30
    /*
31
    public void addProcess (Process proc, int add_time)
412 ira 32
    {
413 ira 33
        run_queue.add (proc);
412 ira 34
    }
413 ira 35
    */
412 ira 36
 
413 ira 37
    protected boolean step ()
412 ira 38
    {
413 ira 39
        /* Check if we're completely finished */
40
        if (cur_proc == null && run_queue.isEmpty ())
41
            return false;
412 ira 42
 
413 ira 43
        /* Check if we have a process, if not, load one */
44
        if (cur_proc == null)
45
            startProcess (run_queue.elementAt (0));
412 ira 46
 
413 ira 47
        /* If we're able, run the current process */
48
        if (cur_proc.time_left > 0)
49
            scheduleCurrent ();
50
        else
51
            completeCurrent ();
412 ira 52
 
413 ira 53
        return true;
412 ira 54
    }
55
}
56
 
57
/* vim: set ts=4 sts=4 sw=4 expandtab: */
58