taskwarrior/src/commands/CmdProjects.cpp
Tobias Predel 81ca04fc8c
Declare in corresponding header files and dissolve main.h (#3796)
* Declare in corresponding header files and dissolve main.h

Apply include-what-you-use

* Remove further unncessary includes

* Incorporate review comment

* Do not declare static functions and variables in header

* Adapt test

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2025-03-01 14:47:42 -05:00

174 lines
5.7 KiB
C++

////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2006 - 2021, Tomas Babej, Paul Beckingham, Federico Hernandez.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
// https://www.opensource.org/licenses/mit-license.php
//
////////////////////////////////////////////////////////////////////////////////
#include <cmake.h>
// cmake.h include header must come first
#include <CmdProjects.h>
#include <Context.h>
#include <Filter.h>
#include <Table.h>
#include <format.h>
#include <sort.h>
#include <util.h>
#include <list>
#include <sstream>
////////////////////////////////////////////////////////////////////////////////
CmdProjects::CmdProjects() {
_keyword = "projects";
_usage = "task <filter> projects";
_description = "Shows all project names used";
_read_only = true;
_displays_id = false;
_needs_gc = true;
_needs_recur_update = true;
_uses_context = true;
_accepts_filter = true;
_accepts_modifications = false;
_accepts_miscellaneous = false;
_category = Command::Category::metadata;
}
////////////////////////////////////////////////////////////////////////////////
int CmdProjects::execute(std::string& output) {
int rc = 0;
// Get all the tasks.
auto tasks = Context::getContext().tdb2.pending_tasks();
if (Context::getContext().config.getBoolean("list.all.projects"))
for (auto& task : Context::getContext().tdb2.completed_tasks()) tasks.push_back(task);
// Apply the filter.
Filter filter;
std::vector<Task> filtered;
filter.subset(tasks, filtered);
int quantity = filtered.size();
std::stringstream out;
// Scan all the tasks for their project name, building a map using project
// names as keys.
std::map<std::string, int> unique;
bool no_project = false;
std::string project;
for (auto& task : filtered) {
if (task.getStatus() == Task::deleted) {
--quantity;
continue;
}
// Increase the count for the project the task belongs to and all
// its super-projects
project = task.get("project");
std::vector<std::string> projects = extractParents(project);
projects.push_back(project);
for (auto& parent : projects) unique[parent] += 1;
if (project == "") no_project = true;
}
if (unique.size()) {
// Render a list of project names from the map.
Table view;
view.width(Context::getContext().getWidth());
view.add("Project");
view.add("Tasks", false);
setHeaderUnderline(view);
// create sorted list of table entries
std::list<std::pair<std::string, int>> sorted_view;
sort_projects(sorted_view, unique);
// construct view from sorted list
for (auto& item : sorted_view) {
int row = view.addRow();
view.set(row, 0, (item.first == "" ? "(none)" : indentProject(item.first, " ", '.')));
view.set(row, 1, item.second);
}
int number_projects = unique.size();
if (no_project) --number_projects;
out << optionalBlankLine() << view.render() << optionalBlankLine()
<< (number_projects == 1 ? format("{1} project", number_projects)
: format("{1} projects", number_projects))
<< ' ' << (quantity == 1 ? format("({1} task)", quantity) : format("({1} tasks)", quantity))
<< '\n';
} else {
out << "No projects.\n";
rc = 1;
}
output = out.str();
return rc;
}
////////////////////////////////////////////////////////////////////////////////
CmdCompletionProjects::CmdCompletionProjects() {
_keyword = "_projects";
_usage = "task <filter> _projects";
_description = "Shows only a list of all project names used";
_read_only = true;
_displays_id = false;
_needs_gc = true;
_needs_recur_update = true;
_uses_context = false;
_accepts_filter = true;
_accepts_modifications = false;
_accepts_miscellaneous = false;
_category = Command::Category::internal;
}
////////////////////////////////////////////////////////////////////////////////
int CmdCompletionProjects::execute(std::string& output) {
// Get all the tasks.
auto tasks = Context::getContext().tdb2.pending_tasks();
if (Context::getContext().config.getBoolean("list.all.projects"))
for (auto& task : Context::getContext().tdb2.completed_tasks()) tasks.push_back(task);
// Apply the filter.
Filter filter;
std::vector<Task> filtered;
filter.subset(tasks, filtered);
// Scan all the tasks for their project name, building a map using project
// names as keys.
std::map<std::string, int> unique;
for (auto& task : filtered) unique[task.get("project")] = 0;
for (auto& project : unique)
if (project.first.length()) output += project.first + '\n';
return 0;
}
////////////////////////////////////////////////////////////////////////////////