-
Notifications
You must be signed in to change notification settings - Fork 4
/
18_panic_recover.go
70 lines (62 loc) · 1.67 KB
/
18_panic_recover.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Šestá část
// Konstrukce pro řízení běhu programu v jazyce Go (dokončení)
// https://www.root.cz/clanky/konstrukce-pro-rizeni-behu-programu-v-jazyce-go-dokonceni/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů ze šesté části:
// https://github.com/tisnik/go-root/blob/master/article_06/README.md
//
// Demonstrační příklad číslo 18:
// Praktické použití konstrukce defer, panic a recover.
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_06/18_panic_recover.html
package main
import (
"fmt"
"io"
"os"
)
func closeFile(file *os.File) {
fmt.Printf("Closing file '%s'\n", file.Name())
file.Close()
}
func copyFile(srcName, dstName string) (written int64, err error) {
defer func() {
if rec := recover(); rec != nil {
fmt.Println("Recovered in copyFile", rec)
}
}()
src, err := os.Open(srcName)
if err != nil {
panic(err)
}
defer closeFile(src)
dst, err := os.Create(dstName)
if err != nil {
panic(err)
}
defer closeFile(dst)
return io.Copy(dst, src)
}
func testCopyFile(srcName, dstName string) {
copied, err := copyFile(srcName, dstName)
if err != nil {
fmt.Printf("copyFile('%s', '%s') failed!!!\n", srcName, dstName)
} else {
fmt.Printf("Copied %d bytes\n", copied)
}
fmt.Println()
}
func main() {
testCopyFile("14_defer_practical_usage.go", "new.go")
// testCopyFile("tento_soubor_neexistuje", "new.go")
testCopyFile("new.go", "")
testCopyFile("14_defer_practical_usage.go", "/dev/full")
testCopyFile("/dev/null", "new2.go")
}