timewarrior/src/Datafile.cpp
Thomas Lauf 9dd106116c Let Interval inherit from Range
- Remove 1 level of indirection
- Remove public field Interval::range (instead use interval directly)
2018-09-19 06:32:56 +02:00

189 lines
5.7 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2015 - 2018, Thomas Lauf, 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.
//
// https://www.opensource.org/licenses/mit-license.php
//
////////////////////////////////////////////////////////////////////////////////
#include <cmake.h>
#include <Datafile.h>
#include <timew.h>
#include <format.h>
#include <algorithm>
#include <sstream>
#include <cassert>
#include <stdlib.h>
////////////////////////////////////////////////////////////////////////////////
void Datafile::initialize (const std::string& name)
{
_file = File (name);
// From the name, which is of the form YYYY-MM.data, extract the YYYY and MM.
auto basename = _file.name ();
auto year = strtol (basename.substr (0, 4).c_str (), NULL, 10);
auto month = strtol (basename.substr (5, 2).c_str (), NULL, 10);
// The range is a month: [start, end).
Datetime start (year, month, 1, 0, 0, 0);
month++;
if (month > 12)
{
year++;
month = 1;
}
Datetime end (year, month, 1, 0, 0, 0);
_range = Range (start, end);
}
////////////////////////////////////////////////////////////////////////////////
std::string Datafile::name () const
{
return _file.name ();
}
////////////////////////////////////////////////////////////////////////////////
// Identifies the last incluѕion (^i) lines
std::string Datafile::lastLine ()
{
if (! _lines_loaded)
load_lines ();
std::vector <std::string>::reverse_iterator ri;
for (ri = _lines.rbegin (); ri != _lines.rend (); ri++)
if (ri->operator[] (0) == 'i')
return *ri;
return "";
}
////////////////////////////////////////////////////////////////////////////////
std::vector <std::string> Datafile::allLines ()
{
if (! _lines_loaded)
load_lines ();
return _lines;
}
////////////////////////////////////////////////////////////////////////////////
// Accepted intervals; day1 <= interval.start < dayN
void Datafile::addInterval (const Interval& interval)
{
// Note: end date might be zero.
assert (interval.startsWithin (_range));
if (! _lines_loaded)
load_lines ();
// TODO if interval is not a duplicate
// TODO insert interval.serialize into _lines
// TODO _dirty = true;
_lines.push_back (interval.serialize ());
debug (format ("{1}: Added {2}", _file.name (), _lines.back ()));
_dirty = true;
}
////////////////////////////////////////////////////////////////////////////////
void Datafile::deleteInterval (const Interval& interval)
{
// Note: end date might be zero.
assert (interval.startsWithin (_range));
if (! _lines_loaded)
load_lines ();
auto serialized = interval.serialize ();
auto i = std::find (_lines.begin (), _lines.end (), serialized);
if (i != _lines.end ())
{
_lines.erase (i);
_dirty = true;
debug (format ("{1}: Deleted {2}", _file.name (), serialized));
}
}
////////////////////////////////////////////////////////////////////////////////
void Datafile::commit ()
{
// The _dirty flag indicates that the file needs to be written.
if (_dirty)
{
if (_file.open ())
{
_file.lock ();
_file.truncate ();
_file.append (std::string ("")); // Seek to EOF.
// Sort the intervals by ascending start time.
std::sort (_lines.begin (), _lines.end ());
// Write out all the lines.
for (auto& line : _lines)
_file.write_raw (line + '\n');
_file.close ();
_dirty = false;
}
else
throw format ("Could not write to data file {1}", _file._data);
}
}
////////////////////////////////////////////////////////////////////////////////
std::string Datafile::dump () const
{
std::stringstream out;
out << "Datafile\n"
<< " Name: " << _file.name () << (_file.exists () ? "" : " (does not exist)") << '\n'
<< " dirty: " << (_dirty ? "true" : "false") << '\n'
<< " lines: " << _lines.size () << '\n'
<< " loaded " << (_lines_loaded ? "true" : "false") << '\n'
<< " range: " << _range.start.toISO () << " - "
<< _range.end.toISO () << '\n';
return out.str ();
}
////////////////////////////////////////////////////////////////////////////////
void Datafile::load_lines ()
{
if (_file.open ())
{
_file.lock ();
// Load the data.
std::vector <std::string> read_lines;
_file.read (read_lines);
_file.close ();
// Append the lines that were read.
for (auto& line : read_lines)
_lines.push_back (line);
_lines_loaded = true;
debug (format ("{1}: {2} intervals", _file.name (), read_lines.size ()));
}
}
////////////////////////////////////////////////////////////////////////////////