//////////////////////////////////////////////////////////////////////////////// // // Copyright 2006 - 2014, 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 // //////////////////////////////////////////////////////////////////////////////// #ifndef INCLUDED_TASK #define INCLUDED_TASK #include #include #include #include #include class Task : public std::map { public: static std::string defaultProject; static std::string defaultPriority; static std::string defaultDue; static bool searchCaseSensitive; static bool regex; static std::map attributes; // name -> type static std::map coefficients; static float urgencyPriorityCoefficient; static float urgencyProjectCoefficient; static float urgencyActiveCoefficient; static float urgencyScheduledCoefficient; static float urgencyWaitingCoefficient; static float urgencyBlockedCoefficient; static float urgencyInheritCoefficient; static float urgencyAnnotationsCoefficient; static float urgencyTagsCoefficient; static float urgencyNextCoefficient; static float urgencyDueCoefficient; static float urgencyBlockingCoefficient; static float urgencyAgeCoefficient; static float urgencyAgeMax; public: Task (); // Default constructor Task (const Task&); // Copy constructor Task& operator= (const Task&); // Assignment operator bool operator== (const Task&); // Comparison operator Task (const std::string&); // Parse ~Task (); // Destructor void parse (const std::string&); std::string composeF4 () const; std::string composeJSON (bool decorate = false) const; // Status values. enum status {pending, completed, deleted, recurring, waiting}; // Date state values. enum dateState {dateNotDue, dateAfterToday, dateLaterToday, dateEarlierToday, dateBeforeToday}; // Public data. int id; float urgency_value; bool recalc_urgency; bool is_blocked; bool is_blocking; int annotation_count; // Series of helper functions. static status textToStatus (const std::string&); static std::string statusToText (status); void setEntry (); void setEnd (); void setStart (); void setModified (); bool has (const std::string&) const; std::vector all (); const std::string get (const std::string&) const; const std::string& get_ref (const std::string&) const; int get_int (const std::string&) const; unsigned long get_ulong (const std::string&) const; float get_float (const std::string&) const; time_t get_date (const std::string&) const; void set (const std::string&, const std::string&); void set (const std::string&, int); void remove (const std::string&); #ifdef PRODUCT_TASKWARRIOR bool is_ready () const; bool is_due () const; bool is_dueyesterday () const; bool is_duetoday () const; bool is_duetomorrow () const; bool is_dueweek () const; bool is_duemonth () const; bool is_dueyear () const; bool is_overdue () const; #endif status getStatus () const; void setStatus (status); dateState getDateState (const std::string&) const; int getTagCount () const; bool hasTag (const std::string&) const; void addTag (const std::string&); void addTags (const std::vector &); void getTags (std::vector&) const; void removeTag (const std::string&); bool hasAnnotations () const; void getAnnotations (std::map &) const; void setAnnotations (const std::map &); void addAnnotation (const std::string&); void removeAnnotations (); #ifdef PRODUCT_TASKWARRIOR void addDependency (int); void addDependency (const std::string&); void removeDependency (int); void removeDependency (const std::string&); void getDependencies (std::vector &) const; void getDependencies (std::vector &) const; void getUDAs (std::vector &) const; void getUDAOrphans (std::vector &) const; void substitute (const std::string&, const std::string&, bool); #endif void validate (bool applyDefault = true); float urgency_c () const; float urgency (); enum modType {modReplace, modPrepend, modAppend, modAnnotate}; void modify (modType, bool text_required = false); private: int determineVersion (const std::string&); void parseJSON (const std::string&); void parseLegacy (const std::string&); void validate_before (const std::string&, const std::string&); public: float urgency_priority () const; float urgency_project () const; float urgency_active () const; float urgency_scheduled () const; float urgency_waiting () const; float urgency_blocked () const; float urgency_inherit () const; float urgency_annotations () const; float urgency_tags () const; float urgency_next () const; float urgency_due () const; float urgency_blocking () const; float urgency_age () const; }; #endif ////////////////////////////////////////////////////////////////////////////////