All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.solr.handler.component.ActiveTasksListHandler Maven / Gradle / Ivy

There is a newer version: 9.7.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.solr.handler.component;

import static org.apache.solr.common.params.CommonParams.TASK_CHECK_UUID;

import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.solr.api.AnnotatedApi;
import org.apache.solr.api.Api;
import org.apache.solr.handler.admin.api.ListActiveTasksAPI;
import org.apache.solr.request.SolrQueryRequest;
import org.apache.solr.request.SolrRequestHandler;
import org.apache.solr.response.SolrQueryResponse;
import org.apache.solr.security.AuthorizationContext;
import org.apache.solr.security.PermissionNameProvider;

/** Handles request for listing all active cancellable tasks */
public class ActiveTasksListHandler extends TaskManagementHandler {
  // This can be a parent level member but we keep it here to allow future handlers to have
  // a custom list of components
  private List components;

  @Override
  public void handleRequestBody(SolrQueryRequest req, SolrQueryResponse rsp) throws Exception {
    Map extraParams = null;
    ResponseBuilder rb = buildResponseBuilder(req, rsp, getComponentsList());

    rb.setIsTaskListRequest(true);

    String taskStatusCheckUUID = req.getParams().get(TASK_CHECK_UUID, null);

    if (taskStatusCheckUUID != null) {
      if (rb.isDistrib) {
        extraParams = new HashMap<>();

        extraParams.put(TASK_CHECK_UUID, taskStatusCheckUUID);
      }

      rb.setTaskStatusCheckUUID(taskStatusCheckUUID);
    }

    processRequest(req, rb, extraParams);
  }

  @Override
  public String getDescription() {
    return "activetaskslist";
  }

  @Override
  public Category getCategory() {
    return Category.ADMIN;
  }

  @Override
  public PermissionNameProvider.Name getPermissionName(AuthorizationContext ctx) {
    return PermissionNameProvider.Name.READ_PERM;
  }

  @Override
  public SolrRequestHandler getSubHandler(String path) {
    if (path.startsWith("/tasks/list")) {
      return this;
    }

    return null;
  }

  @Override
  public Boolean registerV2() {
    return Boolean.TRUE;
  }

  @Override
  public Collection getApis() {
    return AnnotatedApi.getApis(new ListActiveTasksAPI(this));
  }

  private List getComponentsList() {
    if (components == null) {
      components = buildComponentsList();
    }

    return components;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy