From 4f2d4022dca65da2a6f03e1f27df13deeaab360a Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 6 Aug 2018 22:15:05 +0300 Subject: Add git version check (2.12 is minimum supported) --- bdep/git.txx | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 bdep/git.txx (limited to 'bdep/git.txx') diff --git a/bdep/git.txx b/bdep/git.txx new file mode 100644 index 0000000..aef5f3d --- /dev/null +++ b/bdep/git.txx @@ -0,0 +1,50 @@ +// file : bdep/git.txx -*- C++ -*- +// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +namespace bdep +{ + template + void + run_git (const dir_path& repo, A&&... args) + { + process pr (start_git (repo, + 0 /* stdin */, + 1 /* stdout */, + 2 /* stderr */, + forward (args)...)); + + finish_git (pr); + } + + void + git_check_version (); + + template + process + start_git (I&& in, O&& out, E&& err, A&&... args) + { + git_check_version (); + + return start (forward (in), + forward (out), + forward (err), + "git", + forward (args)...); + } + + template + optional + git_line (bool ie, A&&... args) + { + fdpipe pipe (fdopen_pipe ()); + auto_fd null (ie ? fdnull () : auto_fd ()); + + process pr (start_git (0 /* stdin */, + pipe /* stdout */, + ie ? null.get () : 2 /* stderr */, + forward (args)...)); + + return git_line (move (pr), move (pipe), ie); + } +} -- cgit v1.1