From 7c665d965c0ebb259849d5032faa0854c6ae94f2 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 6 Aug 2018 21:24:27 +0300 Subject: Add git utility functions --- libbutl/git.cxx | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ libbutl/git.mxx | 46 +++++++++++++++++++++++++++++ 2 files changed, 135 insertions(+) create mode 100644 libbutl/git.cxx create mode 100644 libbutl/git.mxx (limited to 'libbutl') diff --git a/libbutl/git.cxx b/libbutl/git.cxx new file mode 100644 index 0000000..bb5f542 --- /dev/null +++ b/libbutl/git.cxx @@ -0,0 +1,89 @@ +// file : libbutl/git.cxx -*- C++ -*- +// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef __cpp_modules +#include +#endif + +// C includes. + +#include + +#ifndef __cpp_lib_modules +#include + +#include // size_t +#endif + +// Other includes. + +#ifdef __cpp_modules +module butl.git; + +// Only imports additional to interface. +#ifdef __clang__ +#ifdef __cpp_lib_modules +import std.core; +#endif +import butl.path; +import butl.optional; +import butl.standard_version +#endif + +import butl.utility; // digit() +import butl.filesystem; // entry_exists() +#else +#include +#include +#include +#include +#endif + +using namespace std; + +namespace butl +{ + bool + git_repository (const dir_path& d) + { + // .git can be either a directory or a file in case of a submodule or a + // separate working tree. + // + return entry_exists (d / ".git", + true /* follow_symlinks */, + true /* ignore_errors */); + } + + optional + git_version (const string& s) + { + // There is some variety across platforms in the version + // representation. + // + // Linux: git version 2.14.3 + // MacOS: git version 2.10.1 (Apple Git-78) + // MinGit: git version 2.16.1.windows.1 + // + // We will consider the first 3 version components that follows the + // common 'git version ' prefix. + // + const size_t b (12); + if (s.compare (0, b, "git version ") == 0) + { + size_t i (b); + size_t n (0); + for (char c; i != s.size () && (digit (c = s[i]) || c == '.'); ++i) + { + if (c == '.' && ++n == 3) + break; + } + + // Returns nullopt if fail to parse. + // + return parse_standard_version (string (s, b, i - b)); + } + + return nullopt; + } +} diff --git a/libbutl/git.mxx b/libbutl/git.mxx new file mode 100644 index 0000000..b2023a6 --- /dev/null +++ b/libbutl/git.mxx @@ -0,0 +1,46 @@ +// file : libbutl/git.mxx -*- C++ -*- +// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef __cpp_modules +#pragma once +#endif + +// C includes. + +#ifndef __cpp_lib_modules +#include +#endif + +// Other includes. + +#ifdef __cpp_modules +export module butl.curl; +#ifdef __cpp_lib_modules +import std.core; +#endif +import butl.path; +import butl.optional; +import butl.standard_version +#else +#include +#include +#include +#endif + +#include + +LIBBUTL_MODEXPORT namespace butl +{ + // Return true if the specified directory is a git repository root (contains + // the .git filesystem entry). + // + LIBBUTL_SYMEXPORT bool + git_repository (const dir_path&); + + // Try to parse the line printed by the 'git --version' command. Return git + // version if succeed, nullopt otherwise. + // + LIBBUTL_SYMEXPORT optional + git_version (const std::string&); +} -- cgit v1.1