You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.0 KiB

// Copyright 2013 gopm authors.
//
// Licensed under the Apache License, Version 2.0 (the "License"): you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
12 years ago
package cmd
12 years ago
11 years ago
import (
"os"
11 years ago
"github.com/Unknwon/com"
"github.com/Unknwon/goconfig"
"github.com/codegangsta/cli"
11 years ago
11 years ago
"github.com/gpmgo/gopm/doc"
"github.com/gpmgo/gopm/log"
)
11 years ago
11 years ago
var CmdGen = cli.Command{
Name: "gen",
11 years ago
Usage: "generate a gopmfile according current Go project",
11 years ago
Description: `Command gen gets dependencies and generates a gopmfile
11 years ago
11 years ago
gopm gen
11 years ago
11 years ago
Make sure you run this command in the root path of a go project.`,
Action: runGen,
Flags: []cli.Flag{
11 years ago
cli.BoolFlag{"example, e", "check dependencies for example(s)"},
11 years ago
},
}
12 years ago
// scan a directory and gen a gopm file
11 years ago
func runGen(ctx *cli.Context) {
if !com.IsExist(".gopmfile") {
os.Create(".gopmfile")
}
11 years ago
11 years ago
gf, err := goconfig.LoadConfigFile(".gopmfile")
if err != nil {
log.Error("Gen", "Fail to load gopmfile")
log.Fatal("", err.Error())
11 years ago
}
curPath, err := os.Getwd()
if err != nil {
11 years ago
log.Error("Gen", "Fail to get work directory")
log.Fatal("", err.Error())
11 years ago
}
11 years ago
// Get dependencies.
11 years ago
importPath, err := gf.GetValue("target", "path")
if err != nil {
importPath = "."
}
11 years ago
imports := doc.GetAllImports([]string{curPath},
11 years ago
importPath, ctx.Bool("example"))
11 years ago
11 years ago
for _, p := range imports {
if _, err := gf.GetValue("deps", doc.GetProjectPath(p)); err != nil {
gf.SetValue("deps", doc.GetProjectPath(p), " ")
}
11 years ago
}
11 years ago
err = goconfig.SaveConfigFile(gf, ".gopmfile")
11 years ago
if err != nil {
11 years ago
log.Error("Gen", "Fail to save gopmfile")
log.Fatal("", err.Error())
11 years ago
}
12 years ago
11 years ago
log.Success("SUCC", "Gen", "Generate gopmfile successfully!")
12 years ago
}