LEFT | RIGHT |
1 // Copyright 2012 The Go Authors. All rights reserved. | 1 // Copyright 2012 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package main | 5 package main |
6 | 6 |
7 import ( | 7 import ( |
8 "bytes" | 8 "bytes" |
9 "encoding/json" | 9 "encoding/json" |
10 "fmt" | 10 "fmt" |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 | 269 |
270 regexp *regexp.Regexp // cached compiled form of re | 270 regexp *regexp.Regexp // cached compiled form of re |
271 } | 271 } |
272 | 272 |
273 // vcsForDir inspects dir and its parents to determine the | 273 // vcsForDir inspects dir and its parents to determine the |
274 // version control system and code repository to use. | 274 // version control system and code repository to use. |
275 // On return, root is the import path | 275 // On return, root is the import path |
276 // corresponding to the root of the repository | 276 // corresponding to the root of the repository |
277 // (thus root is a prefix of importPath). | 277 // (thus root is a prefix of importPath). |
278 func vcsForDir(p *Package) (vcs *vcsCmd, root string, err error) { | 278 func vcsForDir(p *Package) (vcs *vcsCmd, root string, err error) { |
279 » // Clean and double-check that dir is in srcRoot. | 279 » // Clean and double-check that dir is in (a subdirectory of) srcRoot. |
280 dir := filepath.Clean(p.Dir) | 280 dir := filepath.Clean(p.Dir) |
281 srcRoot := filepath.Clean(p.build.SrcRoot) | 281 srcRoot := filepath.Clean(p.build.SrcRoot) |
282 if len(dir) <= len(srcRoot) || dir[len(srcRoot)] != filepath.Separator { | 282 if len(dir) <= len(srcRoot) || dir[len(srcRoot)] != filepath.Separator { |
283 return nil, "", fmt.Errorf("directory %q is outside source root
%q", dir, srcRoot) | 283 return nil, "", fmt.Errorf("directory %q is outside source root
%q", dir, srcRoot) |
284 } | 284 } |
285 | 285 |
286 for len(dir) > len(srcRoot) { | 286 for len(dir) > len(srcRoot) { |
287 for _, vcs := range vcsList { | 287 for _, vcs := range vcsList { |
288 if fi, err := os.Stat(filepath.Join(dir, "."+vcs.cmd));
err == nil && fi.IsDir() { | 288 if fi, err := os.Stat(filepath.Join(dir, "."+vcs.cmd));
err == nil && fi.IsDir() { |
289 return vcs, dir[len(srcRoot)+1:], nil | 289 return vcs, dir[len(srcRoot)+1:], nil |
290 } | 290 } |
291 } | 291 } |
292 | 292 |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 if match["project"] == "" || match["series"] == "" { | 514 if match["project"] == "" || match["series"] == "" { |
515 return nil | 515 return nil |
516 } | 516 } |
517 _, err := httpGET(expand(match, "https://code.launchpad.net/{project}{se
ries}/.bzr/branch-format")) | 517 _, err := httpGET(expand(match, "https://code.launchpad.net/{project}{se
ries}/.bzr/branch-format")) |
518 if err != nil { | 518 if err != nil { |
519 match["root"] = expand(match, "launchpad.net/{project}") | 519 match["root"] = expand(match, "launchpad.net/{project}") |
520 match["repo"] = expand(match, "https://{root}") | 520 match["repo"] = expand(match, "https://{root}") |
521 } | 521 } |
522 return nil | 522 return nil |
523 } | 523 } |
LEFT | RIGHT |