Skip to content

Commit

Permalink
fix beego#576
Browse files Browse the repository at this point in the history
  • Loading branch information
astaxie committed May 16, 2014
1 parent 05e5baa commit 4245521
Show file tree
Hide file tree
Showing 24 changed files with 10 additions and 47 deletions.
2 changes: 1 addition & 1 deletion admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func runTask(rw http.ResponseWriter, req *http.Request) {
if err != nil {
fmt.Fprintf(rw, "%v", err)
}
fmt.Fprintf(rw, "%s run success,Now the Status is %s", t.GetStatus())
fmt.Fprintf(rw, "%s run success,Now the Status is %s", taskname, t.GetStatus())
} else {
fmt.Fprintf(rw, "there's no task which named:%s", taskname)
}
Expand Down
1 change: 0 additions & 1 deletion cache/memcache/memcache.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ func (rc *MemcacheCache) IsExist(key string) bool {
} else {
return true
}
return true
}

// clear all cached in memcache.
Expand Down
6 changes: 0 additions & 6 deletions config/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ func (c *JsonConfigContainer) Bool(key string) (bool, error) {
} else {
return false, errors.New("not exist key:" + key)
}
return false, nil
}

// Int returns the integer value for a given key.
Expand All @@ -68,7 +67,6 @@ func (c *JsonConfigContainer) Int(key string) (int, error) {
} else {
return 0, errors.New("not exist key:" + key)
}
return 0, nil
}

// Int64 returns the int64 value for a given key.
Expand All @@ -83,7 +81,6 @@ func (c *JsonConfigContainer) Int64(key string) (int64, error) {
} else {
return 0, errors.New("not exist key:" + key)
}
return 0, nil
}

// Float returns the float value for a given key.
Expand All @@ -98,7 +95,6 @@ func (c *JsonConfigContainer) Float(key string) (float64, error) {
} else {
return 0.0, errors.New("not exist key:" + key)
}
return 0.0, nil
}

// String returns the string value for a given key.
Expand All @@ -113,7 +109,6 @@ func (c *JsonConfigContainer) String(key string) string {
} else {
return ""
}
return ""
}

// Strings returns the []string value for a given key.
Expand All @@ -137,7 +132,6 @@ func (c *JsonConfigContainer) DIY(key string) (v interface{}, err error) {
} else {
return nil, errors.New("not exist key")
}
return nil, nil
}

// section.key or key
Expand Down
4 changes: 0 additions & 4 deletions controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ func (c *Controller) RenderBytes() ([]byte, error) {
newbytes := bytes.NewBufferString("")
if _, ok := BeeTemplates[c.TplNames]; !ok {
panic("can't find templatefile in the path:" + c.TplNames)
return []byte{}, errors.New("can't find templatefile in the path:" + c.TplNames)
}
err := BeeTemplates[c.TplNames].ExecuteTemplate(newbytes, c.TplNames, c.Data)
if err != nil {
Expand Down Expand Up @@ -199,7 +198,6 @@ func (c *Controller) RenderBytes() ([]byte, error) {
ibytes := bytes.NewBufferString("")
if _, ok := BeeTemplates[c.TplNames]; !ok {
panic("can't find templatefile in the path:" + c.TplNames)
return []byte{}, errors.New("can't find templatefile in the path:" + c.TplNames)
}
err := BeeTemplates[c.TplNames].ExecuteTemplate(ibytes, c.TplNames, c.Data)
if err != nil {
Expand All @@ -209,7 +207,6 @@ func (c *Controller) RenderBytes() ([]byte, error) {
icontent, _ := ioutil.ReadAll(ibytes)
return icontent, nil
}
return []byte{}, nil
}

// Redirect sends the redirection response to url with status code.
Expand Down Expand Up @@ -243,7 +240,6 @@ func (c *Controller) UrlFor(endpoint string, values ...string) string {
} else {
return UrlFor(endpoint, values...)
}
return ""
}

// ServeJson sends a json response with encoding charset.
Expand Down
2 changes: 1 addition & 1 deletion logs/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type FileLogWriter struct {

// Rotate daily
Daily bool `json:"daily"`
Maxdays int64 `json:"maxdays`
Maxdays int64 `json:"maxdays"`
daily_opendate int

Rotate bool `json:"rotate"`
Expand Down
1 change: 0 additions & 1 deletion memzipfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,5 +195,4 @@ func getAcceptEncodingZip(r *http.Request) string {
} else {
return ""
}
return ""
}
5 changes: 0 additions & 5 deletions orm/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,6 @@ func (d *dbBase) Update(q dbQuerier, mi *modelInfo, ind reflect.Value, tz *time.
} else {
return 0, err
}
return 0, nil
}

// execute delete sql dbQuerier with given struct reflect.Value.
Expand Down Expand Up @@ -489,7 +488,6 @@ func (d *dbBase) Delete(q dbQuerier, mi *modelInfo, ind reflect.Value, tz *time.
} else {
return 0, err
}
return 0, nil
}

