mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
gitRepo.hpp
Go to the documentation of this file.
1/** \file gitRepo.hpp
2 * \author Jared R. Males
3 * \brief Interrogate the current state of a git repository (declarations)
4 * \ingroup utils_files
5 */
6
7//***********************************************************************//
8// Copyright 2021 Jared R. Males (jaredmales@gmail.com)
9//
10// This file is part of mxlib.
11//
12// mxlib is free software: you can redistribute it and/or modify
13// it under the terms of the GNU General Public License as published by
14// the Free Software Foundation, either version 3 of the License, or
15// (at your option) any later version.
16//
17// mxlib is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20// GNU General Public License for more details.
21//
22// You should have received a copy of the GNU General Public License
23// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
24//***********************************************************************//
25
26#ifndef gitRepo_hpp
27#define gitRepo_hpp
28
29#include <iostream>
30#include <set>
31
32namespace mx
33{
34namespace sys
35{
36
37/// Interrogate the current state of a git repository
38/** Once the target directory is set, either on construction
39 * or using the dir() member function, the repo name, branch,
40 * commit hash, and modification status are interrogated with
41 * calls to git. This includes a list of uncommitted changes,
42 * including untracked files.
43 *
44 * Examples:
45 * \code
46 mx::sys::gitRepo gr( "/path/to/repo/name");
47 std::cout << gr.modified() << '\n'; //will be 1 if modified, 0 if not modified
48 std::cout << gr.isNotCommitted("filename") << '\n'; //will be 1 if this file is not committed. 0 otherwise.
49 \endcode
50 *
51 */
53{
54 protected:
55 // Set by user:
56 std::string m_dir; ///< The directory of the git repository
57
58 // Found using git:
59 std::string m_name; ///< The repo name
60 std::string m_branch; ///< The current branch
61 std::string m_hash; ///< The complete commit hash
62 bool m_modified{ false }; ///< The modification status, true or false.
63
64 std::set<std::string> m_modifiedFiles; ///< Files which git lists as modified
65 std::set<std::string> m_deletedFiles; ///< Files which git lists as deleted
66 std::set<std::string> m_renamedFiles; ///< Files which git lists as renamed-from
67 std::set<std::string> m_renamedFiles2; ///< Files which git lists as renamed-to
68 std::set<std::string> m_untrackedFiles; ///< Files which git lists as untracked
69
70 /// Get the name of the git repo
71 /** Called whenever m_dir is set.
72 *
73 * \returns 0 on success
74 * \returns -1 on error
75 */
76 int getGitName();
77
78 /// Get the name of the current commit hash
79 /** Called whenever m_dir is set.
80 *
81 * \returns 0 on success
82 * \returns -1 on error
83 */
84 int getGitHash();
85
86 /// Get the modification status of the repo
87 /** Called whenever m_dir is set.
88 *
89 * \returns 0 on success
90 * \returns -1 on error
91 */
92 int getGitModified();
93
94 /// Get the list of modified files, and the branch name.
95 /** Called whenever m_dir is set.
96 *
97 * \returns 0 on success
98 * \returns -1 on error
99 */
100 int getGitFileState();
101
102 public:
103 /// Default c'tor
104 gitRepo();
105
106 /// Constructor which sets the directory.
107 /** This results in the git repo status being interrogated.
108 */
109 gitRepo( const std::string &d );
110
111 /// Set the directory
112 /** This results in the git repo status being interrogated.
113 */
114 void dir( const std::string &d );
115
116 /// Get the current directory
117 /** \returns the git repo directory
118 */
119 std::string dir();
120
121 /// Get the current repo's .git directory
122 /** \returns the directory plus "/.git"
123 */
124 std::string gitDir();
125
126 /// Get the repo's name
127 /** \returns the repo's name
128 */
129 std::string name();
130
131 /// Get the current branch
132 /** \returns the current branch name
133 */
134 std::string branch();
135
136 /// Get the current commit hash
137 /** \returns the current value of the hash
138 */
139 std::string hash();
140
141 /// Get whether the repo is modified
142 /** \returns true is modified
143 * \returns false if not modified
144 */
145 bool modified();
146
147 /// Check whether a file is listed as not committed
148 /** Not committed means modified, deleted, renamed (from or to), or untracked.
149 *
150 * \returns true if not committed
151 * \returns false otherwise
152 */
153 bool isNotCommitted( const std::string &file );
154};
155
156} // namespace sys
157} // namespace mx
158
159#endif // gitRepo_hpp
Interrogate the current state of a git repository.
Definition gitRepo.hpp:53
int getGitName()
Get the name of the git repo.
Definition gitRepo.cpp:67
std::string gitDir()
Get the current repo's .git directory.
Definition gitRepo.cpp:62
std::set< std::string > m_renamedFiles
Files which git lists as renamed-from.
Definition gitRepo.hpp:66
std::string m_branch
The current branch.
Definition gitRepo.hpp:60
std::set< std::string > m_renamedFiles2
Files which git lists as renamed-to.
Definition gitRepo.hpp:67
bool isNotCommitted(const std::string &file)
Check whether a file is listed as not committed.
Definition gitRepo.cpp:320
std::string m_dir
The directory of the git repository.
Definition gitRepo.hpp:56
int getGitHash()
Get the name of the current commit hash.
Definition gitRepo.cpp:108
std::string branch()
Get the current branch.
Definition gitRepo.cpp:305
std::string name()
Get the repo's name.
Definition gitRepo.cpp:300
std::string m_name
The repo name.
Definition gitRepo.hpp:59
std::set< std::string > m_untrackedFiles
Files which git lists as untracked.
Definition gitRepo.hpp:68
std::set< std::string > m_deletedFiles
Files which git lists as deleted.
Definition gitRepo.hpp:65
std::set< std::string > m_modifiedFiles
Files which git lists as modified.
Definition gitRepo.hpp:64
std::string dir()
Get the current directory.
Definition gitRepo.cpp:57
std::string m_hash
The complete commit hash.
Definition gitRepo.hpp:61
bool modified()
Get whether the repo is modified.
Definition gitRepo.cpp:315
gitRepo()
Default c'tor.
Definition gitRepo.cpp:38
int getGitModified()
Get the modification status of the repo.
Definition gitRepo.cpp:151
bool m_modified
The modification status, true or false.
Definition gitRepo.hpp:62
int getGitFileState()
Get the list of modified files, and the branch name.
Definition gitRepo.cpp:181
std::string hash()
Get the current commit hash.
Definition gitRepo.cpp:310
The mxlib c++ namespace.
Definition mxError.hpp:106