-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ramdisk_darwin.go
142 lines (121 loc) · 4.6 KB
/
ramdisk_darwin.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package ramdisk
import (
"bytes"
"fmt"
"log"
"os/exec"
"path/filepath"
"github.com/mroth/ramdisk/datasize"
)
// DarwinPlatformImplementation is the implementation for macOS systems.
//
// Some notes and performance observations at:
// https://jakobstoeck.de/2017/ramdisk-for-faster-applications-under-macos/
type DarwinPlatformImplementation struct{}
func init() {
implementation = DarwinPlatformImplementation{}
}
const (
// new macs seem to have a device block size that is significantly larger,
// at 4096B, however hdiutil attach apparently still uses old size.
blockSize uint64 = datasize.B * 512
)
// create creates a macOS ramdisk device, formats it, and mounts it.
//
// Even if an error is generated, a reference to a partial RamDisk struct may be
// returned, as the error may have occurred after device creation or formatting
// (for example, a mounting error), and the user may wish to know where the
// orphaned device was left. For example, you could end up with a results such
// as:
//
// RamDisk{DeviceID:"/dev/disk2", MountPath:""}, Err:"Failed to mount at /foo"
//
func (i DarwinPlatformImplementation) create(opts Options) (*RAMDisk, error) {
var rd RAMDisk
desiredBlocks := opts.Size / blockSize
devicePath, deviceErr := createDevice(desiredBlocks)
if deviceErr != nil {
return nil, deviceErr
} else if opts.Logger != nil {
opts.Logger.Printf("Created ramdisk %s\n", devicePath)
}
rd.DevicePath = devicePath
volumeName := filepath.Base(opts.MountPath)
formatErr := formatHFS(devicePath, volumeName, opts.Logger)
if formatErr != nil {
return &rd, fmt.Errorf("format: %v", formatErr)
}
mountErr := mountHFS(devicePath, opts.MountPath, opts.Logger)
if mountErr != nil {
return &rd, mountErr
}
rd.MountPath = opts.MountPath // set this only once successfully mounted
return &rd, nil
}
// use hdiutil to create the initial ramdisk device, not yet formatted
// returns the device path (e.g. /dev/disk2) or an error
func createDevice(blockSize uint64) (string, error) {
path := fmt.Sprintf("ram://%d", blockSize)
cmd := exec.Command("hdiutil", "attach", "-nomount", path)
output, err := cmd.Output()
devicePath := bytes.TrimSpace(output)
return string(devicePath), err
}
func formatHFS(devicePath, volumeName string, logger *log.Logger) error {
cmd := exec.Command("newfs_hfs", "-v", volumeName, devicePath)
stdout, err := cmd.Output()
if err == nil && logger != nil {
logger.Printf("%s\n", bytes.TrimSpace(stdout))
}
return err
}
func mountHFS(devicePath, mountPath string, logger *log.Logger) error {
cmd := exec.Command("mount", "-t", "hfs", "-v", devicePath, mountPath)
stdout, err := cmd.Output()
if err == nil && logger != nil {
logger.Printf("%s\n", bytes.TrimSpace(stdout))
}
return err
}
func (i DarwinPlatformImplementation) destroy(devicePath string) error {
cmd := exec.Command("diskutil", "eject", devicePath)
// diskutil is a bad citizen, and *sometimes* writes to stdout on error
// conditions...but not always! What a mess. So as a workaround we grab
// stdout, and if if detect an ExitError, we check for Stderr the generic Go
// generated replacement that is populated when Stderr is nil (see godocs
// for Cmd.Output for a reference about that) and it is present, we
// overwrite it with the stdout contents which are probably the actual error
// msg.
out, err := cmd.Output()
if exiterr, ok := err.(*exec.ExitError); ok &&
string(exiterr.Stderr) == "exit status 1" &&
string(out) != "" {
exiterr.Stderr = out
return exiterr
}
return err
}
/*
Some notes regarding doing this with APFS in the future instead. (Any real
benefit tho?)
This implementation formats and mounts, will end up at /Volumes/<volName>
newfs_apfs will also format, however those dont appear to be mountable via
mount_apfs on top of normal filesystem?
https://stackoverflow.com/questions/46224103/create-apfs-ram-disk-on-macos-high-sierra
Usage: diskutil partitionDisk MountPoint|DiskIdentifier|DeviceNode
[numberOfPartitions] [APM[Format]|MBR[Format]|GPT[Format]] [part1Format
part1Name part1Size part2Format part2Name part2Size part3Format
part3Name part3Size ...] diskutil partitionDisk $(hdiutil attach
-nomount ram://2048000) 1 GPTFormat APFS 'ramdisk' '100%'
unmount apfs: diskutil unmountDisk
*/
// func formatAPFS(devicePath string, volumeName string) error {
// const numPartitions = "1"
// const partitionScheme = "GPTFormat"
// const partitionFormat = "APFS"
// const partitionSize = "100%"
// cmd := exec.Command("diskutil",
// "partitionDisk", devicePath, numPartitions, partitionScheme,
// partitionFormat, volumeName, partitionSize)
// return cmd.Run()
// }