sergehuber commented on code in PR #763: URL: https://github.com/apache/unomi/pull/763#discussion_r3377898732
########## tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/dev/commands/scheduler/ListTasksCommand.java: ########## @@ -0,0 +1,135 @@ +/* + * 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.unomi.shell.dev.commands.scheduler; + +import org.apache.karaf.shell.api.action.Action; +import org.apache.karaf.shell.api.action.Command; +import org.apache.karaf.shell.api.action.Option; +import org.apache.karaf.shell.api.action.lifecycle.Reference; +import org.apache.karaf.shell.api.action.lifecycle.Service; +import org.apache.karaf.shell.api.console.Session; +import org.apache.karaf.shell.support.table.Col; +import org.apache.karaf.shell.support.table.ShellTable; + +import org.apache.unomi.api.PartialList; +import org.apache.unomi.api.services.SchedulerService; +import org.apache.unomi.api.tasks.ScheduledTask; +import org.apache.unomi.shell.dev.commands.CommandUtils; + +import java.io.PrintStream; +import java.util.List; + +@Command(scope = "unomi", name = "task-list", description = "Lists scheduled tasks") +@Service +public class ListTasksCommand extends BaseSchedulerCommand { + + @Option(name = "-s", aliases = "--status", description = "Filter by task status (SCHEDULED, RUNNING, COMPLETED, FAILED, CANCELLED, CRASHED)", required = false) + private String status; + + @Option(name = "-t", aliases = "--type", description = "Filter by task type", required = false) + private String type; + + @Option(name = "--limit", description = "Maximum number of tasks to display (default: 50)", required = false) + private int limit = 50; + + @Override + public Object execute() throws Exception { + PrintStream console = getConsole(); + ShellTable table = new ShellTable(); + + // Configure table columns + table.column(new Col("ID").maxSize(36)); + table.column(new Col("Type").maxSize(30)); + table.column(new Col("Status").maxSize(10)); + table.column(new Col("Next Run").maxSize(19)); + table.column(new Col("Last Run").maxSize(19)); + table.column(new Col("Failures").alignRight()); + table.column(new Col("Successes").alignRight()); + table.column(new Col("Total Exec").alignRight()); + table.column(new Col("Persistent").maxSize(10)); + + // Get tasks based on filters + List<ScheduledTask> tasks; + if (status != null) { + try { + ScheduledTask.TaskStatus taskStatus = ScheduledTask.TaskStatus.valueOf(status.toUpperCase()); + // Get persistent tasks + PartialList<ScheduledTask> filteredTasks = schedulerService.getTasksByStatus(taskStatus, 0, limit, null); + tasks = filteredTasks.getList(); + // Add memory tasks with matching status + List<ScheduledTask> memoryTasks = schedulerService.getMemoryTasks(); + for (ScheduledTask task : memoryTasks) { + if (task.getStatus() == taskStatus) { + tasks.add(task); + } + } Review Comment: Good catch. `getTasksByStatus()` already merges in-memory tasks per the `SchedulerServiceImpl` implementation, so the manual `getMemoryTasks()` loop was redundant and would have caused duplicates. Removed both the `status` and `type` filter loops in a single cleanup. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
