summaryrefslogtreecommitdiff
path: root/lib/timetrackr.rb
blob: 75bf520897215a2a8293ad146ef8be896b400b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
autoload 'YamlTimeTrackr', 'timetrackr/yaml'
autoload 'SqliteTimeTrackr', 'timetrackr/sqlite'

class TimeTrackr
  def self.create(type,options={})
    case type.to_s
    when 'yaml'
      begin
        require 'yaml'
        log = YamlTimeTrackr.new(options[:path])
        puts 'Loaded yaml tracker' if $verbose
      rescue LoadError
        puts 'Yaml not found'
      end
    when 'sqlite'
      begin
        require 'sqlite3'
        log = SqliteTimeTrackr.new(options[:path])
        puts 'Loaded sqlite tracker' if $verbose
      rescue LoadError
        puts 'Sqlite not found'
      end
    else
      raise "Bad log type: #{type}"
    end
    log
  end

  #
  # return an array of current tasks
  #
  def current
    raise 'Not Implemented'
  end

  #
  # return an array of all tasks
  #
  def tasks
    raise 'Not Implemented'
  end

  #
  # time in task in seconds
  # only considers 'start' and 'stop' events
  #
  def time(task)
    raise 'Not Implemented'
  end

  #
  # write an event
  #
  def event(task, time=Time.now, details={})
    raise 'Not Implemented'
  end

  #
  # clear an event
  #
  def clear(task)
    raise 'Not Implemented'
  end

  #
  # cleanup and close
  #
  def close
  end

end