Skip to content

Commit ff27a5e

Browse files
committed
feat: list deployments in order
1 parent 57d53cd commit ff27a5e

File tree

1 file changed

+35
-8
lines changed

1 file changed

+35
-8
lines changed

server/src/main/java/com/aws/greengrass/cli/CLIEventStreamAgent.java

+35-8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import com.aws.greengrass.authorization.Permission;
1010
import com.aws.greengrass.authorization.exceptions.AuthorizationException;
1111
import com.aws.greengrass.componentmanager.ComponentStore;
12+
import com.aws.greengrass.config.Node;
1213
import com.aws.greengrass.config.Topics;
1314
import com.aws.greengrass.deployment.DeploymentQueue;
1415
import com.aws.greengrass.deployment.model.ConfigurationUpdateOperation;
@@ -78,7 +79,9 @@
7879
import java.util.ArrayList;
7980
import java.util.Base64;
8081
import java.util.Collection;
82+
import java.util.Comparator;
8183
import java.util.HashMap;
84+
import java.util.Iterator;
8285
import java.util.List;
8386
import java.util.Map;
8487
import java.util.UUID;
@@ -590,7 +593,15 @@ public ListLocalDeploymentsHandler(OperationContinuationHandlerContext context,
590593

591594
@Override
592595
protected void onStreamClosed() {
596+
}
593597

598+
public List<Node> sortDeploymentsByTime(Iterator<Node> deploymentsIterator, Comparator<Node> comparator) {
599+
List<Node> list = new ArrayList<>();
600+
while (deploymentsIterator.hasNext()) {
601+
list.add(deploymentsIterator.next());
602+
}
603+
list.sort(comparator);
604+
return list;
594605
}
595606

596607
@Override
@@ -603,14 +614,18 @@ public ListLocalDeploymentsResponse handleRequest(ListLocalDeploymentsRequest re
603614
.build());
604615
List<LocalDeployment> persistedDeployments = new ArrayList<>();
605616
Topics localDeployments = cliServiceConfig.findTopics(PERSISTENT_LOCAL_DEPLOYMENTS);
606-
if (localDeployments != null) {
607-
localDeployments.forEach(topic -> {
608-
Topics topics = (Topics) topic;
609-
LocalDeployment localDeployment = new LocalDeployment();
610-
localDeployment.setDeploymentId(topics.getName());
611-
localDeployment.setStatus(
612-
deploymentStatusFromString(Coerce.toString(topics.find(DEPLOYMENT_STATUS_KEY_NAME))));
613-
persistedDeployments.add(localDeployment);
617+
List<Node> deploymentsByTime = sortDeploymentsByTime(localDeployments.iterator(),
618+
new DeploymentTimeComparator());
619+
if (deploymentsByTime != null) {
620+
deploymentsByTime.forEach(node -> {
621+
if (node instanceof Topics) {
622+
Topics topics = (Topics) node;
623+
LocalDeployment localDeployment = new LocalDeployment();
624+
localDeployment.setDeploymentId(topics.getName());
625+
localDeployment.setStatus(deploymentStatusFromString(
626+
Coerce.toString(topics.find(DEPLOYMENT_STATUS_KEY_NAME))));
627+
persistedDeployments.add(localDeployment);
628+
}
614629
});
615630
}
616631
ListLocalDeploymentsResponse response = new ListLocalDeploymentsResponse();
@@ -619,6 +634,18 @@ public ListLocalDeploymentsResponse handleRequest(ListLocalDeploymentsRequest re
619634
});
620635
}
621636

637+
private class DeploymentTimeComparator implements Comparator<Node> {
638+
@Override
639+
public int compare(Node n1, Node n2) {
640+
if (n1.getModtime() < n2.getModtime()) {
641+
return 1;
642+
} else if (n1.getModtime() > n2.getModtime()) {
643+
return -1;
644+
}
645+
return 0;
646+
}
647+
}
648+
622649
@Override
623650
public void handleStreamEvent(EventStreamJsonMessage streamRequestEvent) {
624651

0 commit comments

Comments
 (0)