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
|
//
// lager - library for functional interactive c++ programs
// Copyright (C) 2017 Juan Pedro Bolivar Puente
//
// This file is part of lager.
//
// lager is free software: you can redistribute it and/or modify
// it under the terms of the MIT License, as detailed in the LICENSE
// file located at the root of this source code distribution,
// or here: <https://github.com/arximboldi/lager/blob/master/LICENSE>
//
#include "app.hpp"
#include <iostream>
namespace todo {
app_result update(app s, app_action a)
{
return lager::match(std::move(a))(
[&](save_action&& a) -> app_result {
s.path = a.file.replace_extension("todo");
auto eff = [m = s.doc, f = s.path](auto&& ctx) {
try {
std::cout << "saving file: " << f << std::endl;
save(f, m);
} catch (std::exception const& err) {
std::cerr << "error saving file: " << err.what()
<< std::endl;
lager::get<logger>(ctx).error("Could not save file: " +
f.string());
}
};
return {std::move(s), eff};
},
[&](load_action&& a) -> app_result {
auto eff = [f = std::move(a.file)](auto&& ctx) {
std::cout << "loading file: " << f << std::endl;
try {
auto m = load(f);
ctx.dispatch(load_result_action{f, std::move(m)});
} catch (std::exception const& err) {
std::cerr << "error loading file: " << err.what()
<< std::endl;
lager::get<logger>(ctx).error("Could not load file: " +
f.string());
}
};
return {std::move(s), eff};
},
[&](load_result_action&& a) -> app_result {
s.doc = std::move(a.doc);
s.path = std::move(a.file);
return std::move(s);
},
[&](model_action&& a) -> app_result {
s.doc = update(std::move(s.doc), std::move(a));
return std::move(s);
});
}
} // namespace todo
|