summaryrefslogtreecommitdiff
path: root/simulator/opendc
diff options
context:
space:
mode:
Diffstat (limited to 'simulator/opendc')
-rw-r--r--simulator/opendc/opendc-core/build.gradle.kts2
-rw-r--r--simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt2
-rw-r--r--simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt4
-rw-r--r--simulator/opendc/opendc-experiments-sc20/src/main/kotlin/com/atlarge/opendc/experiments/sc20/experiment/model/Topology.kt2
-rw-r--r--simulator/opendc/opendc-format/build.gradle.kts2
-rw-r--r--simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/EnvironmentReader.kt2
-rw-r--r--simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Model.kt8
-rw-r--r--simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc18/Sc18EnvironmentReader.kt2
-rw-r--r--simulator/opendc/opendc-format/src/main/kotlin/com/atlarge/opendc/format/environment/sc20/Model.kt8
-rw-r--r--simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/StageWorkflowService.kt2
-rw-r--r--simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/WorkflowService.kt2
-rw-r--r--simulator/opendc/opendc-workflows/src/main/kotlin/com/atlarge/opendc/workflows/service/stage/task/TaskOrderPolicy.kt2
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>>