|
From: <mar...@us...> - 2007-10-04 06:05:36
|
Revision: 67
http://gridsim.svn.sourceforge.net/gridsim/?rev=67&view=rev
Author: marcos_dias
Date: 2007-10-03 23:05:40 -0700 (Wed, 03 Oct 2007)
Log Message:
-----------
This version contains many changes and bug fixes:
+ Some classes have been moved to gridsim.turbo package.
+ The ParallelSpaceShared policy has been changed substantially and some bugs have been fixed. For example, the policy was not compressing the schedule properly when cancelling a gridlet. This could also lead to finding the wrong anchor for a job when the completion of a job matched the completion of another job and there was a big job starting at this completion time.
+ Some advance reservation features have been provided, but they are still being tested.
+ Improvements in the graphical user interface have been made.
+ Some changes in SimJava classes have been made to remove the animation and log capabilities that are not used by GridSim.
Removed Paths:
-------------
branches/gridsim4.0-branch3/source/gridsim/filter/FilterCreateAR.java
Deleted: branches/gridsim4.0-branch3/source/gridsim/filter/FilterCreateAR.java
===================================================================
--- branches/gridsim4.0-branch3/source/gridsim/filter/FilterCreateAR.java 2007-10-04 06:05:13 UTC (rev 66)
+++ branches/gridsim4.0-branch3/source/gridsim/filter/FilterCreateAR.java 2007-10-04 06:05:40 UTC (rev 67)
@@ -1,152 +0,0 @@
-/*
- * Title: GridSim Toolkit
- * Description: GridSim (Grid Simulation) Toolkit for Modeling and Simulation
- * of Parallel and Distributed Systems such as Clusters and Grids
- * Licence: GPL - http://www.gnu.org/copyleft/gpl.html
- *
- * $Id: FilterCreateAR.java,v 1.1 2007/04/05 04:22:02 marcosd Exp $
- */
-
-package gridsim.filter;
-
-import gridsim.Gridlet;
-import gridsim.GridSimTags;
-import eduni.simjava.Sim_predicate;
-import eduni.simjava.Sim_event;
-
-
-/**
- * Look for a specific incoming event that matches a given event tag name and a
- * transaction id. Incoming events with a matching tag name <b>must</b>
- * contain a data object of type
- * <tt>long[]</tt>, where <tt>long[0]</tt> stores the transaction id.<br>
- * <tt>NOTE:</tt> This class can only be used for getting a reply or feedback
- * from a {@link gridsim.ARGridResource} entity regarding to a creation of
- * new reservation.
- * <br><br>
- *
- * This class is used by {@link eduni.simjava.Sim_system}
- * to select or filter an event already present in the entity's deferred queue
- * (incoming buffer), or used to selectively wait for a future event.
- * <br> <br>
- *
- * <b>An example on how to use this class:</b><br>
- * Imagine we have a scenario where <tt>RESOURCE_A</tt> sends one or more events
- * to <tt>Entity_B</tt> with different tag names and data objects.<br>
- * <tt>Entity_B</tt> wants to get an event that contains a create reservation
- * result with a transaction id of <tt>10</tt> in this example. <br>
- * Therefore, inside the <tt>Entity_B</tt> code:<br> <br>
- *
- * <code>
- *
- * ... // other code <br><br>
- * int transactionID = 10; <br>
- * Sim_event ev = new Sim_event(); <br>
- * FilterCreateAR filter = new FilterCreateAR(transactionID); <br>
- * <br>
- * // get an incoming event that matches a given transaction ID<br>
- * super.sim_get_next(filter, ev); <br>
- * <br>
- * // get the matching event data <br>
- * long[] data = (long[]) ev.get_data();
- * // data[0] contains transaction ID <br>
- * </code>
- * <br><br>
- *
- * <b>NOTE:</b>
- * <ul>
- * <li> both <tt>RESOURCE_A</tt> and <tt>Entity_B</tt> must be an instance of
- * {@link eduni.simjava.Sim_entity} class.
- * <li> <tt>RESOURCE_A</tt> <b>must</b> send the correct data object to
- * <tt>Entity_B</tt> for events with a matching tag name. <br>
- * The event data object with a matching tag name
- * <b>must</b> be of type <tt>long[]</tt>, where
- * <tt>long[0]</tt> contains the transaction id.
- * <li> if no incoming events match the given condition, then
- * {@link eduni.simjava.Sim_entity#sim_get_next(Sim_predicate, Sim_event)}
- * method will wait indefinitely.
- * </ul>
- *
- * @author Anthony Sulistio
- * @since GridSim Toolkit 3.2
- * @invariant $none
- */
-public class FilterCreateAR extends Sim_predicate
-{
- private int tag_;
- private int eventID_;
-
-
- /**
- * Finds an incoming events that matches with the given transaction ID and
- * event tag name.
- * @param transactionID a unique transaction ID to differentiate
- * itself among other events with the same tag name
- * @param tag a matching event tag name
- * @pre $none
- * @post $none
- */
- public FilterCreateAR(int transactionID, int tag)
- {
- tag_ = tag;
- eventID_ = transactionID;
- }
-
- /**
- * Finds an incoming events that matches with the given transaction ID and
- * a default tag name of {@link GridSimTags#RETURN_AR_CREATE}.
- * @param transactionID a unique transaction ID to differentiate
- * itself among other events with the same tag name
- * @pre $none
- * @post $none
- */
- public FilterCreateAR(int transactionID)
- {
- tag_ = GridSimTags.RETURN_AR_CREATE;
- eventID_ = transactionID;
- }
-
- /**
- * Checks whether an event matches the required constraints or not.<br>
- * NOTE: This method is not used directly by the user. Instead, it is
- * called by {@link eduni.simjava.Sim_system}.
- *
- * @param ev an incoming event to compare with
- * @return <tt>true</tt> if an event matches, <tt>false</tt> otherwise
- * @pre ev != null
- * @post $none
- */
- public boolean match(Sim_event ev)
- {
- if (ev == null) {
- return false;
- }
-
- boolean result = false;
- try
- {
- // find an event with a matching tag first
- if ( tag_ == ev.get_tag() )
- {
- Object obj = ev.get_data();
-
- // if the event's data contains the correct data
- if (obj instanceof long[])
- {
- long[] array = (long[]) obj;
-
- // if the data contains the correct ID or value
- if (array[0] == eventID_) {
- result = true;
- }
- }
- }
- }
- catch (Exception e) {
- result = false;
- }
-
- return result;
- }
-
-} // end class
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|