timewarrior/src/Datafile.cpp
Thomas Lauf ad58309159 Update Copyright
Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
2020-04-19 12:41:23 +02:00

207 lines
6.2 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 2016, 2018 - 2020, 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>
#include <AtomicFile.h>
#include <IntervalFactory.h>
////////////////////////////////////////////////////////////////////////////////
void Datafile::initialize (const std::string& name)
{
_file = Path (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 "";
}
////////////////////////////////////////////////////////////////////////////////
const 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 ();
const std::string serialization = interval.serialize ();
// Ensure that the IntervalFactory can properly parse the serialization before
// adding it to the database.
try
{
Interval test = IntervalFactory::fromSerialization (serialization);
test.id = interval.id;
if (interval != test)
{
throw (format ("Encode / decode check failed:\n {1}\nis not equal to:\n {2}",
serialization, test.serialize ()));
}
_lines.push_back (serialization);
debug (format ("{1}: Added {2}", _file.name (), _lines.back ()));
_dirty = true;
}
catch (const std::string& error)
{
debug (format ("Datafile::addInterval() failed.\n{1}", error));
throw std::string ("Internal error. Failed encode / decode check.");
}
}
////////////////////////////////////////////////////////////////////////////////
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)
{
AtomicFile file (_file);
if (file.open ())
{
// Sort the intervals by ascending start time.
std::sort (_lines.begin (), _lines.end ());
// Write out all the lines.
file.truncate ();
for (auto& line : _lines)
{
file.write_raw (line + '\n');
}
_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 ()
{
AtomicFile file (_file);
if (file.open ())
{
// 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 ()));
}
}
////////////////////////////////////////////////////////////////////////////////