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

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

# This file is part of Buildbot.  Buildbot 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, version 2. 

# 

# This program 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 

# this program; if not, write to the Free Software Foundation, Inc., 51 

# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 

# 

# Copyright Buildbot Team Members 

 

from twisted.python import log 

from twisted.internet import defer 

 

from buildbot.process import buildstep 

from buildbot.steps.source.base import Source 

from buildbot.interfaces import BuildSlaveTooOldError 

 

def isTrueOrIsExactlyZero(v): 

    # nonzero values are true... 

    if v: 

        return True 

 

    # ... and True for the number zero, but we have to 

    # explicitly guard against v==False, since 

    # isinstance(False, int) is surprisingly True 

    if isinstance(v, int) and v is not False: 

        return True 

 

    # all other false-ish values are false 

    return False 

 

git_describe_flags = [ 

    # on or off 

    ('all',         lambda v: ['--all'] if v else None), 

    ('always',      lambda v: ['--always'] if v else None), 

    ('contains',    lambda v: ['--contains'] if v else None), 

    ('debug',       lambda v: ['--debug'] if v else None), 

    ('long',        lambda v: ['--long'] if v else None), 

    ('exact-match', lambda v: ['--exact-match'] if v else None), 

    ('tags',        lambda v: ['--tags'] if v else None), 

    # string parameter 

    ('match',       lambda v: ['--match', v] if v else None), 

    # numeric parameter 

    ('abbrev',      lambda v: ['--abbrev=%s' % v] if isTrueOrIsExactlyZero(v) else None), 

    ('candidates',  lambda v: ['--candidates=%s' % v] if isTrueOrIsExactlyZero(v) else None), 

    # optional string parameter 

    ('dirty',       lambda v: ['--dirty'] if (v is True or v=='') else None), 

    ('dirty',       lambda v: ['--dirty=%s' % v] if (v and v is not True) else None), 

] 

 

