24namespace sharg::detail
41 if (system(command.
c_str()))
92 if (!version_.
empty() &&
134 if (version_file.is_open())
149 version_file.close();
153 if (srv_sharg_version != empty_version)
162 if (srv_app_version != empty_version)
190 " " + out_file.
string() +
" "
191 +
std::string{
"https://seqan-update.cs.uni-tuebingen.de/check/SeqAn-Sharg_"} +
205#if __x86_64__ || __ppc64__
213 "; exit [int] -not $?}\" > nul 2>&1";
230 tmp_path /=
".config";
234 create_directory(tmp_path, err);
240 create_directory(tmp_path, err);
245 tmp_path = temp_directory_path();
248 path dummy = tmp_path /
"dummy.txt";
252 bool is_open = file.is_open();
253 bool is_good = file.good();
255 file_guard.remove_no_throw();
257 if (!is_good || !is_open)
295 if (
std::getenv(
"SHARG_NO_VERSION_CHECK") !=
nullptr)
299 return user_approval.
value();
307 if (timestamp_file.is_open())
318 if (cookie_line ==
"NEVER")
322 else if (cookie_line ==
"ALWAYS")
328 timestamp_file.close();
339#######################################################################
340 Automatic Update Notifications
341#######################################################################
343 This app can look for updates automatically in the background,
344 do you want to do that?
346 [a] Always perform version checks for this app.
347 [n] Never perform version checks for this app.
348 [y] Yes, perform a version check now, and ask again tomorrow.
349 [s] Skip the version check now, but ask again tomorrow (the default).
351 Please enter one of [a, n, y, s] and press [RETURN].
353 For more information, see:
354 https://docs.seqan.de/sharg/main_user/about_update_notifications.html
356#######################################################################
395 "[SHARG VERSION INFO] :: A new Sharg version is available online.\n"
396 "[SHARG VERSION INFO] :: Please visit www.github.com/seqan/sharg-parser.git for an update\n"
397 "[SHARG VERSION INFO] :: or inform the developer of this app.\n"
398 "[SHARG VERSION INFO] :: If you don't wish to receive further notifications, set --version-check false.\n\n";
401 "[SHARG VERSION INFO] :: Thank you for using Sharg!\n"
402 "[SHARG VERSION INFO] :: Do you wish to register your app for update notifications?\n"
403 "[SHARG VERSION INFO] :: Just send an email to support@seqan.de with your app name and version number.\n"
404 "[SHARG VERSION INFO] :: If you don't wish to receive further notifications, set --version-check false.\n\n";
407 "[APP VERSION INFO] :: We noticed the app version you use is newer than the one registered with us.\n"
408 "[APP VERSION INFO] :: Please send us an email with the new version so we can correct it "
409 "(support@seqan.de)\n\n";
412 "[APP VERSION INFO] :: A new version of this application is now available.\n"
413 "[APP VERSION INFO] :: If you don't wish to receive further notifications, set --version-check false.\n\n";
442 return "powershell.exe -NoLogo -NonInteractive -Command \"& {Invoke-WebRequest -erroraction 'silentlycontinue' "
445 if (!system(
"/usr/bin/env -i wget --version > /dev/null 2>&1"))
446 return "/usr/bin/env -i wget --timeout=10 --tries=1 -q -O";
447 else if (!system(
"/usr/bin/env -i curl --version > /dev/null 2>&1"))
448 return "/usr/bin/env -i curl --connect-timeout 10 -o";
451# if defined(__OpenBSD__)
452 return "/usr/bin/env -i ftp -w10 -Vo";
453# elif defined(__FreeBSD__)
454 return "/usr/bin/env -i fetch --timeout=10 -o";
465 double curr = co::duration_cast<co::seconds>(co::system_clock::now().time_since_epoch()).count();
470 return curr - d_time;
494 template <
typename msg_type>
499 auto curr = co::duration_cast<co::seconds>(co::system_clock::now().time_since_epoch()).count();
503 if (timestamp_file.is_open())
505 timestamp_file << curr <<
'\n' << msg;
506 timestamp_file.close();
Provides auxiliary information.
The <charconv> header from C++17's standard library.
A safe guard to manage a filesystem entry, e.g. a file or a directory.
Definition safe_filesystem_entry.hpp:35
A functor whose operator() performs the server http request and version checks.
Definition version_check.hpp:55
static constexpr std::string_view message_sharg_update
The message directed to the developer of the app if a new sharg version is available.
Definition version_check.hpp:374
void write_cookie(msg_type &&msg)
Writes a cookie file with a specified message.
Definition version_check.hpp:475
version_checker(std::string name_, std::string const &version_, std::string const &app_url=std::string{})
Initialises the version_checker with the application name and version.
Definition version_check.hpp:73
static constexpr std::string_view message_unregistered_app
The message directed to the developer of the app if the app is not yet registered with us.
Definition version_check.hpp:380
version_checker()=delete
This class has to be initialised with name and version information.
std::string version
The version of the application.
Definition version_check.hpp:409
std::filesystem::path timestamp_filename
The timestamp filename.
Definition version_check.hpp:415
static constexpr std::string_view unregistered_app
The identification string that may appear in the version file if an app is unregistered.
Definition version_check.hpp:372
static std::filesystem::path get_path()
Returns a writable path to store timestamp and version files or an empty path if none exists.
Definition version_check.hpp:223
static std::string get_program()
Returns the command line call as a std::string of an available program depending on the environment.
Definition version_check.hpp:419
std::string name
The application name.
Definition version_check.hpp:407
version_checker & operator=(version_checker const &)=default
Defaulted.
static constexpr std::string_view message_registered_app_update
The message directed to the developer if the application is registered but under a lower version.
Definition version_check.hpp:386
version_checker(version_checker const &)=default
Defaulted.
version_checker & operator=(version_checker &&)=default
Defaulted.
std::filesystem::path cookie_path
The path to store timestamp and version files (either ~/.config/seqan or the tmp directory).
Definition version_check.hpp:413
version_checker(version_checker &&)=default
Defaulted.
double get_time_diff_to_current(std::string const &str_time) const
Reads the timestamp file if possible and returns the time difference to the current time.
Definition version_check.hpp:442
void operator()(std::promise< bool > prom)
Initialises the version_checker with the application name and version.
Definition version_check.hpp:126
std::regex version_regex
The regex to verify a valid version string.
Definition version_check.hpp:411
~version_checker()=default
Defaulted.
std::string message_app_update
The message directed to the user of the app if a new app version is available.
Definition version_check.hpp:391
std::array< int, 3 > get_numbers_from_version_string(std::string const &str) const
Parses a version string into an array of length 3.
Definition version_check.hpp:456
static constexpr char const * home_env_name
The environment name of the home environment used by getenv()
Definition version_check.hpp:398
bool decide_if_check_is_performed(update_notifications developer_approval, std::optional< bool > user_approval)
The central decision whether to perform the version check or not.
Definition version_check.hpp:290
update_notifications
Indicates whether application allows automatic update notifications by the sharg::parser.
Definition auxiliary.hpp:26
@ off
Automatic update notifications should be disabled.
bool stderr_is_terminal()
Check whether the standard error output is interactive.
Definition terminal.hpp:63
bool stdin_is_terminal()
Check whether the standard input is interactive.
Definition terminal.hpp:33
void call_server(std::string const &command, std::promise< bool > prom)
Writes a timestamp file and performs the server call to get the newest version information.
Definition version_check.hpp:38
T regex_search(T... args)
Provides sharg::detail::safe_filesystem_entry.
Checks if program is run interactively and retrieves dimensions of terminal (Transferred from seqan2)...
#define SHARG_VERSION_MINOR
The minor version as MACRO.
Definition version.hpp:18
#define SHARG_VERSION_PATCH
The patch version as MACRO.
Definition version.hpp:20
constexpr std::size_t sharg_version
The full version as std::size_t.
Definition version.hpp:61
#define SHARG_VERSION_MAJOR
The major version as MACRO.
Definition version.hpp:16