Package com.willwinder.universalgcodesender.gcode

Source Code of com.willwinder.universalgcodesender.gcode.GcodeCommandBuffer

/*
* A queue wrapper for GcodeCommand objects. The main purpose of this class is
* to handle indexing of GcodeCommands and to pre-load the next command so that
* whatever is "next" is available to the SerialCommunicator.
*/

/*
    Copywrite 2012 Will Winder

    This file is part of Universal Gcode Sender (UGS).

    UGS 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.

    UGS 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 UGS.  If not, see <http://www.gnu.org/licenses/>.
*/

package com.willwinder.universalgcodesender.gcode;

import com.willwinder.universalgcodesender.types.GcodeCommand;
import java.util.*;

/**
*
* @author wwinder
*/
public class GcodeCommandBuffer {
    private Queue<GcodeCommand> commandQueue;
    private GcodeCommand currentCommand = null;
    private int numCommands = 0;
   
    public GcodeCommandBuffer() {
        this.commandQueue = new LinkedList<GcodeCommand>();
    }
   
    public int size() {
        return this.commandQueue.size();
    }

    public Boolean hasNext() {
        return this.commandQueue.size() > 0;
    }
   
    public GcodeCommand currentCommand() {
        return currentCommand;
    }
   
    public GcodeCommand nextCommand() {
        // Leave the "currentCommand" alone if we've exausted the queue.
        if (this.hasNext()) {
            this.currentCommand = this.commandQueue.remove();
        }
       
        return this.currentCommand();
    }
   
    public GcodeCommand appendCommandString(String commandString) {
        GcodeCommand command = new GcodeCommand(commandString);
        command.setCommandNumber(this.numCommands++);
        this.commandQueue.add(command);
       
        // Preload first command, or next command if the first batch finished.
        if (this.currentCommand == null || this.currentCommand.isSent()) {
            this.nextCommand();
        }
       
        return command;
    }
   
    public void clearBuffer() {
        this.currentCommand = null;
        this.commandQueue.clear();
    }
}
TOP

Related Classes of com.willwinder.universalgcodesender.gcode.GcodeCommandBuffer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.