timewarrior/src/commands/CmdFill.cpp
Thomas Lauf 549cb7ba61 Update copyright
Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
2025-04-19 23:00:44 +02:00

82 lines
2.7 KiB
C++

////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 - 2018, 2020 - 2024, Gothenburg Bit Factory.
//
// 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 <Duration.h>
#include <IntervalFilterAllInRange.h>
#include <commands.h>
#include <format.h>
#include <iostream>
#include <timew.h>
////////////////////////////////////////////////////////////////////////////////
int CmdFill (
CLI& cli,
Rules& rules,
Database& database,
Journal& journal)
{
const bool verbose = rules.getBoolean ("verbose");
auto ids = cli.getIds ();
if (ids.empty ())
{
throw std::string ("IDs must be specified. See 'timew help fill'.");
}
// Load the data.
auto filtering = IntervalFilterAllInRange ({0, 0});
auto tracked = getTracked (database, rules, filtering);
journal.startTransaction ();
// Apply tags to ids.
for (auto& id : ids)
{
if (id > static_cast <int> (tracked.size ()))
{
throw format ("ID '@{1}' does not correspond to any tracking.", id);
}
Interval from = tracked[tracked.size () - id];
std::cout << "# from " << from.dump () << "\n";
Interval to {from};
database.deleteInterval (from);
autoFill (rules, database, to);
validate (cli, rules, database, to);
std::cout << "# to " << to.dump () << "\n";
database.addInterval (to, verbose);
// Note: Feedback generated inside autoFill().
}
journal.endTransaction ();
return 0;
}
////////////////////////////////////////////////////////////////////////////////