bench-forgejo/models/models.go

96 lines
2.2 KiB
Go
Raw Normal View History

2014-02-12 23:19:46 +05:30
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package models
2014-02-19 04:18:02 +05:30
import (
"fmt"
"os"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
2014-02-19 04:18:02 +05:30
"github.com/lunny/xorm"
2014-03-08 03:52:15 +05:30
"github.com/gogits/gogs/modules/base"
2014-02-19 04:18:02 +05:30
)
2014-02-14 19:50:57 +05:30
var (
2014-02-15 04:46:54 +05:30
orm *xorm.Engine
2014-02-19 15:20:53 +05:30
RepoRootPath string
)
2014-02-14 19:50:57 +05:30
type Members struct {
Id int64
OrgId int64 `xorm:"unique(s) index"`
UserId int64 `xorm:"unique(s)"`
}
2014-02-14 19:50:57 +05:30
type Issue struct {
Id int64
RepoId int64 `xorm:"index"`
PosterId int64
}
2014-02-14 19:50:57 +05:30
type PullRequest struct {
Id int64
}
2014-02-14 19:50:57 +05:30
type Comment struct {
Id int64
}
2014-02-19 04:18:02 +05:30
func setEngine() {
2014-03-08 03:52:15 +05:30
dbType := base.Cfg.MustValue("database", "DB_TYPE")
dbHost := base.Cfg.MustValue("database", "HOST")
dbName := base.Cfg.MustValue("database", "NAME")
dbUser := base.Cfg.MustValue("database", "USER")
dbPwd := base.Cfg.MustValue("database", "PASSWD")
sslMode := base.Cfg.MustValue("database", "SSL_MODE")
2014-02-19 04:18:02 +05:30
2014-03-11 08:33:17 +05:30
var err error
2014-02-19 04:18:02 +05:30
switch dbType {
case "mysql":
orm, err = xorm.NewEngine("mysql", fmt.Sprintf("%s:%s@%s/%s?charset=utf8",
2014-02-19 04:18:02 +05:30
dbUser, dbPwd, dbHost, dbName))
case "postgres":
orm, err = xorm.NewEngine("postgres", fmt.Sprintf("user=%s password=%s dbname=%s sslmode=%s",
dbUser, dbPwd, dbName, sslMode))
2014-02-19 04:18:02 +05:30
default:
2014-02-19 23:34:31 +05:30
fmt.Printf("Unknown database type: %s\n", dbType)
2014-02-19 04:18:02 +05:30
os.Exit(2)
}
if err != nil {
fmt.Printf("models.init(fail to conntect database): %v\n", err)
2014-02-19 04:18:02 +05:30
os.Exit(2)
}
// TODO: for serv command, MUST remove the output to os.stdout, so
2014-02-25 11:31:52 +05:30
// use log file to instead print to stdout
2014-02-19 04:18:02 +05:30
//x.ShowDebug = true
2014-02-25 11:31:52 +05:30
//orm.ShowErr = true
f, err := os.Create("xorm.log")
if err != nil {
fmt.Printf("models.init(fail to create xorm.log): %v\n", err)
os.Exit(2)
}
2014-02-25 12:58:04 +05:30
orm.Logger = f
orm.ShowSQL = true
2014-02-19 04:18:02 +05:30
// Determine and create root git reposiroty path.
2014-03-08 03:52:15 +05:30
RepoRootPath = base.Cfg.MustValue("repository", "ROOT")
2014-03-12 08:08:33 +05:30
if err = os.MkdirAll(RepoRootPath, os.ModePerm); err != nil {
fmt.Printf("models.init(fail to create RepoRootPath(%s)): %v\n", RepoRootPath, err)
2014-03-12 08:08:33 +05:30
os.Exit(2)
}
2014-02-19 04:18:02 +05:30
}
func init() {
setEngine()
if err := orm.Sync(new(User), new(PublicKey), new(Repository), new(Access), new(Action)); err != nil {
fmt.Printf("sync database struct error: %v\n", err)
2014-02-19 23:34:31 +05:30
os.Exit(2)
2014-02-19 15:20:53 +05:30
}
2014-02-19 04:18:02 +05:30
}