Implement a rough implementation of daemon command
[TortoiseGit.git] / src / TortoiseProc / Commands / DaemonCommand.cpp
blobc3a7023ecfadf2684c7707b275fe605180650b2e
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2013 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "stdafx.h"
20 #include "DaemonCommand.h"
21 #include "ProgressDlg.h"
22 #include "UnicodeUtils.h"
25 bool DaemonCommand::Execute()
27 WSADATA wsaData;
28 if (WSAStartup(MAKEWORD(2, 2), &wsaData) != NO_ERROR)
30 MessageBox(NULL, _T("WSAStartup failed!"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
31 return false;
34 char hostName[128];
35 if (gethostname(hostName, sizeof(hostName)) == SOCKET_ERROR)
37 MessageBox(NULL, _T("gethostname failed!"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
38 return false;
41 CString ip = _T("localhost");
42 struct hostent *ipList = gethostbyname(hostName);
43 for (int i = 0; ipList->h_addr_list[i] != 0; ++i)
45 struct in_addr addr;
46 memcpy(&addr, ipList->h_addr_list[i], sizeof(struct in_addr));
47 CStringA str = inet_ntoa(addr);
48 ip = CUnicodeUtils::GetUnicode(str);
49 break;
52 CString cmd;
53 cmd.Format(_T("git.exe daemon --verbose --export-all --base-path=\"%s\""), g_Git.m_CurrentDir);
54 CProgressDlg progDlg;
55 progDlg.m_GitCmd = cmd;
56 progDlg.m_PreText = _T("git://") + ip + _T("/");
57 progDlg.DoModal();
58 return true;