1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/*
* This file is part of gitg
*
* Copyright (C) 2012 - Jesse van den Kieboom
*
* gitg is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* gitg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gitg. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Gitg
{
public class Commit : Ggit.Commit
{
public LaneTag tag { get; set; }
private uint d_mylane;
private SList<Lane> d_lanes;
public unowned SList<Lane> get_lanes()
{
return d_lanes;
}
public uint mylane
{
get { return d_mylane; }
set
{
d_mylane = value;
update_lane_tag();
}
}
public Lane lane
{
get { return d_lanes.nth_data(d_mylane); }
}
public unowned SList<Lane> insert_lane(Lane lane, int idx)
{
d_lanes.insert(lane, idx);
return d_lanes;
}
public unowned SList<Lane> remove_lane(Lane lane)
{
d_lanes.remove(lane);
return d_lanes;
}
private void update_lane_tag()
{
unowned Lane? lane = d_lanes.nth_data(d_mylane);
if (lane == null)
{
return;
}
lane.tag &= ~(LaneTag.SIGN_STASH |
LaneTag.SIGN_STAGED |
LaneTag.SIGN_UNSTAGED) | tag;
}
public void update_lanes(owned SList<Lane> lanes, int mylane)
{
d_lanes = (owned)lanes;
if (mylane >= 0)
{
d_mylane = (ushort)mylane;
}
update_lane_tag();
}
public string format_patch_name
{
owned get
{
return get_subject().replace(" ", "-").replace("/", "-");
}
}
public string committer_date_for_display
{
owned get
{
var dt = get_committer().get_time();
return (new Date.for_date_time(dt)).for_display();
}
}
public string author_date_for_display
{
owned get
{
var dt = get_author().get_time();
return (new Date.for_date_time(dt)).for_display();
}
}
public Ggit.Diff get_diff(Ggit.DiffOptions? options, int parent)
{
Ggit.Diff? diff = null;
var repo = get_owner();
try
{
var parents = get_parents();
if (parents.size == 0)
{
// No parents, initial commit?
diff = new Ggit.Diff.tree_to_tree(repo,
null,
get_tree(),
options);
}
else
{
if (parent >= parents.size)
{
parent = (int)parents.size - 1;
}
diff = new Ggit.Diff.tree_to_tree(repo,
parents[parent].get_tree(),
get_tree(),
options);
}
}
catch (Error e)
{
stderr.printf("Error when getting diff: %s\n", e.message);
}
if (diff != null)
{
try
{
diff.find_similar(null);
} catch {}
}
return diff;
}
public Ggit.Note get_note()
{
Ggit.Note note = null;
var repo = get_owner();
try
{
note = repo.read_note(null, get_id());
}
catch (Error e) {}
return note;
}
}
}
// ex:set ts=4 noet
|