/* Copyright (C) 2018-2021 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic 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 2 of the License, or (at your option) any later version. DCP-o-matic 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 DCP-o-matic. If not, see . */ #include "analytics.h" #include "compose.hpp" #include "exceptions.h" #include #include #include LIBDCP_DISABLE_WARNINGS #include LIBDCP_ENABLE_WARNINGS #include #include #include "i18n.h" using std::string; using dcp::raw_convert; using boost::algorithm::trim; Analytics* Analytics::_instance; int const Analytics::_current_version = 1; Analytics::Analytics () { } void Analytics::successful_dcp_encode () { ++_successful_dcp_encodes; write (); if (_successful_dcp_encodes == 20) { emit ( boost::bind( boost::ref(Message), _("Congratulations!"), String::compose (_( "

You have made %1 DCPs with DCP-o-matic!

" "" "

Hello. I'm Carl and I'm the " "developer of DCP-o-matic. I work on it in my spare time (with the help " "of a fine volunteer team of testers and translators) and I release it " "as free software." "

If you find DCP-o-matic useful, please consider a donation to the " "project. Financial support will help me to spend more " "time developing DCP-o-matic and making it better!" "

" "

Thank you!"), _successful_dcp_encodes ) ) ); } } void Analytics::write () const { xmlpp::Document doc; auto root = doc.create_root_node ("Analytics"); root->add_child("Version")->add_child_text(raw_convert(_current_version)); root->add_child("SuccessfulDCPEncodes")->add_child_text(raw_convert(_successful_dcp_encodes)); try { doc.write_to_file_formatted(write_path("analytics.xml").string()); } catch (xmlpp::exception& e) { string s = e.what (); trim (s); throw FileError (s, write_path("analytics.xml")); } } void Analytics::read () try { cxml::Document f ("Analytics"); f.read_file (read_path("analytics.xml")); _successful_dcp_encodes = f.number_child("SuccessfulDCPEncodes"); } catch (...) { /* Never mind */ } Analytics* Analytics::instance () { if (!_instance) { _instance = new Analytics(); _instance->read(); } return _instance; }