云计算仿真工具中文注释SimEntity.java

/*
 * Title:        CloudSim Toolkit
 * Description:  CloudSim (Cloud Simulation) Toolkit for Modeling and Simulation of Clouds
 * Licence:      GPL - http://www.gnu.org/copyleft/gpl.html
 *
 * Copyright (c) 2009-2010, The University of Melbourne, Australia
 */

package org.cloudbus.cloudsim.core;

/**
 * 这个类代表一个仿真事件,可以在各个实体之间传递,实现cloneable,和comparable
 * 接口分别需要实现clone()和comparetor()方法,前者用于复制整个对象产生一个
 * 副本,后者用于比较,可用于list中对象按关键字排序。
 * This class represents a simulation event which is passed between
 * the entities in the simulation.
 *
 * @author		Costas Simatos
 *
 * @see			Simulation
 * @see			SimEntity
 */
public class SimEvent implements Cloneable, Comparable<SimEvent> {
	/*
	 * 8个字段:
	 * etype:内部事件类型,定义了4中事件类型ENULL,SEND,HOLD_DONE,CREATE
	 * time:事件应该发生的时间
	 * endWaitingTime:时间从future Queue中移出的时间,即事件发送时间
	 * entSrc:事件发送实体的ID
	 * entDst:事件目的地实体的ID
	 * tag:用户定义事件的类型
	 * data:事件携带的数据
	 * serial:未知
	 */
	private final int etype; // internal event type
	private final double time; // time at which event should occur
	private double endWaitingTime; // time that the event was removed from the
									// queue for service
	private int entSrc; // id of entity who scheduled event
	private int entDst; // id of entity event will be sent to
	private final int tag; // the user defined type of the event
	private final Object data; // any data the event is carrying
	private long serial = -1;

	// Internal event types
	public static final int ENULL = 0;
	public static final int SEND = 1;
	public static final int HOLD_DONE = 2;
	public static final int CREATE = 3;

	/**
	 * Create a blank event.
	 */
	public SimEvent() {
		etype = ENULL;
		this.time = -1L;
		endWaitingTime = -1.0;
		entSrc = -1;
		entDst = -1;
		this.tag = -1;
		data = null;
	}

	// ------------------- PACKAGE LEVEL METHODS --------------------------
	//实体不知道事件发送时间endwaitingtime。
	SimEvent(int evtype, double time, int src, int dest, int tag, Object edata) {
		etype = evtype;
		this.time = time;
		entSrc = src;
		entDst = dest;
		this.tag = tag;
		data = edata;
	}

	SimEvent(int evtype, double time, int src) {
		etype = evtype;
		this.time = time;
		entSrc = src;
		entDst = -1;
		this.tag = -1;
		data = null;
	}

	protected void setSerial(long serial) {
		this.serial = serial;
	}

	// Used to set the time at which this event finished waiting in the event
	// queue. This is used for statistical purposes.用于统计目的
	protected void setEndWaitingTime(double end_waiting_time) {
		this.endWaitingTime = end_waiting_time;
	}

	@Override
	public String toString() {
		return "Event tag = " + tag + " source = "
				+ CloudSim.getEntity(this.entSrc).getName()
				+ " destination = "
				+ CloudSim.getEntity(this.entDst).getName();
	}

	// The internal type
	public int getType() {
		return etype;
	}

	// ------------------- PUBLIC METHODS --------------------------

	/**
	 * @see Comparable#compareTo(Object)
	 * 事件发生时间比较,用于Queue排序,时间早的放到Queue前面
	 */
	@Override
	public int compareTo(SimEvent event) {
		if (event == null) {
			return 1;
		} else if (time < event.time) {
			return -1;
		} else if (time > event.time) {
			return 1;
		} else if (serial < event.serial) {
			return -1;
		} else if (this == event) {
			return 0;
		} else {
			return 1;
		}
	}


	/**
	 * Get the unique id number of the entity which received this event.
	 * @return the id number
	 */
	public int getDestination() {
		return entDst;
	}

	/**
	 * Get the unique id number of the entity which scheduled this event.
	 * @return the id number
	 */
	public int getSource() {
		return entSrc;
	}

	/**
	 * Get the simulation time that this event was scheduled.
	 * @return The simulation time
	 */
	public double eventTime() {
		return time;
	}

	/**
	 * Get the simulation time that this event was removed from the queue for
	 * service.
	 * @return The simulation time
	 */
	public double endWaitingTime() {
		return endWaitingTime;
	}

	/**
	 * Get the user-defined tag of this event
	 * @return The tag
	 */
	public int type() {
		return tag;
	}

	/**
	 * Get the unique id number of the entity which scheduled this event.
	 * @return the id number
	 */
	public int scheduledBy() {
		return entSrc;
	}

	/**
	 * Get the user-defined tag of this event.
	 * @return The tag
	 */
	public int getTag() {
		return tag;
	}

	/**
	 * Get the data passed in this event.
	 * @return A reference to the data
	 */
	public Object getData() {
		return data;
	}

	/**
	 * Create an exact copy of this event.
	 * @return The event's copy
	 */
	@Override
	public Object clone() {
		return new SimEvent(etype, time, entSrc, entDst, tag, data);
	}

	/**
	 * Set the source entity of this event.
	 * @param s The unique id number of the entity
	 */
	public void setSource(int s) {
		entSrc = s;
	}

	/**
	 * Set the destination entity of this event.
	 * @param d The unique id number of the entity
	 */
	public void setDestination(int d) {
		entDst = d;
	}
}

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值