// update table-related record by querySet.
Expand Down Expand Up @@ -566,7 +564,6 @@ func (d *dbBase) UpdateBatch(q dbQuerier, qs *querySet, mi *modelInfo, cond *Con
} else {
return 0, err
}
return 0, nil
}

// delete related records.
Expand Down Expand Up @@ -671,8 +668,6 @@ func (d *dbBase) DeleteBatch(q dbQuerier, qs *querySet, mi *modelInfo, cond *Con
} else {
return 0, err
}

return 0, nil
}

// read related records.
Expand Down
1 change: 0 additions & 1 deletion orm/db_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ func getDbAlias(name string) *alias {
} else {
panic(fmt.Errorf("unknown DataBase alias name %s", name))
}
return nil
}

// get pk column info.
Expand Down
3 changes: 1 addition & 2 deletions orm/models_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ func (e *JsonField) SetRaw(value interface{}) error {
default:
return fmt.Errorf("<JsonField.SetRaw> unknown value `%v`", value)
}
return nil
}

func (e *JsonField) RawValue() interface{} {
Expand Down Expand Up @@ -122,7 +121,7 @@ type DataNull struct {
Char string `orm:"null;size(50)"`
Text string `orm:"null;type(text)"`
Date time.Time `orm:"null;type(date)"`
DateTime time.Time `orm:"null;column(datetime)""`
DateTime time.Time `orm:"null;column(datetime)"`
Byte byte `orm:"null"`
Rune rune `orm:"null"`
Int int `orm:"null"`
Expand Down
4 changes: 1 addition & 3 deletions orm/orm.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func (o *orm) queryRelated(md interface{}, name string) (*modelInfo, *fieldInfo,
}

if qs == nil {
panic(fmt.Errorf("<Ormer> name `%s` for model `%s` is not an available rel/reverse field"))
panic(fmt.Errorf("<Ormer> name `%s` for model `%s` is not an available rel/reverse field", md, name))
}

return mi, fi, ind, qs
Expand Down Expand Up @@ -441,8 +441,6 @@ func (o *orm) Driver() Driver {

func (o *orm) GetDB() dbQuerier {
panic(ErrNotImplement)
// not enough
return o.db
}

// create new orm
Expand Down
2 changes: 0 additions & 2 deletions orm/orm_queryset.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ func (o *querySet) ValuesFlat(result *ParamsList, expr string) (int64, error) {
// }
func (o *querySet) RowsToMap(result *Params, keyCol, valueCol string) (int64, error) {
panic(ErrNotImplement)
return o.orm.alias.DbBaser.RowsTo(o.orm.db, o, o.mi, o.cond, result, keyCol, valueCol, o.orm.alias.TZ)
}

// query all rows into struct with specify key and value column name.
Expand All @@ -224,7 +223,6 @@ func (o *querySet) RowsToMap(result *Params, keyCol, valueCol string) (int64, er
// }
func (o *querySet) RowsToStruct(ptrStruct interface{}, keyCol, valueCol string) (int64, error) {
panic(ErrNotImplement)
return o.orm.alias.DbBaser.RowsTo(o.orm.db, o, o.mi, o.cond, ptrStruct, keyCol, valueCol, o.orm.alias.TZ)
}

// create new QuerySeter.
Expand Down
8 changes: 4 additions & 4 deletions orm/orm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ func TestNullDataTypes(t *testing.T) {

d = DataNull{
DateTime: time.Now(),
NullString: sql.NullString{"test", true},
NullBool: sql.NullBool{true, true},
NullInt64: sql.NullInt64{42, true},
NullFloat64: sql.NullFloat64{42.42, true},
NullString: sql.NullString{String: "test", Valid: true},
NullBool: sql.NullBool{Bool: true, Valid: true},
NullInt64: sql.NullInt64{Int64: 42, Valid: true},
NullFloat64: sql.NullFloat64{Float64: 42.42, Valid: true},
}

id, err = dORM.Insert(&d)
Expand Down
1 change: 0 additions & 1 deletion orm/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -266,5 +266,4 @@ func indirectType(v reflect.Type) reflect.Type {
default:
return v
}
return v
}
3 changes: 1 addition & 2 deletions reload.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type conn struct {
net.Conn
wg *sync.WaitGroup
isclose bool
lock sync.Mutex
lock *sync.Mutex
}

// Close current processing connection.
Expand Down Expand Up @@ -102,7 +102,6 @@ func WaitSignal(l net.Listener) error {
return nil
}
}
return nil // It'll never get here.
}

// Kill current running os process.
Expand Down
1 change: 0 additions & 1 deletion router.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface, mappingM
if regexErr != nil {
//TODO add error handling here to avoid panic
panic(regexErr)
return
}

//now create the Route
Expand Down
1 change: 0 additions & 1 deletion session/couchbase/sess_couchbase.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ func (cs *CouchbaseSessionStore) Get(key interface{}) interface{} {
} else {
return nil
}
return nil
}

func (cs *CouchbaseSessionStore) Delete(key interface{}) error {
Expand Down
1 change: 0 additions & 1 deletion session/mysql/sess_mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ func (st *MysqlSessionStore) Get(key interface{}) interface{} {
} else {
return nil
}
return nil
}

// delete value in mysql session
Expand Down
1 change: 0 additions & 1 deletion session/postgres/sess_postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ func (st *PostgresqlSessionStore) Get(key interface{}) interface{} {
} else {
return nil
}
return nil
}

// delete value in postgresql session
Expand Down
1 change: 0 additions & 1 deletion session/redis/sess_redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ func (rs *RedisSessionStore) Get(key interface{}) interface{} {
} else {
return nil
}
return nil
}

