diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-07-02 18:39:28 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:47:21 +0200 |
| commit | f119fc78dda4d1e828dde04f378a63a93e3a0a7e (patch) | |
| tree | bea1eace5d47f21a7ccb835c6a6079bc92e48710 /simulator/opendc | |
| parent | 7f27a6370a0af25e1bf6ff8f46360c6c26c21e0b (diff) | |
Add current progress on frontend port
Diffstat (limited to 'simulator/opendc')
12 files changed, 19 insertions, 19 deletions
diff --git a/simulator/opendc/opendc-core/build.gradle.kts b/simulator/opendc/opendc-core/build.gradle.kts index 0ac1f1ea..5443f056 100644 --- a/simulator/opendc/opendc-core/build.gradle.kts +++ b/simulator/opendc/opendc-core/build.gradle.kts @@ -22,7 +22,7 @@ * SOFTWARE. */ -description = "Base model for datacenter simulation" +description = "Base model for topology simulation" /* Build configuration */ plugins { diff --git a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt index c0424c20..0b2437c6 100644 --- a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt +++ b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt @@ -29,7 +29,7 @@ import java.util.UUID /** * A representation of a cloud platform such as Amazon Web Services (AWS), Microsoft Azure or Google Cloud. * - * @property uid The unique identifier of this datacenter. + * @property uid The unique identifier of this topology. * @property name the name of the platform. * @property zones The availability zones available on this platform. */ diff --git a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt index 5f5d946b..d8851bcd 100644 --- a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt +++ b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt @@ -28,8 +28,8 @@ import com.atlarge.opendc.core.services.ServiceRegistry import java.util.UUID /** - * An isolated location within a datacenter region from which public cloud services operate, roughly equivalent to a - * single datacenter. Zones contain one or more clusters and secondary storage. + * An isolated location within a topology region from which public cloud services operate, roughly equivalent to a + * single topology. Zones contain one or more clusters and secondary storage. * * This class models *only* the static information of a zone, with dynamic information being contained within the zone's * actor. During runtime, it's actor acts as a registry for all the cloud services provided by the zone. diff --git a/simulator/opendc/opendc-experiments-sc20/src/main/kotlin/com/atlarge/opendc/experiments/sc20/experiment/model/Topology.kt b/simulator/opendc/opendc-experiments-sc20/src/main/kotlin/com/atlarge/opendc/experiments/sc20/experiment/model/Topology.kt index 3ed71e09..ea09688b 100644 --- a/simulator/opendc/opendc-experiments-sc20/src/main/kotlin/com/atlarge/opendc/experiments/sc20/experiment/model/Topology.kt +++ b/simulator/opendc/opendc-experiments-sc20/src/main/kotlin/com/atlarge/opendc/experiments/sc20/experiment/model/Topology.kt @@ -25,6 +25,6 @@ package com.atlarge.opendc.experiments.sc20.experiment.model /** - * The datacenter topology on which we test the workload. + * The topology topology on which we test the workload. */ public data class Topology(val name: String) diff --git a/simulator/opendc/opendc-format/build.gradle.kts b/simulator/opendc/opendc-format/build.gradle.kts index 21b0dc57..4414b638 100644 --- a/simulator/opendc/opendc-format/build.gradle.kts +++ b/simulator/opendc/opendc-format/build.gradle.kts @@ -22,7 +22,7 @@ * SOFTWARE. */ -description = "Library for reading common data formats for datacenter simulation" +description = "Library for reading common data formats for topology simulation" /* Build configuration */ plugins { diff --git a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/EnvironmentReader.kt b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/EnvironmentReader.kt index 42551f43..1c3f70e6 100644 --- a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/EnvironmentReader.kt +++ b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/EnvironmentReader.kt @@ -29,7 +29,7 @@ import com.atlarge.opendc.core.Environment import java.io.Closeable /** - * An interface for reading descriptions of datacenter environments into memory as [Environment]. + * An interface for reading descriptions of topology environments into memory as [Environment]. */ interface EnvironmentReader : Closeable { /** diff --git a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Model.kt b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Model.kt index 7afe9253..f3e70982 100644 --- a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Model.kt +++ b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Model.kt @@ -4,17 +4,17 @@ import com.fasterxml.jackson.annotation.JsonSubTypes import com.fasterxml.jackson.annotation.JsonTypeInfo /** - * A datacenter setup. + * A topology setup. * * @property name The name of the setup. - * @property rooms The rooms in the datacenter. + * @property rooms The rooms in the topology. */ internal data class Setup(val name: String, val rooms: List<Room>) /** - * A room in a datacenter. + * A room in a topology. * - * @property type The type of room in the datacenter. + * @property type The type of room in the topology. * @property objects The objects in the room. */ internal data class Room(val type: String, val objects: List<RoomObject>) diff --git a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Sc18EnvironmentReader.kt b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Sc18EnvironmentReader.kt index 6f6aa616..5f220ad0 100644 --- a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Sc18EnvironmentReader.kt +++ b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Sc18EnvironmentReader.kt @@ -43,7 +43,7 @@ import java.io.InputStream import java.util.UUID /** - * A parser for the JSON experiment setup files used for the SC18 paper: "A Reference Architecture for Datacenter + * A parser for the JSON experiment setup files used for the SC18 paper: "A Reference Architecture for Topology * Schedulers". * * @param input The input stream to read from. diff --git a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc20/Model.kt b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc20/Model.kt index 3ef1d9eb..0a8f1c14 100644 --- a/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc20/Model.kt +++ b/simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc20/Model.kt @@ -4,17 +4,17 @@ import com.fasterxml.jackson.annotation.JsonSubTypes import com.fasterxml.jackson.annotation.JsonTypeInfo /** - * A datacenter setup. + * A topology setup. * * @property name The name of the setup. - * @property rooms The rooms in the datacenter. + * @property rooms The rooms in the topology. */ internal data class Setup(val name: String, val rooms: List<Room>) /** - * A room in a datacenter. + * A room in a topology. * - * @property type The type of room in the datacenter. + * @property type The type of room in the topology. * @property objects The objects in the room. */ internal data class Room(val type: String, val objects: List<RoomObject>) diff --git a/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/StageWorkflowService.kt b/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/StageWorkflowService.kt index 7a20363c..7c7990e2 100644 --- a/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/StageWorkflowService.kt +++ b/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/StageWorkflowService.kt @@ -51,7 +51,7 @@ import kotlinx.coroutines.withContext /** * A [WorkflowService] that distributes work through a multi-stage process based on the Reference Architecture for - * Datacenter Scheduling. + * Topology Scheduling. */ class StageWorkflowService( private val domain: Domain, diff --git a/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/WorkflowService.kt b/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/WorkflowService.kt index 38ea49c4..ad818dde 100644 --- a/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/WorkflowService.kt +++ b/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/WorkflowService.kt @@ -32,7 +32,7 @@ import java.util.UUID /** * A service for cloud workflow management. * - * The workflow scheduler is modelled after the Reference Architecture for Datacenter Scheduling by Andreadis et al. + * The workflow scheduler is modelled after the Reference Architecture for Topology Scheduling by Andreadis et al. */ public interface WorkflowService { /** diff --git a/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/stage/task/TaskOrderPolicy.kt b/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/stage/task/TaskOrderPolicy.kt index bfdc7924..e74082c2 100644 --- a/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/stage/task/TaskOrderPolicy.kt +++ b/simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/stage/task/TaskOrderPolicy.kt @@ -28,7 +28,7 @@ import com.atlarge.opendc.workflows.service.TaskState import com.atlarge.opendc.workflows.service.stage.StagePolicy /** - * This interface represents the **T2** stage of the Reference Architecture for Datacenter Schedulers and provides the + * This interface represents the **T2** stage of the Reference Architecture for Topology Schedulers and provides the * scheduler with a sorted list of tasks to schedule. */ interface TaskOrderPolicy : StagePolicy<Comparator<TaskState>> |
