cloudsim_eclipse

所属分类:Java书籍
开发工具:Java
文件大小:2086KB
下载次数:93
上传日期:2011-07-27 16:59:43
上 传 者hello_world_t
说明:  cloudsim模拟,包括例子,使用说明,测试介绍说明和源代码
(cloudsim simulations, including examples, instructions, test instructions and source code introduced)

文件列表:
cloudsim\build.xml (3786, 2010-05-17)
cloudsim\CHANGELOG.txt (3680, 2010-05-17)
cloudsim\classes\cloudsim\CloudCoordinator.class (1039, 2010-05-21)
cloudsim\classes\cloudsim\Cloudlet$1.class (156, 2010-05-21)
cloudsim\classes\cloudsim\Cloudlet$Resource.class (605, 2010-05-21)
cloudsim\classes\cloudsim\Cloudlet.class (11246, 2010-05-21)
cloudsim\classes\cloudsim\CloudletScheduler.class (1589, 2010-05-21)
cloudsim\classes\cloudsim\CloudletSchedulerSingleService.class (4272, 2010-05-21)
cloudsim\classes\cloudsim\CloudletSchedulerSpaceShared.class (6157, 2010-05-21)
cloudsim\classes\cloudsim\CloudletSchedulerTimeShared.class (5137, 2010-05-21)
cloudsim\classes\cloudsim\core\CloudInformationService.class (3145, 2010-05-21)
cloudsim\classes\cloudsim\core\CloudSim.class (8825, 2010-05-21)
cloudsim\classes\cloudsim\core\CloudSimShutdown.class (612, 2010-05-21)
cloudsim\classes\cloudsim\core\CloudSimTags.class (2213, 2010-05-21)
cloudsim\classes\cloudsim\core\DeferredQueue.class (1122, 2010-05-21)
cloudsim\classes\cloudsim\core\FutureQueue.class (1044, 2010-05-21)
cloudsim\classes\cloudsim\core\predicates\Predicate.class (195, 2010-05-21)
cloudsim\classes\cloudsim\core\predicates\PredicateAny.class (236, 2010-05-21)
cloudsim\classes\cloudsim\core\predicates\PredicateFrom.class (504, 2010-05-21)
cloudsim\classes\cloudsim\core\predicates\PredicateNone.class (237, 2010-05-21)
cloudsim\classes\cloudsim\core\predicates\PredicateNotFrom.class (507, 2010-05-21)
cloudsim\classes\cloudsim\core\predicates\PredicateNotType.class (505, 2010-05-21)
cloudsim\classes\cloudsim\core\predicates\PredicateType.class (502, 2010-05-21)
cloudsim\classes\cloudsim\core\SimEntity.class (4153, 2010-05-21)
cloudsim\classes\cloudsim\core\SimEvent.class (2300, 2010-05-21)
cloudsim\classes\cloudsim\Datacenter.class (13923, 2010-05-21)
cloudsim\classes\cloudsim\DatacenterBroker.class (8513, 2010-05-21)
cloudsim\classes\cloudsim\DatacenterCharacteristics.class (4259, 2010-05-21)
cloudsim\classes\cloudsim\DataCloudTags.class (3872, 2010-05-21)
cloudsim\classes\cloudsim\distributions\ContinuousDistribution.class (120, 2010-05-21)
cloudsim\classes\cloudsim\distributions\ExponentialDistr.class (821, 2010-05-21)
cloudsim\classes\cloudsim\distributions\GammaDistr.class (897, 2010-05-21)
cloudsim\classes\cloudsim\distributions\LognormalDistr.class (985, 2010-05-21)
cloudsim\classes\cloudsim\distributions\LomaxDistribution.class (685, 2010-05-21)
cloudsim\classes\cloudsim\distributions\ParetoDistr.class (876, 2010-05-21)
cloudsim\classes\cloudsim\distributions\UniformDistr.class (881, 2010-05-21)
cloudsim\classes\cloudsim\distributions\WeibullDistr.class (896, 2010-05-21)
cloudsim\classes\cloudsim\distributions\ZipfDistr.class (1129, 2010-05-21)
cloudsim\classes\cloudsim\FederatedDatacenter.class (14823, 2010-05-21)
cloudsim\classes\cloudsim\File.class (3251, 2010-05-21)
... ...

Directory Structure of CloudSim Toolkit 2.0 --------------------------------------- $CLOUDSIM/ -- top level CloudSim directory classes/ -- The CloudSim class files doc/ -- CloudSim API Documentation examples/ -- CloudSim examples and Class Diagram jar/ -- CloudSim jar archives lib/ -- external libraries src/ -- CloudSim source code test -- CloudSim unit tests Software Requirements : Java version 1.6 or newer --------------------- CloudSim has been tested and ran on Sun's Java version 1.6.0 or newer. Older versions of Java are not compatible. If you have non-Sun Java version, such as gcj or J++, they may not be compatible. You also need to install Ant to compile CloudSim (explained in more details later). Installation and Running CloudSim Toolkit ---------------------------------------- You just need to unpack the CloudSim file to install. If you want to remove CloudSim, then remove the whole $CLOUDSIM directory. NOTE: You do not need to compile CloudSim source code. The JAR file is provided to compile and to run CloudSim applications. * cloudsim.jar -- contains CloudSim class files only To compile and run CloudSim applications, do the following step: 1) Go the directory where the CloudSim's Examples reside In Unix or Linux: cd $CLOUDSIM/examples/ In Windows: cd %CLOUDSIM%\examples\ 2) Compile the Java source file In Unix or Linux: javac -classpath $CLOUDSIM/jar/cloudsim-2.0.jar:. cloudsim/examples/CloudSimExampleX.java In Windows: javac -classpath %CLOUDSIM%\jar\cloudsim-2.0.jar;. cloudsim\examples\CloudSimExampleX.java 3) Running the Java class file In Unix or Linux: java -classpath $CLOUDSIM/jar/cloudsim-2.0.jar:. cloudsim.examples.CloudSimExampleX In Windows: java -classpath %CLOUDSIM%\jar\cloudsim-2.0.jar;. cloudsim.examples.CloudSimExampleX NOTE: * $CLOUDSIM or %CLOUDSIM% is the location of the CloudSim Toolkit package. Learning CloudSim ----------------- To understand how to use CloudSim, please go through the examples provided in the $CLOUDSIM/examples/ directory. Compiling CloudSim : Using Ant ------------------ This release contains a simple buildfile for compiling CloudSim classes. You need to have ant installed (http://ant.apache.org/). Ant can be used in both Windows and Unix/Linux environment. Usage: * type 'ant' to compile all CloudSim source files and put them into classes/ directory * type 'ant makejar' to compile the source files (if necessary) and to create a new jar file called "new_cloudsim.jar" into jars/ directory. NOTE: * You need to set up PATH for ant in Windows and/or Unix. * rule for javadoc is not included yet. Use javadoc.sh script on Unix instead. 详细说明:云计算仿真工具升级版cloudsim2.0,Buyya教授领导开发

近期下载者

相关文件


收藏者