hugo/hugolib/index.go

168 lines
4.0 KiB
Go
Raw Normal View History

2013-07-04 15:32:55 +00:00
// Copyright © 2013 Steve Francia <spf@spf13.com>.
//
// Licensed under the Simple Public 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://opensource.org/licenses/Simple-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.
package hugolib
import (
2013-12-05 14:29:41 +00:00
"github.com/spf13/hugo/helpers"
2013-07-04 15:32:55 +00:00
"sort"
)
type WeightedIndexEntry struct {
Weight int
Page *Page
}
type IndexedPages []WeightedIndexEntry
func (p IndexedPages) Len() int { return len(p) }
func (p IndexedPages) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
func (p IndexedPages) Sort() { sort.Sort(p) }
2013-10-31 13:49:29 +00:00
func (p IndexedPages) Count() int { return len(p) }
func (p IndexedPages) Less(i, j int) bool {
if p[i].Weight == p[j].Weight {
return p[i].Page.Date.Unix() > p[j].Page.Date.Unix()
} else {
return p[i].Weight < p[j].Weight
}
}
func (ip IndexedPages) Pages() Pages {
pages := make(Pages, len(ip))
2013-11-24 21:48:57 +00:00
for i := range ip {
pages[i] = ip[i].Page
}
return pages
}
2013-11-24 21:10:20 +00:00
func (ip IndexedPages) PagesByDate(asc bool) Pages {
by := func(p1, p2 *Page) bool {
return p1.Date.Unix() < p2.Date.Unix()
}
if asc == false {
by = func(p1, p2 *Page) bool {
return p1.Date.Unix() > p2.Date.Unix()
}
}
ps := &PageSorter{
pages: ip.Pages(),
by: by,
}
sort.Sort(ps)
return ps.pages
}
type Index map[string]IndexedPages
2013-07-04 15:32:55 +00:00
type IndexList map[string]Index
// KeyPrep... Indexes should be case insensitive. Can make it easily conditional later.
func kp(in string) string {
2013-12-05 14:29:41 +00:00
return helpers.Urlize(in)
2013-07-04 15:32:55 +00:00
}
func (i Index) Get(key string) IndexedPages { return i[kp(key)] }
func (i Index) Count(key string) int { return len(i[kp(key)]) }
func (i Index) Add(key string, w WeightedIndexEntry) {
2013-07-04 15:32:55 +00:00
key = kp(key)
i[key] = append(i[key], w)
2013-07-04 15:32:55 +00:00
}
2013-10-31 13:49:29 +00:00
func (i Index) IndexArray() IndexEntries {
ies := make([]IndexEntry, len(i))
count := 0
for k, v := range i {
2013-10-31 13:49:29 +00:00
ies[count] = IndexEntry{Name: k, WeightedPages: v}
count++
}
return ies
}
2013-10-31 13:49:29 +00:00
func (i Index) Alphabetical() IndexEntries {
name := func(i1, i2 *IndexEntry) bool {
return i1.Name < i2.Name
}
ia := i.IndexArray()
By(name).Sort(ia)
return ia
}
2013-10-31 13:49:29 +00:00
func (i Index) ByCount() IndexEntries {
count := func(i1, i2 *IndexEntry) bool {
2013-10-31 13:49:29 +00:00
return len(i1.WeightedPages) > len(i2.WeightedPages)
}
ia := i.IndexArray()
By(count).Sort(ia)
return ia
}
type IndexEntry struct {
2013-10-31 13:49:29 +00:00
Name string
WeightedPages IndexedPages
}
2013-10-31 13:49:29 +00:00
func (ie IndexEntry) Pages() []*Page {
return ie.WeightedPages.Pages()
}
func (ie IndexEntry) Count() int {
return len(ie.WeightedPages)
}
type IndexEntries []IndexEntry
type By func(i1, i2 *IndexEntry) bool
func (by By) Sort(indexEntrys []IndexEntry) {
ps := &indexEntrySorter{
indexEntrys: indexEntrys,
by: by, // The Sort method's receiver is the function (closure) that defines the sort order.
2013-07-04 15:32:55 +00:00
}
sort.Sort(ps)
2013-07-04 15:32:55 +00:00
}
type indexEntrySorter struct {
indexEntrys []IndexEntry
by func(p1, p2 *IndexEntry) bool // Closure used in the Less method.
}
// Len is part of sort.Interface.
func (s *indexEntrySorter) Len() int {
return len(s.indexEntrys)
}
// Swap is part of sort.Interface.
func (s *indexEntrySorter) Swap(i, j int) {
s.indexEntrys[i], s.indexEntrys[j] = s.indexEntrys[j], s.indexEntrys[i]
}
// Less is part of sort.Interface. It is implemented by calling the "by" closure in the sorter.
func (s *indexEntrySorter) Less(i, j int) bool {
return s.by(&s.indexEntrys[i], &s.indexEntrys[j])
}
2013-11-24 21:10:20 +00:00
// Sorting pages
type PageSorter struct {
pages Pages
by func(p1, p2 *Page) bool
}
func (ps *PageSorter) Len() int { return len(ps.pages) }
func (ps *PageSorter) Swap(i, j int) { ps.pages[i], ps.pages[j] = ps.pages[j], ps.pages[i] }
func (ps *PageSorter) Less(i, j int) bool { return ps.by(ps.pages[i], ps.pages[j]) }