aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/os_unix.go
blob: 6722ec9cb6c5e97a07b3c8abb2ec62325f4158c0 (plain) (blame)
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
// Copyright (c) 2012, Suryandaru Triandana <syndtr@gmail.com>
// All rights reserved.
//
// Use of this source code is governed by a BSD-style license.
//
// +build darwin dragonfly freebsd linux netbsd openbsd solaris

package main

import (
    "os"
    "syscall"
)

func rename(oldpath, newpath string) error {
    return os.Rename(oldpath, newpath)
}

func isErrInvalid(err error) bool {
    if err == os.ErrInvalid {
        return true
    }
    // Go < 1.8
    if syserr, ok := err.(*os.SyscallError); ok && syserr.Err == syscall.EINVAL {
        return true
    }
    // Go >= 1.8 returns *os.PathError instead
    if patherr, ok := err.(*os.PathError); ok && patherr.Err == syscall.EINVAL {
        return true
    }
    return false
}

func syncDir(name string) error {
    // As per fsync manpage, Linux seems to expect fsync on directory, however
    // some system don't support this, so we will ignore syscall.EINVAL.
    //
    // From fsync(2):
    //   Calling fsync() does not necessarily ensure that the entry in the
    //   directory containing the file has also reached disk. For that an
    //   explicit fsync() on a file descriptor for the directory is also needed.
    f, err := os.Open(name)
    if err != nil {
        return err
    }
    defer f.Close()
    if err := f.Sync(); err != nil && !isErrInvalid(err) {
        return err
    }
    return nil
}