class Git(Source): 

    """ Class for Git with all the smarts """ 

    name='git' 

    renderables = [ "repourl"] 

 

    def __init__(self, repourl=None, branch='HEAD', mode='incremental', 

                 method=None, submodules=False, shallow=False, progress=False, 

                 retryFetch=False, clobberOnFailure=False, getDescription=False, 

                 **kwargs): 

        """ 

        @type  repourl: string 

        @param repourl: the URL which points at the git repository 

 

        @type  branch: string 

        @param branch: The branch or tag to check out by default. If 

                       a build specifies a different branch, it will 

                       be used instead of this. 

 

        @type  submodules: boolean 

        @param submodules: Whether or not to update (and initialize) 

                       git submodules. 

 

        @type  mode: string 

        @param mode: Type of checkout. Described in docs. 

 

        @type  method: string 

        @param method: Full builds can be done is different ways. This parameter 

                       specifies which method to use. 

 

        @type  progress: boolean 

        @param progress: Pass the --progress option when fetching. This 

                         can solve long fetches getting killed due to 

                         lack of output, but requires Git 1.7.2+. 

        @type  shallow: boolean 

        @param shallow: Use a shallow or clone, if possible 

 

        @type  retryFetch: boolean 

        @param retryFetch: Retry fetching before failing source checkout. 

         

        @type  getDescription: boolean or dict 

        @param getDescription: Use 'git describe' to describe the fetched revision 

        """ 

        if not getDescription and not isinstance(getDescription, dict): 

            getDescription = False 

 

        self.branch    = branch 

        self.method    = method 

        self.prog  = progress 

        self.repourl   = repourl 

        self.retryFetch = retryFetch 

        self.submodules = submodules 

        self.shallow   = shallow 

        self.fetchcount = 0 

        self.clobberOnFailure = clobberOnFailure 

        self.mode = mode 

        self.getDescription = getDescription 

        Source.__init__(self, **kwargs) 

 

        assert self.mode in ['incremental', 'full'] 

        assert self.repourl is not None 

        if self.mode == 'full': 

            assert self.method in ['clean', 'fresh', 'clobber', 'copy', None] 

        assert isinstance(self.getDescription, (bool, dict)) 

 

    def startVC(self, branch, revision, patch): 

        self.branch = branch or 'HEAD' 

        self.revision = revision 

        self.method = self._getMethod() 

        self.stdio_log = self.addLog("stdio") 

 

        d = self.checkGit() 

        def checkInstall(gitInstalled): 

            if not gitInstalled: 

                raise BuildSlaveTooOldError("git is not installed on slave") 

            return 0 

        d.addCallback(checkInstall) 

 

        if self.mode == 'incremental': 

            d.addCallback(lambda _: self.incremental()) 

        elif self.mode == 'full': 

            d.addCallback(lambda _: self.full()) 

        if patch: 

            d.addCallback(self.patch, patch) 

        d.addCallback(self.parseGotRevision) 

        d.addCallback(self.parseCommitDescription) 

        d.addCallback(self.finish) 

        d.addErrback(self.failed) 

        return d 

 

    @defer.inlineCallbacks 

    def full(self): 

        if self.method == 'clobber': 

            yield self.clobber() 

            return 

        elif self.method == 'copy': 

            yield self.copy() 

            return 

 

        updatable = yield self._sourcedirIsUpdatable() 

        if not updatable: 

            log.msg("No git repo present, making full clone") 

            yield self._doFull() 

        elif self.method == 'clean': 

            yield self.clean() 

        elif self.method == 'fresh': 

            yield self.fresh() 

        else: 

            raise ValueError("Unknown method, check your configuration") 

 

    @defer.inlineCallbacks 

    def incremental(self): 

        updatable = yield self._sourcedirIsUpdatable() 

 

        # if not updateable, do a full checkout 

        if not updatable: 

            yield self._doFull() 

            return 

 

        # test for existence of the revision; rc=1 indicates it does not exist 

        if self.revision: 

            rc = yield self._dovccmd(['cat-file', '-e', self.revision], 

                    abandonOnFailure=False) 

        else: 

            rc = 1 

 

        # if revision exists checkout to that revision 

        # else fetch and update 

        if rc == 0: 

            yield self._dovccmd(['reset', '--hard', self.revision]) 

 

            if self.branch != 'HEAD': 

                yield self._dovccmd(['branch', '-M', self.branch], 

                        abandonOnFailure=False) 

        else: 

            yield self._doFetch(None) 

 

        yield self._updateSubmodule(None) 

 

    def clean(self): 

        command = ['clean', '-f', '-d'] 

        d = self._dovccmd(command) 

        d.addCallback(self._doFetch) 

        d.addCallback(self._updateSubmodule) 

        d.addCallback(self._cleanSubmodule) 

        return d 

 

    def clobber(self): 

        cmd = buildstep.RemoteCommand('rmdir', {'dir': self.workdir, 

                                                'logEnviron': self.logEnviron,}) 

        cmd.useLog(self.stdio_log, False) 

        d = self.runCommand(cmd) 

        def checkRemoval(res): 

            if res != 0: 

                raise RuntimeError("Failed to delete directory") 

            return res 

        d.addCallback(lambda _: checkRemoval(cmd.rc)) 

        d.addCallback(lambda _: self._doFull()) 

        return d 

 

    def fresh(self): 

        command = ['clean', '-f', '-d', '-x'] 

        d = self._dovccmd(command) 

        d.addCallback(self._doFetch) 

        d.addCallback(self._updateSubmodule) 

        d.addCallback(self._cleanSubmodule) 

        return d 

 

    def copy(self): 

        cmd = buildstep.RemoteCommand('rmdir', {'dir': self.workdir, 

                                                'logEnviron': self.logEnviron,}) 

        cmd.useLog(self.stdio_log, False) 

        d = self.runCommand(cmd) 

 

        self.workdir = 'source' 

        d.addCallback(lambda _: self.incremental()) 

        def copy(_): 

            cmd = buildstep.RemoteCommand('cpdir', 

                                          {'fromdir': 'source', 

                                           'todir':'build', 

                                           'logEnviron': self.logEnviron,}) 

            cmd.useLog(self.stdio_log, False) 

            d = self.runCommand(cmd) 

            return d 

        d.addCallback(copy) 

        def resetWorkdir(_): 

            self.workdir = 'build' 

            return 0 

 

        d.addCallback(resetWorkdir) 

        return d 

 

    def finish(self, res): 

        d = defer.succeed(res) 

        def _gotResults(results): 

            self.setStatus(self.cmd, results) 

            log.msg("Closing log, sending result of the command %s " % \ 

                        (self.cmd)) 

            return results 

        d.addCallback(_gotResults) 

        d.addCallbacks(self.finished, self.checkDisconnect) 

        return d 

 

    @defer.inlineCallbacks 

    def parseGotRevision(self, _=None): 

        stdout = yield self._dovccmd(['rev-parse', 'HEAD'], collectStdout=True) 

        revision = stdout.strip() 

        if len(revision) != 40: 

            raise buildstep.BuildStepFailed() 

        log.msg("Got Git revision %s" % (revision, )) 

        self.setProperty('got_revision', revision, 'Source') 

 

        defer.returnValue(0) 

 

    @defer.inlineCallbacks 

    def parseCommitDescription(self, _=None): 

        if self.getDescription==False: # dict() should not return here 

            defer.returnValue(0) 

            return 

 

        cmd = ['describe'] 

        if isinstance(self.getDescription, dict): 

            for opt, arg in git_describe_flags: 

                opt = self.getDescription.get(opt, None) 

                arg = arg(opt) 

                if arg: 

                    cmd.extend(arg) 

        cmd.append('HEAD') 

 

        try: 

            stdout = yield self._dovccmd(cmd, collectStdout=True) 

            desc = stdout.strip() 

            self.setProperty('commit-description', desc, 'Source') 

        except: 

            pass 

 

        defer.returnValue(0) 

 

    def _dovccmd(self, command, abandonOnFailure=True, collectStdout=False, initialStdin=None): 

        cmd = buildstep.RemoteShellCommand(self.workdir, ['git'] + command, 

                                           env=self.env, 

                                           logEnviron=self.logEnviron, 

                                           collectStdout=collectStdout, 

                                           initialStdin=initialStdin) 

        cmd.useLog(self.stdio_log, False) 

        log.msg("Starting git command : git %s" % (" ".join(command), )) 

        d = self.runCommand(cmd) 

        def evaluateCommand(cmd): 

            if abandonOnFailure and cmd.rc != 0: 

                log.msg("Source step failed while running command %s" % cmd) 

                raise buildstep.BuildStepFailed() 

            if collectStdout: 

                return cmd.stdout 

            else: 

                return cmd.rc 

        d.addCallback(lambda _: evaluateCommand(cmd)) 

        return d 

 

    def _fetch(self, _): 

        command = ['fetch', '-t', self.repourl, self.branch] 

        # If the 'progress' option is set, tell git fetch to output 

        # progress information to the log. This can solve issues with 

        # long fetches killed due to lack of output, but only works 

        # with Git 1.7.2 or later. 

        if self.prog: 

            command.append('--progress') 

 

        d = self._dovccmd(command) 

        def checkout(_): 

            if self.revision: 

                rev = self.revision 

            else: 

                rev = 'FETCH_HEAD' 

            command = ['reset', '--hard', rev] 

            abandonOnFailure = not self.retryFetch and not self.clobberOnFailure 

            return self._dovccmd(command, abandonOnFailure) 

        d.addCallback(checkout) 

        def renameBranch(res): 

            if res != 0: 

                return res 

            d = self._dovccmd(['branch', '-M', self.branch], abandonOnFailure=False) 

            # Ignore errors 

            d.addCallback(lambda _: res) 

            return d 

 

        if self.branch != 'HEAD': 

            d.addCallback(renameBranch) 

        return d 

 

    def patch(self, _, patch): 

        d = self._dovccmd(['apply', '--index', '-p', str(patch[0])], 

                initialStdin=patch[1]) 

        return d 

 

    @defer.inlineCallbacks 

    def _doFetch(self, _): 

        """ 

        Handles fallbacks for failure of fetch, 

        wrapper for self._fetch 

        """ 

        res = yield self._fetch(None) 

        if res == 0: 

            defer.returnValue(res) 

            return 

        elif self.retryFetch: 

            yield self._fetch(None) 

        elif self.clobberOnFailure: 

            yield self.clobber() 

        else: 

            raise buildstep.BuildStepFailed() 

 

    def _full(self): 

        if self.shallow: 

            command = ['clone', '--depth', '1', '--branch', self.branch, self.repourl, '.'] 

        else: 

            command = ['clone', '--branch', self.branch, self.repourl, '.'] 

        #Fix references 

        if self.prog: 

            command.append('--progress') 

 

        d = self._dovccmd(command, not self.clobberOnFailure) 

        # If revision specified checkout that revision 

        if self.revision: 

            d.addCallback(lambda _: self._dovccmd(['reset', '--hard', 

                                                   self.revision], 

                                                  not self.clobberOnFailure)) 

        # init and update submodules, recurisively. If there's not recursion 

        # it will not do it. 

        if self.submodules: 

            d.addCallback(lambda _: self._dovccmd(['submodule', 'update', 

                                                   '--init', '--recursive'], 

                                                  not self.clobberOnFailure)) 

        return d 

 

    def _doFull(self): 

        d = self._full() 

        def clobber(res): 

            if res != 0: 

                if self.clobberOnFailure: 

                    return self.clobber() 

                else: 

                    raise buildstep.BuildStepFailed() 

            else: 

                return res 

        d.addCallback(clobber) 

        return d 

 

    def computeSourceRevision(self, changes): 

        if not changes: 

            return None 

        return changes[-1].revision 

 

    def _sourcedirIsUpdatable(self): 

        cmd = buildstep.RemoteCommand('stat', {'file': self.workdir + '/.git', 

                                               'logEnviron': self.logEnviron,}) 

        cmd.useLog(self.stdio_log, False) 

        d = self.runCommand(cmd) 

        def _fail(tmp): 

            if cmd.rc != 0: 

                return False 

            return True 

        d.addCallback(_fail) 

        return d 

 

    def _updateSubmodule(self, _): 

        if self.submodules: 

            return self._dovccmd(['submodule', 'update', '--recursive']) 

        else: 

            return defer.succeed(0) 

 

    def _cleanSubmodule(self, _): 

        if self.submodules: 

            command = ['submodule', 'foreach', 'git', 'clean', '-f', '-d'] 

            if self.mode == 'full' and self.method == 'fresh': 

                command.append('-x') 

            return self._dovccmd(command) 

        else: 

            return defer.succeed(0) 

 

    def _getMethod(self): 

        if self.method is not None and self.mode != 'incremental': 

            return self.method 

        elif self.mode == 'incremental': 

            return None 

        elif self.method is None and self.mode == 'full': 

            return 'fresh' 

 

    def checkGit(self): 

        d = self._dovccmd(['--version']) 

        def check(res): 

            if res == 0: 

                return True 

            return False 

        d.addCallback(check) 

        return d