blob: 9bd7ae65bbf13d0bdab43ac9c1fa7ffd453850d5 [file] [log] [blame]
mbligh3e0eaf12007-12-04 22:45:03 +00001"""
2This module defines the GitKernel class
Eric Li25fc6d12010-09-28 17:22:51 -07003
4@author: Ryan Harper (ryanh@us.ibm.com)
5@copyright: IBM 2007
mbligh3e0eaf12007-12-04 22:45:03 +00006"""
7
Eric Li25fc6d12010-09-28 17:22:51 -07008import os, logging
mbligh313f12c2008-05-15 23:33:50 +00009import git, source_kernel
mbligh3e0eaf12007-12-04 22:45:03 +000010
11
Eric Li25fc6d12010-09-28 17:22:51 -070012class GitKernel(git.InstallableGitRepo):
jadmanski0afbb632008-06-06 21:10:57 +000013 """
Eric Li25fc6d12010-09-28 17:22:51 -070014 This class represents an installable git kernel repo.
mbligh3e0eaf12007-12-04 22:45:03 +000015
jadmanski0afbb632008-06-06 21:10:57 +000016 It is used to pull down a local copy of a git repo, check if the local repo
17 is up-to-date, if not update and then build the kernel from the git repo.
jadmanski0afbb632008-06-06 21:10:57 +000018 """
19 def __init__(self, repodir, giturl, weburl):
Eric Li25fc6d12010-09-28 17:22:51 -070020 super(GitKernel, self).__init__(repodir, giturl, weburl)
21 self._patches = []
22 self._config = None
23 self._build = None
24 self._branch = None
25 self._revision = None
mbligh3e0eaf12007-12-04 22:45:03 +000026
27
jadmanski0afbb632008-06-06 21:10:57 +000028 def configure(self, config):
Eric Li25fc6d12010-09-28 17:22:51 -070029 self._config = config
mbligh3e0eaf12007-12-04 22:45:03 +000030
31
jadmanski0afbb632008-06-06 21:10:57 +000032 def patch(self, patch):
Eric Li25fc6d12010-09-28 17:22:51 -070033 self._patches.append(patch)
mbligh3e0eaf12007-12-04 22:45:03 +000034
35
Eric Li25fc6d12010-09-28 17:22:51 -070036 def checkout(self, revision, local=None):
37 """
38 Checkout the commit id, branch, or tag.
39
40 @param revision: Name of the git remote branch, revision or tag
41 @param local: Name of the local branch, implies -b
42 """
43 logging.info('Checking out %s', revision)
44 super(GitKernel, self).checkout(revision)
45 self._revision = super(GitKernel, self).get_revision()
46 self._branch = super(GitKernel, self).get_branch()
47 logging.info('Checked out %s on branch %s', self._revision,
48 self._branch)
49
50
51 def show_branch(self):
52 """
53 Print the current local branch name.
54 """
55 self._branch = super(GitKernel, self).get_branch()
56 logging.info(self._branch)
57
58
59 def show_branches(self, all=True):
60 """
61 Print the local and remote branches.
62
63 @param all: Whether to show all branches (True) or only local branches
64 (False).
65 """
66 self._branch = super(GitKernel, self).get_branch()
67 logging.info(super(GitKernel, self).get_branch(all=all))
68
69
70 def show_revision(self):
71 """
72 Show the current git revision.
73 """
74 self._revision = super(GitKernel, self).get_revision()
75 logging.info(self._revision)
76
77
78 def install(self, host, build=True, builddir=None, revision=None):
79 """
80 Install the git tree in a host.
81
82 @param host: Host object
83 @param build: Whether to build the source tree
84 @param builddir: Specify a build dir. If no build dir is specified,
85 the job temporary directory will be used, so the build won't
86 be persistent.
87 @param revision: Desired commit hash. If ommited, will build from HEAD
88 of the branch.
89 """
90 if revision:
91 self.checkout(revision)
92 self._revision = super(GitKernel, self).get_revision()
93 logging.info('Checked out revision: %s', self._revision)
94
jadmanski0afbb632008-06-06 21:10:57 +000095 if not builddir:
Eric Li25fc6d12010-09-28 17:22:51 -070096 self._build = os.path.join(host.get_tmp_dir(), "build")
97 logging.warning('Builddir %s is not persistent (it will be erased '
98 'in future jobs)', self._build)
mbligh3e0eaf12007-12-04 22:45:03 +000099
jadmanski0afbb632008-06-06 21:10:57 +0000100 # push source to host for install
Eric Li25fc6d12010-09-28 17:22:51 -0700101 logging.info('Pushing %s to host', self.source_material)
102 host.send_file(self.source_material, self._build)
mbligh3e0eaf12007-12-04 22:45:03 +0000103
jadmanski0afbb632008-06-06 21:10:57 +0000104 # use a source_kernel to configure, patch, build and install.
Eric Li25fc6d12010-09-28 17:22:51 -0700105 sk = source_kernel.SourceKernel(self._build)
mbligh3e0eaf12007-12-04 22:45:03 +0000106
jadmanski0afbb632008-06-06 21:10:57 +0000107 if build:
108 # apply patches
Eric Li25fc6d12010-09-28 17:22:51 -0700109 for p in self._patches:
jadmanski0afbb632008-06-06 21:10:57 +0000110 sk.patch(p)
mbligh3e0eaf12007-12-04 22:45:03 +0000111
jadmanski0afbb632008-06-06 21:10:57 +0000112 # configure
Eric Li25fc6d12010-09-28 17:22:51 -0700113 sk.configure(self._config)
mbligh3e0eaf12007-12-04 22:45:03 +0000114
jadmanski0afbb632008-06-06 21:10:57 +0000115 # build
116 sk.build(host)
117
118 # install
119 sk.install(host)