當前位置: 首頁>>代碼示例>>Golang>>正文


Golang goutils.Tostr函數代碼示例

本文整理匯總了Golang中github.com/ChrisKaufmann/goutils.Tostr函數的典型用法代碼示例。如果您正苦於以下問題:Golang Tostr函數的具體用法?Golang Tostr怎麽用?Golang Tostr使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Tostr函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: DeleteExcludes

func (f Feed) DeleteExcludes() {
	el := f.Excludes()
	for _, e := range el {
		e = Escape_guid(e)
		if len(e) < 1 {
			continue
		}
		var query = "delete from ttrss_entries where feed_id=" + u.Tostr(f.ID) + " and title like '%" + e + "%'"
		var stmt, err = u.Sth(db, query)
		if err != nil {
			glog.Errorf("u.Sth(db,%s): %s", query, err)
			return
		}
		if _, err := stmt.Exec(); err != nil {
			glog.Errorf("DeleteExcludes.stmt.Exec: %s", err)
		}
	}
	ed := f.ExcludesData()
	for _, e := range ed {
		e = Escape_guid(e)
		if len(e) < 1 {
			continue
		}
		var query = "delete from ttrss_entries where feed_id=" + u.Tostr(f.ID) + " and content like '%" + e + "%'"
		var stmt, err = u.Sth(db, query)
		if err != nil {
			glog.Errorf("u.Sth(db,%s): %s", query, err)
			return
		}
		if _, err := stmt.Exec(); err != nil {
			glog.Errorf("stmt.Exec: %s", err)
		}
	}
	f.ClearCache()
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:35,代碼來源:feed.go

示例2: GetAllCategories

func GetAllCategories() []Category {
	var allCats []Category
	var catids []int
	err := mc.Get("CategoryList", &catids)
	if err != nil {
		rows, err := stmtGetAllCats.Query()
		if err != nil {
			glog.Errorf("stmtGetAllCats: %s", err)
			return allCats
		}
		for rows.Next() {
			var cat Category
			rows.Scan(&cat.Name, &cat.UserName, &cat.Description, &cat.ID, &cat.Exclude)
			allCats = append(allCats, cat)
			catids = append(catids, cat.ID)
			go mc.Set("Category"+u.Tostr(cat.ID)+"_", cat)
		}
		go mc.Set("CategoryList", allCats)
	} else {
		for _, i := range catids {
			cat := GetCat(u.Tostr(i))
			allCats = append(allCats, cat)
		}
	}
	return allCats
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:26,代碼來源:category.go

示例3: UnreadEntries

func (f Feed) UnreadEntries() (el []Entry) {
	mc.GetOr("Feed"+u.Tostr(f.ID)+"_unreadentries", &el, func() {
		el = f.GetEntriesByParam("unread = 1")
	})
	err := mc.Set("Feed"+u.Tostr(f.ID)+"_UnreadCount", len(el))
	if err != nil {
		glog.Errorf("mc.Set(Feed %v _UnreadCount, %v): %s", f.ID, len(el), err)
	}
	return el
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:10,代碼來源:feed.go

示例4: UnreadEntries

func (c Category) UnreadEntries() (el []Entry) {
	mc.GetOr("Category"+u.Tostr(c.ID)+"_unreadentries", &el, func() {
		for _, f := range c.Feeds() {
			el = append(el, f.UnreadEntries()...)
		}
		sort.Sort(EntryList(el))
	})
	mc.SetTime("Category"+u.Tostr(c.ID)+"_UnreadCount", len(el), 60)
	return el
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:10,代碼來源:category.go

示例5: ClearCache

func (c Category) ClearCache() {
	mc.DeleteLike("Category" + u.Tostr(c.ID) + "_")
	cl := mc.Find("Category" + u.Tostr(c.ID))
	mc.Delete(cl...)
	mcl := []string{"Category" + u.Tostr(c.ID) + "_", "Category" + u.Tostr(c.ID) + "_UnreadCount", "Category" + u.Tostr(c.ID) + "_Feeds"}
	for _, k := range mcl {
		mc.Delete(k)
	}
	mc.Delete(mcl...)
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:10,代碼來源:category.go

示例6: CacheAllCats

func CacheAllCats() {
	for _, c := range GetAllCategories() {
		err := mc.Set("Category"+u.Tostr(c.ID)+"_", c)
		if err != nil {
			glog.Errorf("mc.Set(Category %v _: %s", c.ID, err)
		}
		err = mc.Set("Category"+u.Tostr(c.ID)+"_UnreadCount", c.Unread())
		if err != nil {
			glog.Errorf("mc.Set(Category %v _UnreadCount): %s", c.ID, err)
		}
	}
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:12,代碼來源:category.go

示例7: CacheAllFeeds

func CacheAllFeeds() {
	for _, f := range GetAllFeeds() {
		err := mc.Set("Feed"+u.Tostr(f.ID)+"_", f)
		if err != nil {
			glog.Errorf("mc.Set(Feed%v): %s", f.ID, err)
		}
		err = mc.Set("Feed"+u.Tostr(f.ID)+"_UnreadCount", f.Unread())
		if err != nil {
			glog.Errorf("mc.Set(Feed %v _UnreadCount): %s", f.ID, err)
		}
	}
	return
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:13,代碼來源:feed.go

示例8: ClearEntries

func (f Feed) ClearEntries() {
	var err error
	err = mc.Delete("Category" + u.Tostr(f.CategoryID) + "_unreadentries")
	if err != nil {
		if err.Error() != "memcache: cache miss" {
			glog.Errorf("mc.Delete(Category"+u.Tostr(f.CategoryID)+"_unreadentries: %s", err)
		}
	}
	err = mc.Delete("Feed" + u.Tostr(f.ID) + "_unreadentries")
	if err != nil {
		if err.Error() != "memcache: cache miss" {
			glog.Errorf("mc.Delete(Feed"+u.Tostr(f.CategoryID)+"_unreadentries: %s", err)
		}
	}
	err = mc.Delete("Category" + u.Tostr(f.CategoryID) + "_readentries")
	if err != nil {
		if err.Error() != "memcache: cache miss" {
			glog.Errorf("mc.Delete(Category"+u.Tostr(f.CategoryID)+"_readentries: %s", err)
		}
	}
	err = mc.Delete("Feed" + u.Tostr(f.ID) + "_readentries")
	if err != nil {
		if err.Error() != "memcache: cache miss" {
			glog.Errorf("mc.Delete(Feed"+u.Tostr(f.CategoryID)+"_readentries: %s", err)
		}
	}
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:27,代碼來源:feed.go

示例9: ClearMarked

func (f Feed) ClearMarked() {
	err := mc.Delete("Feed" + u.Tostr(f.ID) + "_markedentries")
	if err != nil {
		if err.Error() != "memcache: cache miss" {
			glog.Errorf("mc.Delete(feed%v_markedentries): %s", f.ID, err)
		}
	}
	err = mc.Delete("Category" + u.Tostr(f.CategoryID) + "_markedentries")
	if err != nil {
		if err.Error() != "memcache: cache miss" {
			glog.Errorf("mc.Delete(Category%v_markedentries): %s", f.ID, err)
		}
	}
	f.ClearEntries()
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:15,代碼來源:feed.go

示例10: Print

func (c Category) Print() {
	print("Category: " + u.Tostr(c.ID) + "\n" +
		"\tName:\t" + c.Name + "\n" +
		"\tDesc:\t" + c.Description + "\n" +
		"\tUser:\t" + c.UserName + "\n" +
		"\tExclude:\t" + c.Exclude + "\n")
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:7,代碼來源:category.go

示例11: FeedsStr

func (c Category) FeedsStr() []string {
	f := c.Feeds()
	var feedstr []string
	for _, i := range f {
		feedstr = append(feedstr, u.Tostr(i.ID))
	}
	return feedstr
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:8,代碼來源:category.go

示例12: MarkEntriesRead

func (f Feed) MarkEntriesRead(ids []string) (err error) {
	if len(ids) == 0 {
		err = fmt.Errorf("Ids is null")
		return err
	} else {
		// make sure they're all integers
		var id_list []string
		for _, i := range ids {
			if _, err := strconv.Atoi(i); err == nil {
				id_list = append(id_list, i)
			}
		}
		if len(id_list) < 1 {
			return fmt.Errorf("Not enough valid ids passed")
		}
		j := strings.Join(id_list, ",")
		sql := "update ttrss_entries set unread='0' where feed_id=" + u.Tostr(f.ID) + " and id in (" + j + ")"
		stmtUpdateMarkEntries, err := u.Sth(db, sql)
		if err != nil {
			glog.Errorf("u.Sth(db,%s): %s", sql, err)
			return err
		}
		if _, err = stmtUpdateMarkEntries.Exec(); err != nil {
			glog.Errorf("stmtUpdateMarkEntries.Exec(%s): %s", sql, err)
		}
		mc.Decrement("Category"+u.Tostr(f.CategoryID)+"_UnreadCount", uint64(len(ids)))
		mc.Decrement("Feed"+u.Tostr(f.ID)+"_UnreadCount", uint64(len(ids)))
		mc.Delete("Category" + u.Tostr(f.CategoryID) + "_unreadentries")
		mc.Delete("Feed" + u.Tostr(f.ID) + "_unreadentries")
		mc.Delete("Category" + u.Tostr(f.CategoryID) + "_readentries")
		mc.Delete("Feed" + u.Tostr(f.ID) + "_readentries")
	}
	return err
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:34,代碼來源:feed.go

示例13: Unread

func (f Feed) Unread() (count int) {
	mc.GetOr("Feed"+u.Tostr(f.ID)+"_UnreadCount", &count, func() {
		err := stmtFeedUnread.QueryRow(f.ID).Scan(&count)
		if err != nil {
			glog.Errorf("stmtFeedUnread.QueryRow(%s): %s", f.ID, err)
		}
	})
	return count
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:9,代碼來源:feed.go

示例14: ReadEntries

func (c Category) ReadEntries() (el []Entry) {
	mc.GetOr("Category"+u.Tostr(c.ID)+"_readentries", &el, func() {
		for _, f := range c.Feeds() {
			el = append(el, f.ReadEntries()...)
		}
		sort.Sort(EntryList(el))
	})
	return el
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:9,代碼來源:category.go

示例15: MarkedEntries

func (c Category) MarkedEntries() (el []Entry) {
	mc.GetOr("Category"+u.Tostr(c.ID)+"_markedentries", &el, func() {
		for _, f := range c.Feeds() {
			el = append(el, f.MarkedEntries()...)
		}
		sort.Sort(EntryList(el))
		el = c.GetEntriesByParam("marked = 1")
	})
	return el
}
開發者ID:ChrisKaufmann,項目名稱:feedinator-go,代碼行數:10,代碼來源:category.go


注:本文中的github.com/ChrisKaufmann/goutils.Tostr函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。