aboutsummaryrefslogtreecommitdiff
path: root/lib/git/tag.py
blob: f7bc140e4625a69df3a89604088619d70b0d49a6 (plain)
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
# tag.py
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php

from commit import Commit

class Tag(object):
    def __init__(self, name, commit):
        """
        Instantiate a new Tag

        ``name``
            is the name of the head

        ``commit``
            is the Commit that the head points to

        Returns
            ``git.Tag``
        """
        self.name = name
        self.commit = commit

    @classmethod
    def find_all(cls, repo, **kwargs):
        """
        Find all Tags

        ``repo``
            is the Repo

        ``kwargs``
            is a dict of options

        Returns
            ``git.Tag[]``
        """
        options = {'sort': "committerdate",
                  'format': "%(refname)%00%(objectname)"}
        options.update(**kwargs)

        output = repo.git.for_each_ref("refs/tags", **options)
        return cls.list_from_string(repo, output)

    @classmethod
    def list_from_string(cls, repo, text):
        """
        Parse out tag information into an array of baked Tag objects

        ``repo``
            is the Repo

        ``text``
            is the text output from the git command

        Returns
            ``git.Tag[]``
        """
        tags = []
        for line in text.splitlines():
            tags.append(cls.from_string(repo, line))
        return tags

    @classmethod
    def from_string(cls, repo, line):
        """
        Create a new Tag instance from the given string.

        ``repo``
            is the Repo

        ``line``
            is the formatted tag information

        Format
            name: [a-zA-Z_/]+
            <null byte>
            id: [0-9A-Fa-f]{40}

        Returns
            ``git.Tag``
        """
        full_name, ids = line.split("\x00")
        name = full_name.split("/")[-1]
        commit = Commit(repo, id=ids)
        return Tag(name, commit)

    def __repr__(self):
        return '<git.Tag "%s">' % self.name