// delete value in redis session
Expand Down
1 change: 0 additions & 1 deletion session/sess_cookie.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ func (st *CookieSessionStore) Get(key interface{}) interface{} {
} else {
return nil
}
return nil
}

// Delete value in cookie session
Expand Down
1 change: 0 additions & 1 deletion session/sess_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ func (fs *FileSessionStore) Get(key interface{}) interface{} {
} else {
return nil
}
return nil
}

// Delete value in file session by given key
Expand Down
3 changes: 0 additions & 3 deletions session/sess_mem.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ func (st *MemSessionStore) Get(key interface{}) interface{} {
} else {
return nil
}
return nil
}

// delete in memory session by key
Expand Down Expand Up @@ -94,7 +93,6 @@ func (pder *MemProvider) SessionRead(sid string) (SessionStore, error) {
pder.lock.Unlock()
return newsess, nil
}
return nil, nil
}

// check session store exist in memory session by sid
Expand Down Expand Up @@ -129,7 +127,6 @@ func (pder *MemProvider) SessionRegenerate(oldsid, sid string) (SessionStore, er
pder.lock.Unlock()
return newsess, nil
}
return nil, nil
}

// delete session store in memory session by id
Expand Down
2 changes: 0 additions & 2 deletions session/sess_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ func decodeCookie(block cipher.Block, hashKey, name, value string, gcmaxlifetime
} else {
return dst, nil
}
// Done.
return nil, nil
}

// Encoding -------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion toolbox/profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func ProcessInput(input string, w io.Writer) {
// record memory profile in pprof
func MemProf() {
if f, err := os.Create("mem-" + strconv.Itoa(pid) + ".memprof"); err != nil {
log.Fatal("record memory profile failed: %v", err)
log.Fatal("record memory profile failed: ", err)
} else {
runtime.GC()
pprof.WriteHeapProfile(f)
Expand Down

0 comments on commit 4245521

Please sign in to comment.