2 * Copyright (C) 2009, Henon <meinrad.recheis@gmail.com>
6 * Redistribution and use in source and binary forms, with or
7 * without modification, are permitted provided that the following
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * - Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * - Neither the name of the Git Development Community nor the
19 * names of its contributors may be used to endorse or promote
20 * products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
24 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
25 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
33 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
35 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 using System
.Collections
.Generic
;
43 using ObjectId
= GitSharp
.Core
.ObjectId
;
44 using CoreRef
= GitSharp
.Core
.Ref
;
45 using CoreCommit
= GitSharp
.Core
.Commit
;
46 using CoreTree
= GitSharp
.Core
.Tree
;
47 using CoreTag
= GitSharp
.Core
.Tag
;
52 /// Represents a git tag.
54 public class Tag
: AbstractObject
, IReferenceObject
57 public Tag(Repository repo
, string name
)
63 private string _name
; // <--- need the name for resolving purposes only. once the internal tag is resolved, this field is not used any more.
65 internal Tag(Repository repo
, CoreRef
@ref)
66 : base(repo
, @ref.ObjectId
)
71 internal Tag(Repository repo
, CoreTag internal_tag
)
72 : base(repo
, internal_tag
.Id
)
74 _internal_tag
= internal_tag
;
77 internal Tag(Repository repo
, ObjectId id
, string name
)
83 private CoreTag _internal_tag
;
85 private CoreTag InternalTag
89 if (_internal_tag
== null)
92 _internal_tag
= _repo
._internal_repo
.MapTag(_name
, _id
);
96 // the object is invalid. however, we can not allow exceptions here because they would not be expected.
102 public override bool IsTag
106 if (InternalTag
== null)
119 if (InternalTag
== null)
121 return InternalTag
.TagName
;
126 /// The object that has been tagged.
128 public AbstractObject Target
132 if (InternalTag
== null)
134 if (InternalTag
.TagId
== InternalTag
.Id
) // <--- it can happen!
136 return AbstractObject
.Wrap(_repo
, InternalTag
.Id
);
140 public override string ToString()
142 return "Tag[" + ShortHash
+ "]";