2015-12-07 13:57:01 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
2013-09-29 02:09:03 -04:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2013-09-29 02:09:03 -04:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2013-09-29 02:09:03 -04:00
|
|
|
//
|
|
|
|
// 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 commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"runtime/pprof"
|
2016-02-13 07:46:08 -05:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2013-09-29 02:09:03 -04:00
|
|
|
)
|
|
|
|
|
2016-02-05 12:41:40 -05:00
|
|
|
var (
|
|
|
|
benchmarkTimes int
|
|
|
|
cpuProfilefile string
|
|
|
|
memProfilefile string
|
|
|
|
)
|
2013-09-29 02:09:03 -04:00
|
|
|
|
2015-12-02 13:56:36 -05:00
|
|
|
var benchmarkCmd = &cobra.Command{
|
2013-09-29 02:09:03 -04:00
|
|
|
Use: "benchmark",
|
2016-06-09 10:03:25 -04:00
|
|
|
Short: "Benchmark Hugo by building a site a number of times.",
|
2015-08-04 05:15:12 -04:00
|
|
|
Long: `Hugo can build a site many times over and analyze the running process
|
|
|
|
creating a benchmark.`,
|
2013-09-29 02:09:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-02-05 12:41:40 -05:00
|
|
|
initHugoBuilderFlags(benchmarkCmd)
|
2016-02-05 15:30:48 -05:00
|
|
|
initBenchmarkBuildingFlags(benchmarkCmd)
|
2015-12-02 14:00:47 -05:00
|
|
|
|
2015-12-02 13:56:36 -05:00
|
|
|
benchmarkCmd.Flags().StringVar(&cpuProfilefile, "cpuprofile", "", "path/filename for the CPU profile file")
|
|
|
|
benchmarkCmd.Flags().StringVar(&memProfilefile, "memprofile", "", "path/filename for the memory profile file")
|
2015-02-05 09:48:09 -05:00
|
|
|
|
2015-12-02 13:56:36 -05:00
|
|
|
benchmarkCmd.Flags().IntVarP(&benchmarkTimes, "count", "n", 13, "number of times to build the site")
|
2015-12-02 14:00:47 -05:00
|
|
|
|
|
|
|
benchmarkCmd.RunE = benchmark
|
2013-09-29 02:09:03 -04:00
|
|
|
}
|
|
|
|
|
2015-12-02 14:00:47 -05:00
|
|
|
func benchmark(cmd *cobra.Command, args []string) error {
|
|
|
|
if err := InitializeConfig(benchmarkCmd); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-09-29 02:09:03 -04:00
|
|
|
|
2015-02-05 09:48:09 -05:00
|
|
|
if memProfilefile != "" {
|
|
|
|
f, err := os.Create(memProfilefile)
|
|
|
|
|
|
|
|
if err != nil {
|
2015-12-02 05:42:53 -05:00
|
|
|
return err
|
2015-02-05 09:48:09 -05:00
|
|
|
}
|
|
|
|
for i := 0; i < benchmarkTimes; i++ {
|
2016-08-06 08:51:50 -04:00
|
|
|
_ = resetAndbuildSites(false)
|
2015-02-05 09:48:09 -05:00
|
|
|
}
|
|
|
|
pprof.WriteHeapProfile(f)
|
|
|
|
f.Close()
|
2013-09-29 02:09:03 -04:00
|
|
|
|
2015-02-05 09:48:09 -05:00
|
|
|
} else {
|
|
|
|
if cpuProfilefile == "" {
|
|
|
|
cpuProfilefile = "/tmp/hugo-cpuprofile"
|
|
|
|
}
|
|
|
|
f, err := os.Create(cpuProfilefile)
|
2013-09-29 02:09:03 -04:00
|
|
|
|
2015-02-05 09:48:09 -05:00
|
|
|
if err != nil {
|
2015-12-02 05:42:53 -05:00
|
|
|
return err
|
2015-02-05 09:48:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pprof.StartCPUProfile(f)
|
|
|
|
defer pprof.StopCPUProfile()
|
|
|
|
for i := 0; i < benchmarkTimes; i++ {
|
2016-08-06 08:51:50 -04:00
|
|
|
_ = resetAndbuildSites(false)
|
2015-02-05 09:48:09 -05:00
|
|
|
}
|
2013-09-29 02:09:03 -04:00
|
|
|
}
|
2015-02-05 09:48:09 -05:00
|
|
|
|
2015-12-02 05:42:53 -05:00
|
|
|
return nil
|
|
|
|
|
2013-09-29 02:09:03 -04:00
|
|
|
}
|