aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/a1pesimulator/data/cell
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/a1pesimulator/data/cell')
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/Cell.java24
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/CellDetails.java54
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/CellList.java48
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/CellWithStatus.java28
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/RanCell.java28
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateEnum.java28
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateMachine.java33
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/state/machine/ActiveState.java35
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/state/machine/GoingToSleepingState.java35
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/state/machine/InactiveState.java39
-rw-r--r--src/main/java/org/onap/a1pesimulator/data/cell/state/machine/SleepingState.java39
11 files changed, 391 insertions, 0 deletions
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/Cell.java b/src/main/java/org/onap/a1pesimulator/data/cell/Cell.java
new file mode 100644
index 0000000..8c8c0ce
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/Cell.java
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell;
+
+import lombok.Builder;
+import lombok.Data;
+
+@Data
+@Builder
+public class Cell {
+
+ private String identifier;
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/CellDetails.java b/src/main/java/org/onap/a1pesimulator/data/cell/CellDetails.java
new file mode 100644
index 0000000..249e26b
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/CellDetails.java
@@ -0,0 +1,54 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell;
+
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.Collection;
+import lombok.Builder;
+import lombok.Getter;
+import lombok.Setter;
+import org.onap.a1pesimulator.data.cell.state.CellStateEnum;
+import org.onap.a1pesimulator.data.cell.state.CellStateMachine;
+import org.onap.a1pesimulator.data.cell.state.machine.InactiveState;
+
+@Getter
+@Builder
+public class CellDetails {
+
+ private String id;
+ private Double latitude;
+ private Double longitude;
+
+ @Setter
+ @JsonIgnore
+ @Builder.Default
+ private CellStateMachine cellStateMachine = new InactiveState();
+
+ @Setter
+ private Collection<String> connectedUserEquipments;
+
+ public void previousState() {
+ cellStateMachine.prev(this);
+ }
+
+ public void nextState() {
+ cellStateMachine.next(this);
+ }
+
+ @JsonProperty("currentState")
+ public CellStateEnum getCurrentState() {
+ return cellStateMachine.getState();
+ }
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/CellList.java b/src/main/java/org/onap/a1pesimulator/data/cell/CellList.java
new file mode 100644
index 0000000..627d43b
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/CellList.java
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.Collections;
+import java.util.List;
+import lombok.Getter;
+
+@Getter
+@JsonIgnoreProperties(ignoreUnknown = true)
+public class CellList {
+
+ private final List<CellData> cellList;
+
+ public CellList() {
+ cellList = Collections.emptyList();
+ }
+
+ @Getter
+ @JsonIgnoreProperties(ignoreUnknown = true)
+ public static class CellData {
+
+ @JsonProperty("Cell")
+ private Cell cell;
+ }
+
+ @Getter
+ @JsonIgnoreProperties(ignoreUnknown = true)
+ public static class Cell {
+
+ private String nodeId;
+ private Double latitude;
+ private Double longitude;
+ }
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/CellWithStatus.java b/src/main/java/org/onap/a1pesimulator/data/cell/CellWithStatus.java
new file mode 100644
index 0000000..f1419f7
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/CellWithStatus.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell;
+
+import lombok.Builder;
+import lombok.Getter;
+import org.onap.a1pesimulator.data.cell.state.CellStateEnum;
+
+@Builder
+@Getter
+public class CellWithStatus {
+
+ private Cell cell;
+ private boolean vesEnabled;
+ private boolean failureMode;
+ private CellStateEnum state;
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/RanCell.java b/src/main/java/org/onap/a1pesimulator/data/cell/RanCell.java
new file mode 100644
index 0000000..8ae9243
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/RanCell.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell;
+
+import java.util.Collection;
+import lombok.AllArgsConstructor;
+import lombok.Builder;
+import lombok.Getter;
+
+@Getter
+@Builder
+@AllArgsConstructor
+public class RanCell {
+
+ private Collection<CellDetails> cells;
+ private int itemsLength;
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateEnum.java b/src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateEnum.java
new file mode 100644
index 0000000..a25156a
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateEnum.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell.state;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+
+@JsonFormat(shape = JsonFormat.Shape.OBJECT)
+public enum CellStateEnum {
+
+ INACTIVE("INACTIVE"), ACTIVE("ACTIVE"), GOING_TO_SLEEP("GOING_TO_SLEEP"), SLEEPING("SLEEPING");
+
+ public final String value;
+
+ CellStateEnum(String stateName) {
+ this.value = stateName;
+ }
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateMachine.java b/src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateMachine.java
new file mode 100644
index 0000000..f3c7bf0
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/state/CellStateMachine.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell.state;
+
+import org.onap.a1pesimulator.data.cell.CellDetails;
+
+public abstract class CellStateMachine {
+
+ private CellStateEnum state;
+
+ protected CellStateMachine(CellStateEnum state) {
+ this.state = state;
+ }
+
+ public abstract void next(CellDetails cell);
+
+ public abstract void prev(CellDetails cell);
+
+ public CellStateEnum getState() {
+ return state;
+ }
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/ActiveState.java b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/ActiveState.java
new file mode 100644
index 0000000..c7d600d
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/ActiveState.java
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell.state.machine;
+
+import org.onap.a1pesimulator.data.cell.CellDetails;
+import org.onap.a1pesimulator.data.cell.state.CellStateEnum;
+import org.onap.a1pesimulator.data.cell.state.CellStateMachine;
+
+public class ActiveState extends CellStateMachine {
+
+ public ActiveState() {
+ super(CellStateEnum.ACTIVE);
+ }
+
+ @Override
+ public void next(CellDetails cell) {
+ cell.setCellStateMachine(new GoingToSleepingState());
+ }
+
+ @Override
+ public void prev(CellDetails cell) {
+ cell.setCellStateMachine(new InactiveState());
+ }
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/GoingToSleepingState.java b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/GoingToSleepingState.java
new file mode 100644
index 0000000..d4bdc48
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/GoingToSleepingState.java
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell.state.machine;
+
+import org.onap.a1pesimulator.data.cell.CellDetails;
+import org.onap.a1pesimulator.data.cell.state.CellStateEnum;
+import org.onap.a1pesimulator.data.cell.state.CellStateMachine;
+
+public class GoingToSleepingState extends CellStateMachine {
+
+ public GoingToSleepingState() {
+ super(CellStateEnum.GOING_TO_SLEEP);
+ }
+
+ @Override
+ public void next(CellDetails cell) {
+ cell.setCellStateMachine(new SleepingState());
+ }
+
+ @Override
+ public void prev(CellDetails cell) {
+ cell.setCellStateMachine(new InactiveState());
+ }
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/InactiveState.java b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/InactiveState.java
new file mode 100644
index 0000000..e04d5f7
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/InactiveState.java
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell.state.machine;
+
+import org.onap.a1pesimulator.data.cell.CellDetails;
+import org.onap.a1pesimulator.data.cell.state.CellStateEnum;
+import org.onap.a1pesimulator.data.cell.state.CellStateMachine;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class InactiveState extends CellStateMachine {
+
+ private static final Logger log = LoggerFactory.getLogger(InactiveState.class);
+
+ public InactiveState() {
+ super(CellStateEnum.INACTIVE);
+ }
+
+ @Override
+ public void next(CellDetails cell) {
+ cell.setCellStateMachine(new ActiveState());
+ }
+
+ @Override
+ public void prev(CellDetails cell) {
+ log.info("YOU ARE IN THE INACTIVE STATE, PREVIOUS STATE ISN'T AVAILABLE");
+ }
+}
diff --git a/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/SleepingState.java b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/SleepingState.java
new file mode 100644
index 0000000..7de3230
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/data/cell/state/machine/SleepingState.java
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.onap.a1pesimulator.data.cell.state.machine;
+
+import org.onap.a1pesimulator.data.cell.CellDetails;
+import org.onap.a1pesimulator.data.cell.state.CellStateEnum;
+import org.onap.a1pesimulator.data.cell.state.CellStateMachine;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class SleepingState extends CellStateMachine {
+
+ private static final Logger log = LoggerFactory.getLogger(SleepingState.class);
+
+ public SleepingState() {
+ super(CellStateEnum.SLEEPING);
+ }
+
+ @Override
+ public void next(CellDetails cell) {
+ log.info("YOU ARE IN THE SLEEPING STATE, NEXT STATE ISN'T AVAILABLE");
+ }
+
+ @Override
+ public void prev(CellDetails cell) {
+ cell.setCellStateMachine(new InactiveState());
+ }
+}