当前位置: 首页>>代码示例>>Python>>正文


Python PriorityQueue.addPcb方法代码示例

本文整理汇总了Python中priorityQueue.PriorityQueue.addPcb方法的典型用法代码示例。如果您正苦于以下问题:Python PriorityQueue.addPcb方法的具体用法?Python PriorityQueue.addPcb怎么用?Python PriorityQueue.addPcb使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在priorityQueue.PriorityQueue的用法示例。


在下文中一共展示了PriorityQueue.addPcb方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Scheduler

# 需要导入模块: from priorityQueue import PriorityQueue [as 别名]
# 或者: from priorityQueue.PriorityQueue import addPcb [as 别名]
class Scheduler():
    def __init__(self, aCpu):
        self.currentQueue = FifoQueue()
        self.cpu = aCpu

    def getNextPcb(self):
        return self.currentQueue.getMax()

    def addPcb(self, pcb):
        if(self.currentQueue.isEmpty() and not(self.cpu.havePcb())):
            pcb.toRunning()
            self.cpu.assignPcb(pcb)
        else:
            self.currentQueue.addPcb(pcb)

    def setFIFOMode(self):
        self.currentQueue = FifoQueue()

    def setPriorityMode(self):
        self.currentQueue = PriorityQueue(3,3)

    def removePid(self, aPid):
        self.currentQueue.removePid(aPid)
开发者ID:fernandodm,项目名称:sistemasoperativos,代码行数:25,代码来源:scheduler.py

示例2: PriorityQueueTest

# 需要导入模块: from priorityQueue import PriorityQueue [as 别名]
# 或者: from priorityQueue.PriorityQueue import addPcb [as 别名]
class PriorityQueueTest(unittest.TestCase):

    def setUp(self):
        self.priority = PriorityQueue(3,5)
        self.aPcb1 = Mock()
        when(self.aPcb1).getPriority().thenReturn(2)
        self.aPcb2 = Mock()
        when(self.aPcb2).getPriority().thenReturn(2)

    def test_addPcb_initialAdd(self):
        self.priority.addPcb(self.aPcb1)
        chance = self.priority.table.get(6)
        assert (chance.elementos[0] == self.aPcb1)

    def test_addPcb_withPcb(self):
        self.priority.addPcb(self.aPcb1)
        self.priority.addPcb(self.aPcb2)
        chance = self.priority.table.get(6)
        assert (chance.elementos[0] == self.aPcb2)
        assert (chance.elementos[1] == self.aPcb1)
        
    def test_getMax(self):
        self.priority.addPcb(self.aPcb1)
        self.priority.addPcb(self.aPcb2)
        aPcb3 = Mock()
        when(aPcb3).getPriority().thenReturn(4)
        self.priority.addPcb(aPcb3)
        assert (self.priority.getMax() == aPcb3)
        assert (self.priority.getMax() == self.aPcb1)

    def test_cleanChances(self):
        chan1 = Chance()
        chan2 = Chance()
        chan3 = Chance()
        aPcb = Mock()
        chan2.elementos = [aPcb]
        self.priority.table = {1:chan1,2:chan2,3:chan3}
        assert(self.priority.table[1] == chan1)
        assert(self.priority.table[2] == chan2)
        assert(self.priority.table[3] == chan3)
        assert(len(self.priority.table) == 3)
        self.priority.cleanChances()
        assert(len(self.priority.table) == 1)
        assert(self.priority.table[2] == chan2)
开发者ID:fernandodm,项目名称:sistemasoperativos,代码行数:46,代码来源:tpriorityQueue.py


注:本文中的priorityQueue.PriorityQueue.addPcb方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。