com.fujitsu.vdmj.scheduler.ControlQueue Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
*
* Copyright (c) 2016 Fujitsu Services Ltd.
*
* Author: Nick Battle
*
* This file is part of VDMJ.
*
* VDMJ is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VDMJ is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with VDMJ. If not, see .
* SPDX-License-Identifier: GPL-3.0-or-later
*
******************************************************************************/
package com.fujitsu.vdmj.scheduler;
import java.io.Serializable;
import java.util.LinkedList;
import java.util.List;
import com.fujitsu.vdmj.lex.LexLocation;
import com.fujitsu.vdmj.runtime.Context;
public class ControlQueue implements Serializable
{
private static final long serialVersionUID = 1L;
private SchedulableThread joined = null;
private boolean stimmed = false;
private List waiters = new LinkedList();
public void reset()
{
joined = null;
stimmed = false;
waiters.clear();
}
public void join(Context ctxt, LexLocation location)
{
SchedulableThread th = (SchedulableThread)Thread.currentThread();
if (joined != null && joined != th)
{
synchronized (waiters)
{
waiters.add(th);
}
th.waiting(ctxt, location);
}
joined = th;
}
public void block(Context ctxt, LexLocation location)
{
if (stimmed)
{
stimmed = false;
}
else
{
joined.waiting(ctxt, location);
}
}
public void stim()
{
stimmed = true;
if (joined != null)
{
joined.setState(RunState.RUNNABLE);
}
}
public void leave()
{
joined = null;
SchedulableThread head = null;
synchronized (waiters)
{
if (!waiters.isEmpty())
{
head = waiters.remove(0);
}
}
if (head != null)
{
head.setState(RunState.RUNNABLE);
}
}
}