Пример #1
0
 public void complete(FlowProcess flow_process, AggregatorCall<Object> ag_call) {
   try {
     ag_call.getOutputCollector().add(Util.coerceToTuple(ag_call.getContext()));
   } catch (Exception e) {
     throw new RuntimeException(e);
   }
 }
Пример #2
0
  public void aggregate(FlowProcess flow_process, AggregatorCall<Object> ag_call) {
    try {
      ISeq fn_args_seq = Util.coerceFromTuple(ag_call.getArguments().getTuple());
      Object o;
      if (this.args > 0) o = this.init_fn.applyTo(fn_args_seq);
      else o = this.init_fn.invoke();

      ISeq oseq = Util.coerceToSeq(o);

      ISeq currContext = (ISeq) ag_call.getContext();
      if (currContext == null) {
        ag_call.setContext(oseq);
      } else {
        ag_call.setContext(Util.coerceToSeq(this.combine_fn.applyTo(Util.cat(currContext, oseq))));
      }
    } catch (Exception e) {
      throw new RuntimeException(e);
    }
  }
Пример #3
0
 protected Tuple getResult(AggregatorCall<Tuple[]> aggregatorCall) {
   return aggregatorCall.getContext()[0];
 }
Пример #4
0
 public void complete(FlowProcess flowProcess, AggregatorCall<Tuple[]> aggregatorCall) {
   if (aggregatorCall.getContext()[0] != null)
     aggregatorCall.getOutputCollector().add(getResult(aggregatorCall));
 }
Пример #5
0
  public void aggregate(FlowProcess flowProcess, AggregatorCall<Tuple[]> aggregatorCall) {
    if (ignoreTuples != null && ignoreTuples.contains(aggregatorCall.getArguments().getTuple()))
      return;

    performOperation(aggregatorCall.getContext(), aggregatorCall.getArguments());
  }
Пример #6
0
 @SuppressWarnings("unchecked")
 public void start(FlowProcess flowProcess, AggregatorCall<Tuple[]> aggregatorCall) {
   if (aggregatorCall.getContext() == null) aggregatorCall.setContext(new Tuple[1]);
   else aggregatorCall.getContext()[0] = null;
 }