/* * Copyright (C) 2015 SoftIndex LLC. * * 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 io.datakernel.datagraph.server; import io.datakernel.datagraph.dataset.Dataset; import io.datakernel.datagraph.graph.DataGraph; import io.datakernel.datagraph.graph.Partition; import io.datakernel.datagraph.graph.StreamId; import io.datakernel.datagraph.node.NodeUpload; import io.datakernel.eventloop.Eventloop; import io.datakernel.stream.StreamProducer; import io.datakernel.stream.StreamProducers; import java.util.ArrayList; import java.util.List; public final class Collector<T> { private final Dataset<T> input; private final Class<T> type; private final DatagraphClient client; private final Eventloop eventloop; public Collector(Dataset<T> input, Class<T> type, DatagraphClient client, Eventloop eventloop) { this.input = input; this.type = type; this.client = client; this.eventloop = eventloop; } public StreamProducer<T> compile(DataGraph dataGraph) { List<StreamId> inputStreamIds = input.channels(dataGraph); List<StreamProducer<T>> producers = new ArrayList<>(); for (StreamId streamId : inputStreamIds) { NodeUpload<T> nodeUpload = new NodeUpload<>(type, streamId); Partition partition = dataGraph.getPartition(streamId); dataGraph.addNode(partition, nodeUpload); StreamProducer<T> producer = client.download(partition.getAddress(), streamId, type); producers.add(producer); } return StreamProducers.concat(eventloop, producers); } }