當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。