Item
© 2013 JDB Labs LLC |
package com.jdblabs.gtd |
One Getting Things Done item (a page in David Allen's system). An item is represented by a file on the filesystem, organized into one of the GTD folders. The Item can have arbitrarily many properties, which are stored in the Item file as standard Java properties. By convention the
|
public class Item { public File file public Map gtdProperties = [:] |
constructorLoad an item from a file. The typical pattern for creating new Items is to create the file first then pass that file to an Item constructor. Files with no contents are valid GTD items (the file name is used as a description in lieu of an |
public Item(File f) { this.file = f |
Read and parse the item's properties from the file. |
def javaProps = new Properties() f.withReader { reader -> javaProps.load(reader) } |
Properties are stored as plain text in the file. We use the PropertyHelp Enum to serialize and deserialize the property objects. |
javaProps.each { k, v -> gtdProperties[k] = PropertyHelp.parse(v) } } |
|
public void save() { def javaProps = new Properties() gtdProperties.each { k, v -> javaProps[k] = PropertyHelp.format(v) } file.withOutputStream { os -> javaProps.store(os, "") } } |
|
public def propertyMissing(String name, def value) { gtdProperties[name] = value } public def propertyMissing(String name) { return gtdProperties[name] } |
|
public String toString() { if (gtdProperties.action) return gtdProperties.action if (gtdProperties.outcome) return gtdProperties.outcome if (gtdProperties.title) return gtdProperties.title return file.name.replaceAll(/[-_]/, " ").capitalize() } } |