Skip to content

Commit 3a95d04

Browse files
committed
✨ Implement Page bundling and image handling
This commit is not the smallest in Hugo's history. Some hightlights include: * Page bundles (for complete articles, keeping images and content together etc.). * Bundled images can be processed in as many versions/sizes as you need with the three methods `Resize`, `Fill` and `Fit`. * Processed images are cached inside `resources/_gen/images` (default) in your project. * Symbolic links (both files and dirs) are now allowed anywhere inside /content * A new table based build summary * The "Total in nn ms" now reports the total including the handling of the files inside /static. So if it now reports more than you're used to, it is just **more real** and probably faster than before (see below). A site building benchmark run compared to `v0.31.1` shows that this should be slightly faster and use less memory: ```bash ▶ ./benchSite.sh "TOML,num_langs=.*,num_root_sections=5,num_pages=(500|1000),tags_per_page=5,shortcodes,render" benchmark old ns/op new ns/op delta BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 101785785 78067944 -23.30% BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 185481057 149159919 -19.58% BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 103149918 85679409 -16.94% BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 203515478 169208775 -16.86% benchmark old allocs new allocs delta BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 532464 391539 -26.47% BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 1056549 772702 -26.87% BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 555974 406630 -26.86% BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 1086545 789922 -27.30% benchmark old bytes new bytes delta BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 53243246 43598155 -18.12% BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 105811617 86087116 -18.64% BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 54558852 44545097 -18.35% BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 106903858 86978413 -18.64% ``` Fixes gohugoio#3651 Closes gohugoio#3158 Fixes gohugoio#1014 Closes gohugoio#2021 Fixes gohugoio#1240 Updates gohugoio#3757
1 parent 02f2735 commit 3a95d04

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+5512
-3225
lines changed

Gopkg.lock

+102-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
revision = "v1.1.0"
2222

2323
[[constraint]]
24-
branch = "master"
25-
name = "github.com/dchest/cssmin"
24+
name = "github.com/disintegration/imaging"
25+
revision = "v1.2.4"
2626

2727
[[constraint]]
2828
name = "github.com/magefile/mage"
@@ -116,6 +116,10 @@
116116
name = "github.com/stretchr/testify"
117117
version = "1.1.4"
118118

119+
[[constraint]]
120+
branch = "master"
121+
name = "github.com/olekukonko/tablewriter"
122+
119123
[[constraint]]
120124
name = "github.com/yosssi/ace"
121125
version = "0.0.5"

commands/benchmark.go

+2-7
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,7 @@ func init() {
4848
}
4949

5050
func benchmark(cmd *cobra.Command, args []string) error {
51-
cfg, err := InitializeConfig(benchmarkCmd)
52-
if err != nil {
53-
return err
54-
}
55-
56-
c, err := newCommandeer(cfg)
51+
c, err := InitializeConfig(false, nil, benchmarkCmd)
5752
if err != nil {
5853
return err
5954
}
@@ -84,7 +79,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
8479

8580
t := time.Now()
8681
for i := 0; i < benchmarkTimes; i++ {
87-
if err = c.resetAndBuildSites(false); err != nil {
82+
if err = c.resetAndBuildSites(); err != nil {
8883
return err
8984
}
9085
}

commands/commandeer.go

+21-13
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,18 @@ import (
1818
"github.com/gohugoio/hugo/deps"
1919
"github.com/gohugoio/hugo/helpers"
2020
"github.com/gohugoio/hugo/hugofs"
21+
src "github.com/gohugoio/hugo/source"
2122
)
2223

2324
type commandeer struct {
2425
*deps.DepsCfg
2526
pathSpec *helpers.PathSpec
2627
visitedURLs *types.EvictingStringQueue
2728

29+
staticDirsConfig []*src.Dirs
30+
2831
serverPorts []int
32+
languages helpers.Languages
2933

3034
configured bool
3135
}
@@ -44,29 +48,33 @@ func (c *commandeer) PathSpec() *helpers.PathSpec {
4448
return c.pathSpec
4549
}
4650

47-
func (c *commandeer) languages() helpers.Languages {
48-
return c.Cfg.Get("languagesSorted").(helpers.Languages)
49-
}
50-
5151
func (c *commandeer) initFs(fs *hugofs.Fs) error {
5252
c.DepsCfg.Fs = fs
5353
ps, err := helpers.NewPathSpec(fs, c.Cfg)
5454
if err != nil {
5555
return err
5656
}
5757
c.pathSpec = ps
58+
59+
dirsConfig, err := c.createStaticDirsConfig()
60+
if err != nil {
61+
return err
62+
}
63+
c.staticDirsConfig = dirsConfig
64+
5865
return nil
5966
}
6067

61-
func newCommandeer(cfg *deps.DepsCfg) (*commandeer, error) {
62-
l := cfg.Language
63-
if l == nil {
64-
l = helpers.NewDefaultLanguage(cfg.Cfg)
65-
}
66-
ps, err := helpers.NewPathSpec(cfg.Fs, l)
67-
if err != nil {
68-
return nil, err
68+
func newCommandeer(cfg *deps.DepsCfg, running bool) (*commandeer, error) {
69+
cfg.Running = running
70+
71+
var languages helpers.Languages
72+
73+
if l, ok := cfg.Cfg.Get("languagesSorted").(helpers.Languages); ok {
74+
languages = l
6975
}
7076

71-
return &commandeer{DepsCfg: cfg, pathSpec: ps, visitedURLs: types.NewEvictingStringQueue(10)}, nil
77+
c := &commandeer{DepsCfg: cfg, languages: languages, visitedURLs: types.NewEvictingStringQueue(10)}
78+
79+
return c, nil
7280
}

0 commit comments

Comments
 (0)