gitg/libgitg/gitg-repository.vala

97 lines
1.7 KiB
Vala
Raw Normal View History

2012-04-14 11:46:39 +00:00
namespace Gitg
{
public class Repository : Ggit.Repository
{
2012-04-22 13:12:00 +00:00
private HashTable<Ggit.OId, SList<Gitg.Ref>> d_refs;
2012-04-14 11:46:39 +00:00
public Repository(File location, File? workdir) throws Error
{
Object(location: location,
workdir: workdir);
((Initable)this).init(null);
}
2012-04-22 13:12:00 +00:00
private void ensure_refs()
{
if (d_refs != null)
{
return;
}
d_refs = new HashTable<Ggit.OId, SList<Gitg.Ref>>(Ggit.OId.hash,
Ggit.OId.equal);
try
{
references_foreach(Ggit.RefType.LISTALL, (name) => {
Gitg.Ref? r;
try
{
r = lookup_reference(name);
}
catch { return 0; }
if (r != null)
{
Ggit.OId? id = r.get_id();
if (id != null)
{
unowned SList<Gitg.Ref> refs;
if (d_refs.lookup_extended(id, null, out refs))
{
refs.append(r);
}
else
{
SList<Gitg.Ref> nrefs = new SList<Gitg.Ref>();
nrefs.append(r);
d_refs.insert(id, (owned)nrefs);
}
}
}
return 0;
});
}
catch {}
}
public unowned SList<Gitg.Ref> refs_for_id(Ggit.OId id)
{
ensure_refs();
return d_refs.lookup(id);
}
2012-04-14 11:46:39 +00:00
// Wrappers for Gitg.Ref
public new Ref lookup_reference(string name) throws Error
{
return base.lookup_reference(name) as Ref;
}
public new Ref create_reference(string name, Ggit.OId oid) throws Error
{
return base.create_reference(name, oid) as Ref;
}
public new Ref create_symbolic_reference(string name, string target) throws Error
{
return base.create_symbolic_reference(name, target) as Ref;
}
2012-04-22 13:13:24 +00:00
public new Ref get_head() throws Error
2012-04-14 11:46:39 +00:00
{
return base.get_head() as Ref;
}
}
}
// ex:set ts=4 noet