//////////////////////////////////////////////////////////////////////////////// // // Copyright 2016 - 2023, Thomas Lauf, 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 #include #include #include #include #include //////////////////////////////////////////////////////////////////////////////// int CmdJoin ( const CLI& cli, Rules& rules, Database& database, Journal& journal) { const bool verbose = rules.getBoolean ("verbose"); // Gather IDs and TAGs. auto ids = cli.getIds (); // Only 2 IDs allowed in a join. if (ids.size () != 2) { throw std::string ("Two IDs must be specified. See 'timew help join'."); } journal.startTransaction (); flattenDatabase (database, rules); auto filtering = IntervalFilterAllWithIds (ids); auto intervals = getTracked (database, rules, filtering); if (intervals.size () != ids.size ()) { for (auto& id: ids) { bool found = false; for (auto& interval: intervals) { if (interval.id == id) { found = true; break; } } if (! found) { throw format ("ID '@{1}' does not correspond to any tracking.", id); } } } Interval first = intervals[1]; Interval second = intervals[0]; // TODO Require confirmation if intervals are not consecutive. auto combined = second; combined.end = first.end; for (auto& tag: first.tags ()) { combined.tag (tag); } database.deleteInterval (first); database.deleteInterval (second); validate (cli, rules, database, combined); database.addInterval (combined, verbose); journal.endTransaction (); if (verbose) { std::cout << "Joined @" << first.id << " and @" << second.id << '\n'; } return 0; } ////////////////////////////////////////////////////////////////////////////////