All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.emustudio.emulib.plugins.device.DeviceContext Maven / Gradle / Ivy

There is a newer version: 12.0.0
Show newest version
/*
 * This file is part of emuLib.
 *
 * Copyright (C) 2006-2020  Peter Jakubčo
 *
 * This program 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.
 *
 * This program 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 this program.  If not, see .
 */
package net.emustudio.emulib.plugins.device;

import net.emustudio.emulib.plugins.annotations.PluginContext;
import net.emustudio.emulib.plugins.Context;

import java.io.IOException;

/**
 * Device context of the device plugin. If the device supports more functionality, it can be extended. Device plugins
 * can have multiple device contexts. Plugins which need the specific device contexts should declare a dependency
 * on the device plugin.
 *
 * @param  Type of data which can be transferred from/to this device
 */
@SuppressWarnings("unused")
@PluginContext
public interface DeviceContext extends Context {

    /**
     * Read data from the device.
     * 

* From the CPU point of view, this should be an implementation of * the "IN" operation. The device should return one elementary unit * (e.g. byte) of its input data. I/O operations * are considered as events that occurred onto this device. * * @return elementary data read from device * @throws IOException if something goes wrong */ DataType readData() throws IOException; /** * Writes/sends data to the device. *

* From the CPU point of view, this is what the "OUT" instruction should use. The device should accept one * elementary unit (e.g. a byte) of the output data. I/O operations are considered as events that occurred * within this device. * * @param value data to be written to the device * @throws IOException if something goes wrong */ void writeData(DataType value) throws IOException; /** * Get the type of transferred data. * * @return type of transferred data */ Class getDataType(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy