64 return m_dir +
"/.git";
70 std::vector<std::string> stdOut, stdErr;
72 if(
ipc::runCommand( retVal, stdOut, stdErr, {
"git",
"--git-dir=" +
gitDir(),
"rev-parse",
"--show-toplevel" } ) <
75 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error running git command" );
79 if( stdErr.size() > 0 )
81 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error returned by git" );
83 for(
size_t n = 0; n < stdErr.size(); ++n )
85 std::cerr <<
"err: " << stdErr[n] <<
"\n";
91 if( stdOut.size() < 1 )
93 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"nothing returned by git" );
97 if( stdOut.size() > 1 )
99 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"too much returned by git" );
111 std::vector<std::string> stdOut, stdErr;
116 {
"git",
"--git-dir=" +
gitDir(),
"--work-tree=" +
dir(),
"log",
"-1",
"--format=%H" } ) < 0 )
118 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error running git command" );
122 if( stdErr.size() > 0 )
124 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error returned by git" );
126 for(
size_t n = 0; n < stdErr.size(); ++n )
128 std::cerr <<
"err: " << stdErr[n] <<
"\n";
134 if( stdOut.size() < 1 )
136 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"nothing returned by git" );
140 if( stdOut.size() > 1 )
142 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"too much returned by git" );
154 std::vector<std::string> stdOut, stdErr;
159 {
"git",
"--git-dir=" +
gitDir(),
"--work-tree=" +
dir(),
"diff-index",
"HEAD",
"--" } ) < 0 )
161 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error running git command" );
165 if( stdErr.size() > 0 )
167 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error returned by git" );
168 for(
size_t n = 0; n < stdErr.size(); ++n )
170 std::cerr <<
"err: " << stdErr[n] <<
"\n";
184 std::vector<std::string> stdOut, stdErr;
187 retVal, stdOut, stdErr, {
"git",
"--git-dir=" +
gitDir(),
"--work-tree=" +
dir(),
"status" } ) < 0 )
189 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error running git command" );
193 if( stdErr.size() > 0 )
195 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"error returned by git" );
197 for(
size_t n = 0; n < stdErr.size(); ++n )
199 std::cerr <<
"err: " << stdErr[n] <<
"\n";
205 if( stdOut.size() < 1 )
207 mxError(
"mx::sys::gitRepo::getGitName", MXE_PROCERR,
"nothing returned by git" );
217 for(
size_t n = 0; n < stdOut.size(); ++n )
219 if( stdOut[n].find(
"On b" ) != std::string::npos )
221 m_branch = stdOut[n].substr(
sizeof(
"On branch" ) );
223 else if( stdOut[n].find(
"Changes not" ) != std::string::npos )
228 while( stdOut[n].size() > 0 )
230 if( n >= stdOut.size() )
233 if( stdOut[n].find(
"mod" ) != std::string::npos )
237 else if( stdOut[n].find(
"del" ) != std::string::npos )
241 else if( stdOut[n].find(
"ren" ) != std::string::npos )
243 size_t a = stdOut[n].find(
" -> " );
246 stdOut[n].substr(
sizeof(
"renamed:" ), a -
sizeof(
"renamed:" ) ) ) );
252 else if( stdOut[n].find(
"Changes to" ) != std::string::npos )
257 while( stdOut[n].size() > 0 )
259 if( n >= stdOut.size() )
262 if( stdOut[n].find(
"mod" ) != std::string::npos )
266 else if( stdOut[n].find(
"del" ) != std::string::npos )
270 else if( stdOut[n].find(
"ren" ) != std::string::npos )
272 size_t a = stdOut[n].find(
" -> " );
275 stdOut[n].substr(
sizeof(
"renamed: " ), a -
sizeof(
"renamed:" ) ) ) );
281 else if( stdOut[n].find(
"Untracked" ) != std::string::npos )
287 while( stdOut[n].size() > 0 )
289 if( n >= stdOut.size() )
int getGitName()
Get the name of the git repo.
std::string gitDir()
Get the current repo's .git directory.
std::set< std::string > m_renamedFiles
Files which git lists as renamed-from.
std::string m_branch
The current branch.
std::set< std::string > m_renamedFiles2
Files which git lists as renamed-to.
bool isNotCommitted(const std::string &file)
Check whether a file is listed as not committed.
std::string m_dir
The directory of the git repository.
int getGitHash()
Get the name of the current commit hash.
std::string branch()
Get the current branch.
std::string name()
Get the repo's name.
std::string m_name
The repo name.
std::set< std::string > m_untrackedFiles
Files which git lists as untracked.
std::set< std::string > m_deletedFiles
Files which git lists as deleted.
std::set< std::string > m_modifiedFiles
Files which git lists as modified.
std::string dir()
Get the current directory.
std::string m_hash
The complete commit hash.
bool modified()
Get whether the repo is modified.
int getGitModified()
Get the modification status of the repo.
bool m_modified
The modification status, true or false.
int getGitFileState()
Get the list of modified files, and the branch name.
std::string hash()
Get the current commit hash.
Declarations of utilities for working with files.
Interrogate the current state of a git repository (declarations)
int runCommand(int &retVal, std::vector< std::string > &commandOutput, std::vector< std::string > &commandStderr, const std::vector< std::string > &commandList)
Runs a command (with parameters) passed in using fork/exec.
std::string pathFilename(const std::string &fname)
Get the base filename.
void removeWhiteSpace(std::string &outstr, const std::string &instr)
Remove all white space from a string.
Declares and defines the mxlib error reporting system.
Process interface facilities.
Utilities for working with strings.