Package com.google.gerrit.server.query.change

Examples of com.google.gerrit.server.query.change.ChangeQueryRewriter$ChangeSource


      ChangeQueryBuilder builder = queryBuilder.create(currentUser.get());
      Predicate<ChangeData> visibleToMe = builder.is_visible();
      Predicate<ChangeData> q = builder.parse(query);
      q = Predicate.and(q, builder.sortkey_before("z"), builder.limit(2), visibleToMe);

      ChangeQueryRewriter rewriter = queryRewriter.get();
      Predicate<ChangeData> s = rewriter.rewrite(q);
      if (!(s instanceof ChangeDataSource)) {
        s = rewriter.rewrite(Predicate.and(builder.status_open(), q));
      }

      if (s instanceof ChangeDataSource) {
        for (ChangeData d : ((ChangeDataSource) s).read()) {
          ids.add(d.getId());
View Full Code Here


  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;

    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);

    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);

    // Register the task as an output. A source only has one output, this
    // corresponds to pipe index 0.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Connect the tasks.
    source.setChangeSink(task);
   
    // Register the task as an output. A source only has one output, this
    // corresponds to pipe index 0.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);
   
    // Register the task as an output. A source only has one output, this
    // corresponds to pipe index 0.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
    int taskSourceCount;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);
   
    // Register all the sources provided by this task as outputs.
    taskSourceCount = task.getChangeSourceCount();
    for (int i = 0; i < taskSourceCount; i++) {
      setOutputTask(pipeTasks, task.getChangeSource(i), i);
View Full Code Here

      // Connect the tasks.
      source.setSink(sink);
    }
    for (int i = 0; i < task.getChangeSinkCount(); i++) {
      ChangeSink changeSink;
      ChangeSource changeSource;
     
      // Retrieve the next sink.
      changeSink = task.getChangeSink(i);
     
      // Retrieve the appropriate source.
      changeSource = (ChangeSource) getInputTask(
        pipeTasks,
        i + task.getSinkCount(),
        ChangeSource.class
      );
     
      // Connect the tasks.
      changeSource.setChangeSink(changeSink);
    }
   
    // Register the change source as an output task.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

  public void connect(PipeTasks pipeTasks) {
    // A multi sink receives multiple streams of data, so we must connect
    // them up one by one.
    for (int i = 0; i < task.getChangeSinkCount(); i++) {
      ChangeSink sink;
      ChangeSource source;
     
      // Retrieve the next sink.
      sink = task.getChangeSink(i);
     
      // Retrieve the appropriate source.
      source = (ChangeSource) getInputTask(pipeTasks, i, ChangeSource.class);
     
      // Connect the tasks.
      source.setChangeSink(sink);
    }
   
    // Register the source as an output task.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

TOP

Related Classes of com.google.gerrit.server.query.change.ChangeQueryRewriter$ChangeSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.