9
9
import com .aws .greengrass .authorization .Permission ;
10
10
import com .aws .greengrass .authorization .exceptions .AuthorizationException ;
11
11
import com .aws .greengrass .componentmanager .ComponentStore ;
12
+ import com .aws .greengrass .config .Node ;
12
13
import com .aws .greengrass .config .Topics ;
13
14
import com .aws .greengrass .deployment .DeploymentQueue ;
14
15
import com .aws .greengrass .deployment .model .ConfigurationUpdateOperation ;
78
79
import java .util .ArrayList ;
79
80
import java .util .Base64 ;
80
81
import java .util .Collection ;
82
+ import java .util .Comparator ;
81
83
import java .util .HashMap ;
84
+ import java .util .Iterator ;
82
85
import java .util .List ;
83
86
import java .util .Map ;
84
87
import java .util .UUID ;
@@ -590,7 +593,15 @@ public ListLocalDeploymentsHandler(OperationContinuationHandlerContext context,
590
593
591
594
@ Override
592
595
protected void onStreamClosed () {
596
+ }
593
597
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 ;
594
605
}
595
606
596
607
@ Override
@@ -603,14 +614,18 @@ public ListLocalDeploymentsResponse handleRequest(ListLocalDeploymentsRequest re
603
614
.build ());
604
615
List <LocalDeployment > persistedDeployments = new ArrayList <>();
605
616
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
+ }
614
629
});
615
630
}
616
631
ListLocalDeploymentsResponse response = new ListLocalDeploymentsResponse ();
@@ -619,6 +634,18 @@ public ListLocalDeploymentsResponse handleRequest(ListLocalDeploymentsRequest re
619
634
});
620
635
}
621
636
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
+
622
649
@ Override
623
650
public void handleStreamEvent (EventStreamJsonMessage streamRequestEvent ) {
624
651
0 commit comments