1 Star 1 Fork 0

aping.fo / snowflake

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
xtaci 提交于 2017-04-22 10:30 . update
package main
import (
"net"
"net/http"
"os"
pb "snowflake/proto"
cli "gopkg.in/urfave/cli.v2"
log "github.com/Sirupsen/logrus"
"google.golang.org/grpc"
)
func main() {
go func() {
log.Info(http.ListenAndServe("0.0.0.0:6060", nil))
}()
app := &cli.App{
Name: "snowflake",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "listen",
Value: ":10000",
Usage: "listening address:port",
},
&cli.StringSliceFlag{
Name: "etcd-hosts",
Value: cli.NewStringSlice("http://127.0.0.1:2379"),
Usage: "etcd hosts",
},
&cli.IntFlag{
Name: "machine-id",
Value: 0,
Usage: "snowflake machine id, 0-1023",
},
&cli.StringFlag{
Name: "pk-root",
Value: "/seqs",
Usage: "path for auto increment primary keys",
},
&cli.StringFlag{
Name: "uuid-key",
Value: "/seqs/snowflake-uuid",
Usage: "uuid main key",
},
},
Action: func(c *cli.Context) error {
log.Println("listen:", c.String("listen"))
log.Println("etcd-hosts:", c.StringSlice("etcd-hosts"))
log.Println("machine-id:", c.Int("machine-id"))
log.Println("pk-root:", c.String("pk-root"))
log.Println("uuid-key:", c.String("uuid-key"))
// 监听
lis, err := net.Listen("tcp", c.String("listen"))
if err != nil {
log.Fatalln(err)
}
log.Info("listening on ", lis.Addr())
// 注册服务
s := grpc.NewServer()
ins := &server{}
ins.init(c)
pb.RegisterSnowflakeServiceServer(s, ins)
// 开始服务
return s.Serve(lis)
},
}
app.Run(os.Args)
}
Go
1
https://gitee.com/Aping-Fo/snowflake.git
git@gitee.com:Aping-Fo/snowflake.git
Aping-Fo
snowflake
snowflake
master

搜索帮助