test
[push-it] / src / timekeeper.h
diff --git a/src/timekeeper.h b/src/timekeeper.h
new file mode 100644 (file)
index 0000000..831d643
--- /dev/null
@@ -0,0 +1,73 @@
+/*
+    Copyright (C) <2010>  <Markus Scharnowski markus.scharnowski@gmail.com>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+#ifndef TIMEKEEPER_H
+#define TIMEKEEPER_H
+#include <time.h>
+#include <sys/time.h>
+#include <cstdlib>
+#include <string>
+
+class timeKeeper
+{
+public:
+    timeKeeper();
+    int resetTimes();
+    int start();
+    int stop();
+    int update();
+    int pause();
+    int isPaused();
+    bool enableDateForStrings();
+    bool disableDateForStrings();
+    bool isDateForStringsEnabled();
+    double getDeltaLastToStart();
+    double getDeltaLastToPrev();
+    double getDeltaNowToStart();
+    double getDeltalNowToPrev();
+    std::string getStartTimeString();
+    std::string getLastTimeString();
+    std::string getNowTimeString();
+    std::string getPreviousTimeString();
+
+private:
+    double getDelta(struct timeval tvLater, struct timeval tvEarlier);
+    std::string makeString(time_t timer);
+    int startPause();
+    int stopPause();
+
+    time_t timeStart;
+    time_t timeStop;
+    struct timeval tvStart;
+    struct timeval tvStop;
+
+    time_t timePrev;
+    time_t timeLast;
+    struct timeval tvPrev;
+    struct timeval tvLast;
+
+    struct timeval tvPauseStart;
+    struct timeval tvPauseStop;
+    double pauseTotalTimeSec;
+    double pauseTimeSec;
+
+    bool isRunning;
+    bool isPauseActive;
+    bool wasLastPauseLogged;
+    bool dateForStrings;
+};
+
+#endif // TIMEKEEPER_H