58 lines
1.0 KiB
Go
58 lines
1.0 KiB
Go
// For more tutorials: https://blog.learngoprogramming.com
|
|
//
|
|
// Copyright © 2018 Inanc Gumus
|
|
// Learn Go Programming Course
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
in := bufio.NewScanner(os.Stdin)
|
|
|
|
p := newParser()
|
|
for in.Scan() {
|
|
// dom, err := parse(p, in.Text())
|
|
// if err != nil {
|
|
// fmt.Println(err)
|
|
// return
|
|
// }
|
|
|
|
// p = push(p, dom)
|
|
|
|
p = add(p, in.Text())
|
|
}
|
|
|
|
summarize(p)
|
|
dumpErrs(in.Err(), err(p))
|
|
}
|
|
|
|
// funcs not always need to be reused.
|
|
// here, it tells about what it does: it summarizes the parsing result.
|
|
func summarize(p parser) {
|
|
// Print the visits per domain
|
|
for _, d := range p.domains {
|
|
vis := p.sum[d.name]
|
|
|
|
fmt.Printf("%-25s -> %d\n", d.name, vis)
|
|
}
|
|
|
|
// Print the total visits for all domains
|
|
fmt.Printf("\n%-25s -> %d\n", "TOTAL", p.total)
|
|
}
|
|
|
|
// this variadic func simplifies the multiple error handling
|
|
func dumpErrs(errs ...error) {
|
|
for _, err := range errs {
|
|
if err != nil {
|
|
fmt.Printf("> Err: %s\n", err)
|
|
}
|
|
}
|
|
}
|