Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(stage context): Lookup all stage outputs matching a key #1655

Merged
merged 2 commits into from
Oct 2, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@

package com.netflix.spinnaker.orca.pipeline.model;

import com.google.common.collect.ForwardingMap;

import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
import com.google.common.collect.ForwardingMap;
import java.util.stream.Collectors;

public class StageContext extends ForwardingMap<String, Object> {

Expand Down Expand Up @@ -53,4 +57,23 @@ public StageContext(Stage<?> stage) {
);
}
}

/*
* Gets all objects matching 'key', sorted by proximity to the current stage.
* If the key exists in the current context, it will be the first element returned
*/
public List<Object> getAll(Object key) {
List<Object> result = stage
.ancestors()
.stream()
.filter(it -> it.getOutputs().containsKey(key))
.map(it -> it.getOutputs().get(key))
.collect(Collectors.toList());

if (delegate.containsKey(key)) {
result.add(0, delegate.get(key));
}

return result;
}
}