Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > b3a1f4d91c26f535919e39e25606614a > files > 101

wt-doc-3.2.3-1.fc18.noarch.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Wt examples: /home/koen/project/wt/public-git/wt/examples/gitmodel/Git.C Source File</title>

<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />



</head>
<body>
<div id="top"><!-- do not remove this div! -->


<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  
  
  <td style="padding-left: 0.5em;">
   <div id="projectname">Wt examples
   &#160;<span id="projectnumber">3.2.3</span>
   </div>
   
  </td>
  
  
  
 </tr>
 </tbody>
</table>
</div>

<!-- Generated by Doxygen 1.7.5.1 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="files.html"><span>File&#160;List</span></a></li>
      <li><a href="globals.html"><span>File&#160;Members</span></a></li>
    </ul>
  </div>
<div class="header">
  <div class="headertitle">
<div class="title">/home/koen/project/wt/public-git/wt/examples/gitmodel/Git.C</div>  </div>
</div>
<div class="contents">
<a href="Git_8C.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium.</span>
<a name="l00003"></a>00003 <span class="comment"> *</span>
<a name="l00004"></a>00004 <span class="comment"> * See the LICENSE file for terms of use.</span>
<a name="l00005"></a>00005 <span class="comment"> */</span>
<a name="l00006"></a>00006 <span class="preprocessor">#include &quot;<a class="code" href="Git_8h.html">Git.h</a>&quot;</span>
<a name="l00007"></a>00007 
<a name="l00008"></a>00008 <span class="preprocessor">#include &lt;iostream&gt;</span>
<a name="l00009"></a>00009 <span class="preprocessor">#include &lt;vector&gt;</span>
<a name="l00010"></a>00010 <span class="preprocessor">#include &lt;stdio.h&gt;</span>
<a name="l00011"></a>00011 <span class="preprocessor">#include &lt;ctype.h&gt;</span>
<a name="l00012"></a>00012 
<a name="l00013"></a>00013 <span class="preprocessor">#include &lt;boost/algorithm/string/classification.hpp&gt;</span>
<a name="l00014"></a>00014 <span class="preprocessor">#include &lt;boost/algorithm/string/predicate.hpp&gt;</span>
<a name="l00015"></a>00015 <span class="preprocessor">#include &lt;boost/algorithm/string/split.hpp&gt;</span>
<a name="l00016"></a>00016 <span class="preprocessor">#include &lt;boost/lexical_cast.hpp&gt;</span>
<a name="l00017"></a>00017 
<a name="l00018"></a>00018 <span class="comment">/*</span>
<a name="l00019"></a>00019 <span class="comment"> * Small utility methods and classes.</span>
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021 <span class="keyword">namespace </span>{
<a name="l00022"></a>00022   <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> fromHex(<span class="keywordtype">char</span> b)
<a name="l00023"></a>00023   {
<a name="l00024"></a>00024     <span class="keywordflow">if</span> (b &lt;= <span class="charliteral">&#39;9&#39;</span>)
<a name="l00025"></a>00025       <span class="keywordflow">return</span> b - <span class="charliteral">&#39;0&#39;</span>;
<a name="l00026"></a>00026     <span class="keywordflow">else</span> <span class="keywordflow">if</span> (b &lt;= <span class="charliteral">&#39;F&#39;</span>)
<a name="l00027"></a>00027       <span class="keywordflow">return</span> (b - <span class="charliteral">&#39;A&#39;</span>) + 0x0A;
<a name="l00028"></a>00028     <span class="keywordflow">else</span> 
<a name="l00029"></a>00029       <span class="keywordflow">return</span> (b - <span class="charliteral">&#39;a&#39;</span>) + 0x0A;
<a name="l00030"></a>00030   }
<a name="l00031"></a>00031 
<a name="l00032"></a>00032   <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> fromHex(<span class="keywordtype">char</span> msb, <span class="keywordtype">char</span> lsb)
<a name="l00033"></a>00033   {
<a name="l00034"></a>00034     <span class="keywordflow">return</span> (fromHex(msb) &lt;&lt; 4) + fromHex(lsb);
<a name="l00035"></a>00035   }
<a name="l00036"></a>00036 
<a name="l00037"></a>00037   <span class="keywordtype">char</span> toHex(<span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> b)
<a name="l00038"></a>00038   {
<a name="l00039"></a>00039     <span class="keywordflow">if</span> (b &lt; 0xA)
<a name="l00040"></a>00040       <span class="keywordflow">return</span> <span class="charliteral">&#39;0&#39;</span> + b;
<a name="l00041"></a>00041     <span class="keywordflow">else</span>
<a name="l00042"></a>00042       <span class="keywordflow">return</span> <span class="charliteral">&#39;a&#39;</span> + (b - 0xA);
<a name="l00043"></a>00043   }
<a name="l00044"></a>00044 
<a name="l00045"></a>00045   <span class="keywordtype">void</span> toHex(<span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> b, <span class="keywordtype">char</span>&amp; msb, <span class="keywordtype">char</span>&amp; lsb)
<a name="l00046"></a>00046   {
<a name="l00047"></a>00047     lsb = toHex(b &amp; 0x0F);
<a name="l00048"></a>00048     msb = toHex(b &gt;&gt; 4);
<a name="l00049"></a>00049   }
<a name="l00050"></a>00050 
<a name="l00051"></a>00051   <span class="comment">/*</span>
<a name="l00052"></a>00052 <span class="comment">   * Run a command and capture its stdout into a string.</span>
<a name="l00053"></a>00053 <span class="comment">   * Uses and maintains a cache.</span>
<a name="l00054"></a>00054 <span class="comment">   */</span>
<a name="l00055"></a>00055   <span class="keyword">class </span>POpenWrapper
<a name="l00056"></a>00056   {
<a name="l00057"></a>00057   <span class="keyword">public</span>:
<a name="l00058"></a>00058     POpenWrapper(<span class="keyword">const</span> std::string&amp; s, <a class="code" href="classGit.html#a23da7b806839f7a482935a44142b04c9">Git::Cache</a>&amp; cache) {
<a name="l00059"></a>00059       <span class="keywordtype">bool</span> cached = <span class="keyword">false</span>;
<a name="l00060"></a>00060 
<a name="l00061"></a>00061       <span class="keywordflow">for</span> (Git::Cache::iterator i = cache.begin(); i != cache.end(); ++i)
<a name="l00062"></a>00062         <span class="keywordflow">if</span> (i-&gt;first == s) {
<a name="l00063"></a>00063           content_ = i-&gt;second;
<a name="l00064"></a>00064           status_ = 0;
<a name="l00065"></a>00065           cached = <span class="keyword">true</span>;
<a name="l00066"></a>00066           cache.splice(cache.begin(), cache, i); <span class="comment">// implement LRU</span>
<a name="l00067"></a>00067           <span class="keywordflow">break</span>;
<a name="l00068"></a>00068         }
<a name="l00069"></a>00069 
<a name="l00070"></a>00070       <span class="keywordflow">if</span> (!cached) {
<a name="l00071"></a>00071         std::cerr &lt;&lt; s &lt;&lt; std::endl;
<a name="l00072"></a>00072         FILE *stream = popen((s + <span class="stringliteral">&quot;  2&gt;&amp;1&quot;</span>).c_str(), <span class="stringliteral">&quot;r&quot;</span>);
<a name="l00073"></a>00073         <span class="keywordflow">if</span> (!stream)
<a name="l00074"></a>00074           <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Git::Exception</a>(<span class="stringliteral">&quot;Git: could not execute: &#39;&quot;</span> + s + <span class="stringliteral">&quot;&#39;&quot;</span>);
<a name="l00075"></a>00075 
<a name="l00076"></a>00076         <span class="keywordtype">int</span> n = 0;
<a name="l00077"></a>00077         <span class="keywordflow">do</span> {
<a name="l00078"></a>00078           <span class="keywordtype">char</span> buffer[32000];
<a name="l00079"></a>00079           n = fread(buffer, 1, 30000, stream);
<a name="l00080"></a>00080           buffer[n] = 0;
<a name="l00081"></a>00081           content_ += std::string(buffer, n);
<a name="l00082"></a>00082         } <span class="keywordflow">while</span> (n);
<a name="l00083"></a>00083 
<a name="l00084"></a>00084         status_ = pclose(stream);
<a name="l00085"></a>00085 
<a name="l00086"></a>00086         <span class="keywordflow">if</span> (status_ == 0) {
<a name="l00087"></a>00087           cache.pop_back(); <span class="comment">// implement LRU</span>
<a name="l00088"></a>00088           cache.push_front(std::make_pair(s, content_));
<a name="l00089"></a>00089         }
<a name="l00090"></a>00090       }
<a name="l00091"></a>00091 
<a name="l00092"></a>00092       idx_ = 0;
<a name="l00093"></a>00093     }
<a name="l00094"></a>00094 
<a name="l00095"></a>00095     std::string&amp; readLine(std::string&amp; r, <span class="keywordtype">bool</span> stripWhite = <span class="keyword">true</span>) {
<a name="l00096"></a>00096       r.clear();
<a name="l00097"></a>00097 
<a name="l00098"></a>00098       <span class="keywordflow">while</span> (stripWhite
<a name="l00099"></a>00099              &amp;&amp; (idx_ &lt; content_.length()) &amp;&amp; isspace(content_[idx_]))
<a name="l00100"></a>00100         ++idx_;
<a name="l00101"></a>00101 
<a name="l00102"></a>00102       <span class="keywordflow">while</span> (idx_ &lt; content_.size() &amp;&amp; content_[idx_] != <span class="charliteral">&#39;\n&#39;</span>) {
<a name="l00103"></a>00103         r += content_[idx_];
<a name="l00104"></a>00104         ++idx_;
<a name="l00105"></a>00105       }
<a name="l00106"></a>00106 
<a name="l00107"></a>00107       <span class="keywordflow">if</span> (idx_ &lt; content_.size())
<a name="l00108"></a>00108         ++idx_;
<a name="l00109"></a>00109 
<a name="l00110"></a>00110       <span class="keywordflow">return</span> r;
<a name="l00111"></a>00111     }
<a name="l00112"></a>00112 
<a name="l00113"></a>00113     <span class="keyword">const</span> std::string&amp; contents()<span class="keyword"> const </span>{
<a name="l00114"></a>00114       <span class="keywordflow">return</span> content_;
<a name="l00115"></a>00115     }
<a name="l00116"></a>00116 
<a name="l00117"></a>00117     <span class="keywordtype">bool</span> finished()<span class="keyword"> const </span>{
<a name="l00118"></a>00118       <span class="keywordflow">return</span> idx_ == content_.size();
<a name="l00119"></a>00119     }
<a name="l00120"></a>00120 
<a name="l00121"></a>00121     <span class="keywordtype">int</span> exitStatus()<span class="keyword"> const </span>{
<a name="l00122"></a>00122       <span class="keywordflow">return</span> status_;
<a name="l00123"></a>00123     }
<a name="l00124"></a>00124 
<a name="l00125"></a>00125   <span class="keyword">private</span>:
<a name="l00126"></a>00126     std::string content_;
<a name="l00127"></a>00127     <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> idx_;
<a name="l00128"></a>00128     <span class="keywordtype">int</span> status_;
<a name="l00129"></a>00129   };
<a name="l00130"></a>00130 }
<a name="l00131"></a>00131 
<a name="l00132"></a>00132 <span class="comment">/*</span>
<a name="l00133"></a>00133 <span class="comment"> * About the git files:</span>
<a name="l00134"></a>00134 <span class="comment"> * type=&quot;commit&quot;:</span>
<a name="l00135"></a>00135 <span class="comment"> *  - of a reference, like the SHA1 ID obtained from git-rev-parse of a</span>
<a name="l00136"></a>00136 <span class="comment"> *    particular revision</span>
<a name="l00137"></a>00137 <span class="comment"> *  - contains the SHA1 ID of the tree</span>
<a name="l00138"></a>00138 <span class="comment"> *</span>
<a name="l00139"></a>00139 <span class="comment"> * type=&quot;tree&quot;:</span>
<a name="l00140"></a>00140 <span class="comment"> *  100644 blob 0732f5e4def48d6d5b556fbad005adc994af1e0b    CMakeLists.txt</span>
<a name="l00141"></a>00141 <span class="comment"> *  040000 tree 037d59672d37e116f6e0013a067a7ce1f8760b7c    Wt</span>
<a name="l00142"></a>00142 <span class="comment"> *  &lt;mode&gt; SP &lt;type&gt; SP &lt;object&gt; TAB &lt;file&gt;</span>
<a name="l00143"></a>00143 <span class="comment"> *</span>
<a name="l00144"></a>00144 <span class="comment"> * type=&quot;blob&quot;: contents of a file</span>
<a name="l00145"></a>00145 <span class="comment"> */</span>
<a name="l00146"></a>00146 
<a name="l00147"></a><a class="code" href="classGit_1_1Exception.html#a5b69585257b84ccd6963468086b224d3">00147</a> <a class="code" href="classGit_1_1Exception.html#a5b69585257b84ccd6963468086b224d3" title="Constructor.">Git::Exception::Exception</a>(<span class="keyword">const</span> std::string&amp; msg)
<a name="l00148"></a>00148   : std::runtime_error(msg)
<a name="l00149"></a>00149 { }
<a name="l00150"></a>00150 
<a name="l00151"></a><a class="code" href="classGit_1_1ObjectId.html#aa39a26854b93e2a817e85fb5ae1ac001">00151</a> <a class="code" href="classGit_1_1ObjectId.html#aa39a26854b93e2a817e85fb5ae1ac001" title="Default constructor.">Git::ObjectId::ObjectId</a>()
<a name="l00152"></a>00152 { }
<a name="l00153"></a>00153 
<a name="l00154"></a><a class="code" href="classGit_1_1ObjectId.html#af52692495bb6c6fd30318e44fbf4de87">00154</a> <a class="code" href="classGit_1_1ObjectId.html#aa39a26854b93e2a817e85fb5ae1ac001" title="Default constructor.">Git::ObjectId::ObjectId</a>(<span class="keyword">const</span> std::string&amp; <span class="keywordtype">id</span>)
<a name="l00155"></a>00155 {
<a name="l00156"></a>00156   <span class="keywordflow">if</span> (<span class="keywordtype">id</span>.length() != 40)
<a name="l00157"></a>00157     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Git::Exception</a>(<span class="stringliteral">&quot;Git: not a valid SHA1 id: &quot;</span> + <span class="keywordtype">id</span>);
<a name="l00158"></a>00158 
<a name="l00159"></a>00159   <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; 20; ++i)
<a name="l00160"></a>00160     (*<span class="keyword">this</span>)[i] = fromHex(<span class="keywordtype">id</span>[2 * i], <span class="keywordtype">id</span>[2 * i + 1]);
<a name="l00161"></a>00161 }
<a name="l00162"></a>00162 
<a name="l00163"></a><a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0">00163</a> std::string <a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0" title="Print as a 40-digit hexadecimal number.">Git::ObjectId::toString</a>()<span class="keyword"> const</span>
<a name="l00164"></a>00164 <span class="keyword"></span>{
<a name="l00165"></a>00165   std::string result(40, <span class="charliteral">&#39;-&#39;</span>);
<a name="l00166"></a>00166 
<a name="l00167"></a>00167   <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; 20; ++i)
<a name="l00168"></a>00168     toHex((*<span class="keyword">this</span>)[i], result[2 * i], result[2 * i + 1]);
<a name="l00169"></a>00169 
<a name="l00170"></a>00170   <span class="keywordflow">return</span> result;
<a name="l00171"></a>00171 }
<a name="l00172"></a>00172 
<a name="l00173"></a><a class="code" href="structGit_1_1Object.html#a1b554a7bec6c5b475324c0bb129875c0">00173</a> <a class="code" href="structGit_1_1Object.html#a1b554a7bec6c5b475324c0bb129875c0">Git::Object::Object</a>(<span class="keyword">const</span> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>&amp; anId, <a class="code" href="classGit.html#ab282f46c36a47ddff9bc7be7c993041a" title="Git object type.">ObjectType</a> aType)
<a name="l00174"></a>00174   : <a class="codeRef" doxygen="wt.tags:../../reference/html" href="../../reference/html/group__dbo.html#ga42c50bd3bfc38ad8c810b30b279b0ba6">id</a>(anId),
<a name="l00175"></a>00175     type(aType)
<a name="l00176"></a>00176 { }
<a name="l00177"></a>00177 
<a name="l00178"></a><a class="code" href="classGit.html#afdc93b8c52e55a1977c9333d71561cd5">00178</a> <a class="code" href="classGit.html#afdc93b8c52e55a1977c9333d71561cd5" title="Constructor.">Git::Git</a>()
<a name="l00179"></a>00179   : <a class="code" href="classGit.html#a0097b8efc1e8530cc11133622684e9ef" title="A small LRU cache that stores results of git commands.">cache_</a>(3) <span class="comment">// cache of 3 git results</span>
<a name="l00180"></a>00180 { }
<a name="l00181"></a>00181 
<a name="l00182"></a><a class="code" href="classGit.html#ab21f8d442557b07321a274b5e976f1ac">00182</a> <span class="keywordtype">void</span> <a class="code" href="classGit.html#ab21f8d442557b07321a274b5e976f1ac" title="Set the git repository path.">Git::setRepositoryPath</a>(<span class="keyword">const</span> std::string&amp; repositoryPath)
<a name="l00183"></a>00183 { 
<a name="l00184"></a>00184   <a class="code" href="classGit.html#a5f478cb0fb21487e60f87b93d4277440" title="The path to the repository.">repository_</a> = repositoryPath;
<a name="l00185"></a>00185   <a class="code" href="classGit.html#a04766dfcc9edcae7c12e6ff373176c7c" title="Checks the repository.">checkRepository</a>();
<a name="l00186"></a>00186 }
<a name="l00187"></a>00187 
<a name="l00188"></a><a class="code" href="classGit.html#a521bba51875ea14c9e39a14fcde01e04">00188</a> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">Git::ObjectId</a> <a class="code" href="classGit.html#a521bba51875ea14c9e39a14fcde01e04" title="Get the tree for a particular revision.">Git::getCommitTree</a>(<span class="keyword">const</span> std::string&amp; revision)<span class="keyword"> const</span>
<a name="l00189"></a>00189 <span class="keyword"></span>{
<a name="l00190"></a>00190   <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">Git::ObjectId</a> commit = <a class="code" href="classGit.html#ab432b071c7d22343a7ac136c35230251" title="Get the commit for a particular revision.">getCommit</a>(revision);
<a name="l00191"></a>00191   <span class="keywordflow">return</span> <a class="code" href="classGit.html#a62bf9de2511aeb8e036a339ec8be8423" title="Get the tree for a particular commit.">getTreeFromCommit</a>(commit);
<a name="l00192"></a>00192 }
<a name="l00193"></a>00193 
<a name="l00194"></a><a class="code" href="classGit.html#acf2d699d9f9bdfb42afb0f61e85b2f88">00194</a> std::string <a class="code" href="classGit.html#acf2d699d9f9bdfb42afb0f61e85b2f88" title="Return the raw contents of a git object.">Git::catFile</a>(<span class="keyword">const</span> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>&amp; <span class="keywordtype">id</span>)<span class="keyword"> const</span>
<a name="l00195"></a>00195 <span class="keyword"></span>{
<a name="l00196"></a>00196   std::string result;
<a name="l00197"></a>00197 
<a name="l00198"></a>00198   <span class="keywordflow">if</span> (!<a class="code" href="classGit.html#a3dccd1727396de007ec5b43e96930a1b" title="Returns a line identified by a tag from the output of a git command.">getCmdResult</a>(<span class="stringliteral">&quot;cat-file -p &quot;</span> + <span class="keywordtype">id</span>.toString(), result, -1))
<a name="l00199"></a>00199     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git: could not cat &#39;&quot;</span> + <span class="keywordtype">id</span>.toString() + <span class="stringliteral">&quot;&#39;&quot;</span>);
<a name="l00200"></a>00200 
<a name="l00201"></a>00201   <span class="keywordflow">return</span> result;
<a name="l00202"></a>00202 }
<a name="l00203"></a>00203 
<a name="l00204"></a><a class="code" href="classGit.html#ab432b071c7d22343a7ac136c35230251">00204</a> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">Git::ObjectId</a> <a class="code" href="classGit.html#ab432b071c7d22343a7ac136c35230251" title="Get the commit for a particular revision.">Git::getCommit</a>(<span class="keyword">const</span> std::string&amp; revision)<span class="keyword"> const</span>
<a name="l00205"></a>00205 <span class="keyword"></span>{
<a name="l00206"></a>00206   std::string sha1Commit;
<a name="l00207"></a>00207   <a class="code" href="classGit.html#a3dccd1727396de007ec5b43e96930a1b" title="Returns a line identified by a tag from the output of a git command.">getCmdResult</a>(<span class="stringliteral">&quot;rev-parse &quot;</span> + revision, sha1Commit, 0);
<a name="l00208"></a>00208   <span class="keywordflow">return</span> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>(sha1Commit);
<a name="l00209"></a>00209 }
<a name="l00210"></a>00210 
<a name="l00211"></a><a class="code" href="classGit.html#a62bf9de2511aeb8e036a339ec8be8423">00211</a> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">Git::ObjectId</a> <a class="code" href="classGit.html#a62bf9de2511aeb8e036a339ec8be8423" title="Get the tree for a particular commit.">Git::getTreeFromCommit</a>(<span class="keyword">const</span> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>&amp; commit)<span class="keyword"> const</span>
<a name="l00212"></a>00212 <span class="keyword"></span>{
<a name="l00213"></a>00213   std::string treeLine;
<a name="l00214"></a>00214   <span class="keywordflow">if</span> (!<a class="code" href="classGit.html#a3dccd1727396de007ec5b43e96930a1b" title="Returns a line identified by a tag from the output of a git command.">getCmdResult</a>(<span class="stringliteral">&quot;cat-file -p &quot;</span> + commit.<a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0" title="Print as a 40-digit hexadecimal number.">toString</a>(), treeLine, <span class="stringliteral">&quot;tree&quot;</span>))
<a name="l00215"></a>00215     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git: could not parse tree from commit &#39;&quot;</span> 
<a name="l00216"></a>00216                     + commit.<a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0" title="Print as a 40-digit hexadecimal number.">toString</a>() + <span class="stringliteral">&quot;&#39;&quot;</span>);
<a name="l00217"></a>00217 
<a name="l00218"></a>00218   std::vector&lt;std::string&gt; v;
<a name="l00219"></a>00219   boost::split(v, treeLine, boost::is_any_of(<span class="stringliteral">&quot; &quot;</span>));
<a name="l00220"></a>00220   <span class="keywordflow">if</span> (v.size() != 2)
<a name="l00221"></a>00221     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git: could not parse tree from commit &#39;&quot;</span>
<a name="l00222"></a>00222                     + commit.<a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0" title="Print as a 40-digit hexadecimal number.">toString</a>() + <span class="stringliteral">&quot;&#39;: &#39;&quot;</span> + treeLine + <span class="stringliteral">&quot;&#39;&quot;</span>);
<a name="l00223"></a>00223   <span class="keywordflow">return</span> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>(v[1]);
<a name="l00224"></a>00224 }
<a name="l00225"></a>00225 
<a name="l00226"></a><a class="code" href="classGit.html#a910f3a6123b494897cdedf7ba4ef648b">00226</a> <a class="code" href="structGit_1_1Object.html" title="Git object.">Git::Object</a> <a class="code" href="classGit.html#a910f3a6123b494897cdedf7ba4ef648b" title="Get some info on a tree object.">Git::treeGetObject</a>(<span class="keyword">const</span> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>&amp; tree, <span class="keywordtype">int</span> index)<span class="keyword"> const</span>
<a name="l00227"></a>00227 <span class="keyword"></span>{
<a name="l00228"></a>00228   std::string objectLine;
<a name="l00229"></a>00229   <span class="keywordflow">if</span> (!<a class="code" href="classGit.html#a3dccd1727396de007ec5b43e96930a1b" title="Returns a line identified by a tag from the output of a git command.">getCmdResult</a>(<span class="stringliteral">&quot;cat-file -p &quot;</span> + tree.<a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0" title="Print as a 40-digit hexadecimal number.">toString</a>(), objectLine, index))
<a name="l00230"></a>00230     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git: could not read object %&quot;</span>
<a name="l00231"></a>00231                     + boost::lexical_cast&lt;std::string&gt;(index)
<a name="l00232"></a>00232                     + <span class="stringliteral">&quot;  from tree &quot;</span> + tree.<a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0" title="Print as a 40-digit hexadecimal number.">toString</a>());
<a name="l00233"></a>00233   <span class="keywordflow">else</span> {
<a name="l00234"></a>00234     std::vector&lt;std::string&gt; v1, v2;
<a name="l00235"></a>00235     boost::split(v1, objectLine, boost::is_any_of(<span class="stringliteral">&quot;\t&quot;</span>));
<a name="l00236"></a>00236     <span class="keywordflow">if</span> (v1.size() != 2)
<a name="l00237"></a>00237       <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git: could not parse tree object line: &#39;&quot;</span>
<a name="l00238"></a>00238                       + objectLine + <span class="stringliteral">&quot;&#39;&quot;</span>);
<a name="l00239"></a>00239     boost::split(v2, v1[0], boost::is_any_of(<span class="stringliteral">&quot; &quot;</span>));
<a name="l00240"></a>00240     <span class="keywordflow">if</span> (v2.size() != 3)
<a name="l00241"></a>00241       <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git: could not parse tree object line: &#39;&quot;</span>
<a name="l00242"></a>00242                       + objectLine + <span class="stringliteral">&quot;&#39;&quot;</span>);
<a name="l00243"></a>00243  
<a name="l00244"></a>00244     <span class="keyword">const</span> std::string&amp; stype = v2[1];
<a name="l00245"></a>00245     <a class="code" href="classGit.html#ab282f46c36a47ddff9bc7be7c993041a" title="Git object type.">ObjectType</a> type;
<a name="l00246"></a>00246     <span class="keywordflow">if</span> (stype == <span class="stringliteral">&quot;tree&quot;</span>)
<a name="l00247"></a>00247       type = <a class="code" href="classGit.html#ab282f46c36a47ddff9bc7be7c993041aae94d3a7ff6594f6b3b0dc121fbd01564">Tree</a>;
<a name="l00248"></a>00248     <span class="keywordflow">else</span> <span class="keywordflow">if</span> (stype == <span class="stringliteral">&quot;blob&quot;</span>)
<a name="l00249"></a>00249       type = <a class="code" href="classGit.html#ab282f46c36a47ddff9bc7be7c993041aa64c3a7b641cdc0cb2c4203fc0bef1a4a">Blob</a>;
<a name="l00250"></a>00250     <span class="keywordflow">else</span>
<a name="l00251"></a>00251       <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git: Unknown type: &quot;</span> + stype);
<a name="l00252"></a>00252 
<a name="l00253"></a>00253     <a class="code" href="structGit_1_1Object.html" title="Git object.">Git::Object</a> result(<a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>(v2[2]), type);
<a name="l00254"></a>00254     result.<a class="code" href="structGit_1_1Object.html#adb8686852d572aef8cdb80291e2f81ca">name</a> = v1[1];
<a name="l00255"></a>00255 
<a name="l00256"></a>00256     <span class="keywordflow">return</span> result;
<a name="l00257"></a>00257   }
<a name="l00258"></a>00258 }
<a name="l00259"></a>00259 
<a name="l00260"></a><a class="code" href="classGit.html#abe86381afbbab0adb0680ae268752f1f">00260</a> <span class="keywordtype">int</span> <a class="code" href="classGit.html#abe86381afbbab0adb0680ae268752f1f" title="Return the number of objects inside a tree object.">Git::treeSize</a>(<span class="keyword">const</span> <a class="code" href="classGit_1_1ObjectId.html" title="Git object Id.">ObjectId</a>&amp; tree)<span class="keyword"> const</span>
<a name="l00261"></a>00261 <span class="keyword"></span>{
<a name="l00262"></a>00262   <span class="keywordflow">return</span> <a class="code" href="classGit.html#a451e493481c2b397497107a6e60a6360" title="Returns the number of lines in the output of a git command.">getCmdResultLineCount</a>(<span class="stringliteral">&quot;cat-file -p &quot;</span> + tree.<a class="code" href="classGit_1_1ObjectId.html#a02cf06424f8a867197e28a4163cf8bd0" title="Print as a 40-digit hexadecimal number.">toString</a>());
<a name="l00263"></a>00263 }
<a name="l00264"></a>00264 
<a name="l00265"></a><a class="code" href="classGit.html#a5c0f41b8540cae5aef55343dcbbbf8b6">00265</a> <span class="keywordtype">bool</span> <a class="code" href="classGit.html#a3dccd1727396de007ec5b43e96930a1b" title="Returns a line identified by a tag from the output of a git command.">Git::getCmdResult</a>(<span class="keyword">const</span> std::string&amp; gitCmd, std::string&amp; result,
<a name="l00266"></a>00266                        <span class="keywordtype">int</span> index)<span class="keyword"> const</span>
<a name="l00267"></a>00267 <span class="keyword"></span>{
<a name="l00268"></a>00268   POpenWrapper p(<span class="stringliteral">&quot;git --git-dir=&quot;</span> + <a class="code" href="classGit.html#a5f478cb0fb21487e60f87b93d4277440" title="The path to the repository.">repository_</a> + <span class="stringliteral">&quot; &quot;</span> + gitCmd, <a class="code" href="classGit.html#a0097b8efc1e8530cc11133622684e9ef" title="A small LRU cache that stores results of git commands.">cache_</a>);
<a name="l00269"></a>00269 
<a name="l00270"></a>00270   <span class="keywordflow">if</span> (p.exitStatus() != 0)
<a name="l00271"></a>00271     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git error: &quot;</span> + p.readLine(result));
<a name="l00272"></a>00272 
<a name="l00273"></a>00273   <span class="keywordflow">if</span> (index == -1) {
<a name="l00274"></a>00274     result = p.contents();
<a name="l00275"></a>00275     <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00276"></a>00276   } <span class="keywordflow">else</span>
<a name="l00277"></a>00277     p.readLine(result);
<a name="l00278"></a>00278 
<a name="l00279"></a>00279   <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; index; ++i) {
<a name="l00280"></a>00280     <span class="keywordflow">if</span> (p.finished())
<a name="l00281"></a>00281       <span class="keywordflow">return</span> <span class="keyword">false</span>;
<a name="l00282"></a>00282     p.readLine(result);
<a name="l00283"></a>00283   }
<a name="l00284"></a>00284 
<a name="l00285"></a>00285   <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00286"></a>00286 }
<a name="l00287"></a>00287 
<a name="l00288"></a><a class="code" href="classGit.html#a3dccd1727396de007ec5b43e96930a1b">00288</a> <span class="keywordtype">bool</span> <a class="code" href="classGit.html#a3dccd1727396de007ec5b43e96930a1b" title="Returns a line identified by a tag from the output of a git command.">Git::getCmdResult</a>(<span class="keyword">const</span> std::string&amp; gitCmd, std::string&amp; result,
<a name="l00289"></a>00289                        <span class="keyword">const</span> std::string&amp; tag)<span class="keyword"> const</span>
<a name="l00290"></a>00290 <span class="keyword"></span>{
<a name="l00291"></a>00291   POpenWrapper p(<span class="stringliteral">&quot;git --git-dir=&quot;</span> + <a class="code" href="classGit.html#a5f478cb0fb21487e60f87b93d4277440" title="The path to the repository.">repository_</a> + <span class="stringliteral">&quot; &quot;</span> + gitCmd, <a class="code" href="classGit.html#a0097b8efc1e8530cc11133622684e9ef" title="A small LRU cache that stores results of git commands.">cache_</a>);
<a name="l00292"></a>00292 
<a name="l00293"></a>00293   <span class="keywordflow">if</span> (p.exitStatus() != 0)
<a name="l00294"></a>00294     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git error: &quot;</span> + p.readLine(result));
<a name="l00295"></a>00295 
<a name="l00296"></a>00296   <span class="keywordflow">while</span> (!p.finished()) {
<a name="l00297"></a>00297     p.readLine(result);
<a name="l00298"></a>00298     <span class="keywordflow">if</span> (boost::starts_with(result, tag))
<a name="l00299"></a>00299       <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00300"></a>00300   }
<a name="l00301"></a>00301 
<a name="l00302"></a>00302   <span class="keywordflow">return</span> <span class="keyword">false</span>;
<a name="l00303"></a>00303 }
<a name="l00304"></a>00304 
<a name="l00305"></a><a class="code" href="classGit.html#a451e493481c2b397497107a6e60a6360">00305</a> <span class="keywordtype">int</span> <a class="code" href="classGit.html#a451e493481c2b397497107a6e60a6360" title="Returns the number of lines in the output of a git command.">Git::getCmdResultLineCount</a>(<span class="keyword">const</span> std::string&amp; gitCmd)<span class="keyword"> const</span>
<a name="l00306"></a>00306 <span class="keyword"></span>{
<a name="l00307"></a>00307   POpenWrapper p(<span class="stringliteral">&quot;git --git-dir=&quot;</span> + <a class="code" href="classGit.html#a5f478cb0fb21487e60f87b93d4277440" title="The path to the repository.">repository_</a> + <span class="stringliteral">&quot; &quot;</span> + gitCmd, <a class="code" href="classGit.html#a0097b8efc1e8530cc11133622684e9ef" title="A small LRU cache that stores results of git commands.">cache_</a>);
<a name="l00308"></a>00308 
<a name="l00309"></a>00309   std::string r;
<a name="l00310"></a>00310 
<a name="l00311"></a>00311   <span class="keywordflow">if</span> (p.exitStatus() != 0)
<a name="l00312"></a>00312     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git error: &quot;</span> + p.readLine(r));
<a name="l00313"></a>00313 
<a name="l00314"></a>00314   <span class="keywordtype">int</span> result = 0;
<a name="l00315"></a>00315   <span class="keywordflow">while</span> (!p.finished()) {
<a name="l00316"></a>00316     p.readLine(r);
<a name="l00317"></a>00317     ++result;
<a name="l00318"></a>00318   }
<a name="l00319"></a>00319 
<a name="l00320"></a>00320   <span class="keywordflow">return</span> result;
<a name="l00321"></a>00321 }
<a name="l00322"></a>00322 
<a name="l00323"></a><a class="code" href="classGit.html#a04766dfcc9edcae7c12e6ff373176c7c">00323</a> <span class="keywordtype">void</span> <a class="code" href="classGit.html#a04766dfcc9edcae7c12e6ff373176c7c" title="Checks the repository.">Git::checkRepository</a>()<span class="keyword"> const</span>
<a name="l00324"></a>00324 <span class="keyword"></span>{
<a name="l00325"></a>00325   POpenWrapper p(<span class="stringliteral">&quot;git --git-dir=&quot;</span> + <a class="code" href="classGit.html#a5f478cb0fb21487e60f87b93d4277440" title="The path to the repository.">repository_</a> + <span class="stringliteral">&quot; branch&quot;</span>, <a class="code" href="classGit.html#a0097b8efc1e8530cc11133622684e9ef" title="A small LRU cache that stores results of git commands.">cache_</a>);
<a name="l00326"></a>00326 
<a name="l00327"></a>00327   std::string r;
<a name="l00328"></a>00328   <span class="keywordflow">if</span> (p.exitStatus() != 0)
<a name="l00329"></a>00329     <span class="keywordflow">throw</span> <a class="code" href="classGit_1_1Exception.html" title="Exception class.">Exception</a>(<span class="stringliteral">&quot;Git error: &quot;</span> + p.readLine(r));
<a name="l00330"></a>00330 }
</pre></div></div>
</div>
<hr size="1"><address style="text-align: right; margin: 3px"><small>
Generated on Thu Nov 1 2012 for <a href="http://www.webtoolkit.eu/wt">the
C++ Web Toolkit (Wt)</a> by&nbsp;<a
href="http://www.doxygen.org/index.html"><img src="doxygen.png"
alt="doxygen" border="0" style="vertical-align: middle; display:
inline-block; height: 2em"></a> 1.7.5.1</small></address>
</body>
</html>