-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resize progress bar when terminal size changes (fixes github #159)
- Loading branch information
Showing
4 changed files
with
68 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* vim:set ts=2 sw=2 sts=2 et: */ | ||
/** | ||
* \author Marcus Holland-Moritz ([email protected]) | ||
* \copyright Copyright (c) Marcus Holland-Moritz | ||
* | ||
* This file is part of dwarfs. | ||
* | ||
* dwarfs 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. | ||
* | ||
* dwarfs 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 dwarfs. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <functional> | ||
#include <variant> | ||
|
||
namespace dwarfs { | ||
|
||
template <typename T> | ||
class cached_value { | ||
public: | ||
using function_type = std::function<T()>; | ||
|
||
cached_value(function_type f) | ||
: v_{f} {} | ||
|
||
T const& get() { | ||
if (std::holds_alternative<function_type>(v_)) [[unlikely]] { | ||
v_ = std::get<function_type>(v_)(); | ||
} | ||
return std::get<T>(v_); | ||
} | ||
|
||
T const& operator()() { return get(); } | ||
|
||
private: | ||
std::variant<function_type, T> v_; | ||
}; | ||
|
||
} // namespace dwarfs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters