Recurrence: Added stub for handleRecurrence2

This commit is contained in:
Paul Beckingham 2017-03-31 08:38:35 -04:00
parent f6f79d28ee
commit b40cc89235
4 changed files with 59 additions and 0 deletions

View file

@ -24,6 +24,7 @@ add_library (task CLI2.cpp CLI2.h
legacy.cpp
nag.cpp
recur.cpp
recur2.cpp
rules.cpp
sort.cpp
util.cpp util.h)

View file

@ -42,6 +42,9 @@ Datetime getNextRecurrence (Datetime&, std::string&);
bool generateDueDates (Task&, std::vector <Datetime>&);
void updateRecurrenceMask (Task&);
// recur2.cpp
void handleRecurrence2 ();
// nag.cpp
bool nag (Task&);

View file

@ -54,6 +54,11 @@ extern Context context;
// child tasks need to be generated to fill gaps.
void handleRecurrence ()
{
// TODO This is inserted here to create parallel recurrence implememntations
// during feature development. This eliminates the need to inject this
// call into 11 command implementations.
handleRecurrence2 ();
// Recurrence can be disabled.
// Note: This is currently a workaround for TD-44, TW-1520.
if (! context.config.getBoolean ("recurrence"))

50
src/recur2.cpp Normal file
View file

@ -0,0 +1,50 @@
////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2006 - 2017, 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.
//
// http://www.opensource.org/licenses/mit-license.php
//
////////////////////////////////////////////////////////////////////////////////
#include <cmake.h>
#include <Context.h>
extern Context context;
////////////////////////////////////////////////////////////////////////////////
// Scans all tasks, and for any recurring tasks, determines whether any new
// child tasks need to be generated to fill gaps.
void handleRecurrence2 ()
{
// Recurrence can be disabled.
// Note: This is currently a workaround for TD-44, TW-1520.
if (context.config.getBoolean ("recurrence"))
{
context.debug ("handleRecurrence2 start");
context.debug ("handleRecurrence2 end");
}
}
////////////////////////////////////////////////////////////////////////////////