6
6
package com .aws .greengrass .cli ;
7
7
8
8
import com .aws .greengrass .componentmanager .ComponentStore ;
9
+ import com .aws .greengrass .config .Node ;
9
10
import com .aws .greengrass .config .Topics ;
10
11
import com .aws .greengrass .deployment .DeploymentQueue ;
11
12
import com .aws .greengrass .deployment .model .ConfigurationUpdateOperation ;
75
76
import java .util .ArrayList ;
76
77
import java .util .Base64 ;
77
78
import java .util .Collection ;
79
+ import java .util .Comparator ;
78
80
import java .util .HashMap ;
81
+ import java .util .Iterator ;
79
82
import java .util .List ;
80
83
import java .util .Map ;
81
84
import java .util .UUID ;
@@ -543,17 +546,28 @@ protected void onStreamClosed() {
543
546
544
547
}
545
548
549
+ public List <Node > sortDeploymentsByTime (Iterator <Node > deploymentsIterator , Comparator <Node > comparator ) {
550
+ List <Node > list = new ArrayList <>();
551
+ while (deploymentsIterator .hasNext ()) {
552
+ list .add (deploymentsIterator .next ());
553
+ }
554
+ list .sort (comparator );
555
+ return list ;
556
+ }
557
+
546
558
@ Override
547
559
public ListLocalDeploymentsResponse handleRequest (ListLocalDeploymentsRequest request ) {
548
560
return translateExceptions (() -> {
549
561
authorizeRequest (componentName );
550
562
List <LocalDeployment > persistedDeployments = new ArrayList <>();
551
563
Topics localDeployments = cliServiceConfig .findTopics (PERSISTENT_LOCAL_DEPLOYMENTS );
552
- if (localDeployments != null ) {
553
- localDeployments .forEach (topic -> {
554
- Topics topics = (Topics ) topic ;
564
+ List <Topics > deploymentsByTime = sortDeploymentsByTime (localDeployments .iterator (),
565
+ new DeploymentTimeComparator ());
566
+ if (deploymentsByTime != null ) {
567
+ deploymentsByTime .forEach (topics -> {
555
568
LocalDeployment localDeployment = new LocalDeployment ();
556
569
localDeployment .setDeploymentId (topics .getName ());
570
+
557
571
localDeployment .setStatus (
558
572
deploymentStatusFromString (Coerce .toString (topics .find (DEPLOYMENT_STATUS_KEY_NAME ))));
559
573
persistedDeployments .add (localDeployment );
@@ -565,6 +579,20 @@ public ListLocalDeploymentsResponse handleRequest(ListLocalDeploymentsRequest re
565
579
});
566
580
}
567
581
582
+ private class DeploymentTimeComparator implements Comparator {
583
+ @ Override
584
+ public int compare (Object o1 , Object o2 ) {
585
+ Topics t1 = (Topics ) o1 ;
586
+ Topics t2 = (Topics ) o2 ;
587
+ if (t1 .getModtime () < t2 .getModtime ()) {
588
+ return 1 ;
589
+ } else if (t1 .getModtime () > t2 .getModtime ()) {
590
+ return -1 ;
591
+ }
592
+ return 0 ;
593
+ }
594
+ }
595
+
568
596
@ Override
569
597
public void handleStreamEvent (EventStreamJsonMessage streamRequestEvent ) {
570
598
0 commit comments