-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add draft scripts for macOS drive split
- Loading branch information
1 parent
02ae72a
commit 0f23eff
Showing
3 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import re | ||
import shutil | ||
import subprocess | ||
|
||
|
||
def size_it(input_string): | ||
match = re.search(r'\((\d+) Bytes\)', input_string) | ||
if match: | ||
return int(match.group(1)) | ||
|
||
|
||
def get_mountpoints(disk_node): | ||
result = subprocess.run( | ||
[f"diskutil info -plist {disk_node}"], shell=True, capture_output=True, text=True | ||
) | ||
import plistlib | ||
if mountpoint := plistlib.loads(result.stdout.encode())["MountPoint"]: | ||
return mountpoint | ||
else: | ||
print("No mountpoint found!!") | ||
return "/" | ||
|
||
|
||
def diskutil_all(): | ||
result = subprocess.run("diskutil info -all", shell=True, capture_output=True, text=True) | ||
disks = [] | ||
data_dict = {} | ||
for line in result.stdout.splitlines(): | ||
line = line.strip() | ||
if not line: | ||
continue | ||
if line == "**********": | ||
disks.append(data_dict) | ||
data_dict = {} | ||
else: | ||
key, value = line.split(":", 1) | ||
data_dict[key.strip()] = value.strip() | ||
data = [] | ||
for disk in disks: | ||
if disk.get("Virtual") == "No": | ||
new_dict = { | ||
**{ | ||
"Name": disk["Device / Media Name"], | ||
"Size": size_it(disk["Disk Size"]), | ||
"DeviceID": disk["Device Identifier"], | ||
"Node": disk["Device Node"] | ||
}, | ||
**shutil.disk_usage( | ||
get_mountpoints(disk["Device Node"]) | ||
)._asdict() | ||
} | ||
new_dict["total"] = new_dict["Size"] | ||
data.append(new_dict) | ||
return data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import json | ||
import re | ||
import subprocess | ||
|
||
|
||
def size_it(input_string): | ||
match = re.search(r'\((\d+) Bytes\)', input_string) | ||
if match: | ||
return int(match.group(1)) | ||
|
||
|
||
def update_mountpoints(disks, device_ids): | ||
for disk in disks: | ||
if disk.get("Mount Point"): | ||
if disk.get("Part of Whole") in device_ids.keys(): | ||
device_ids[disk["Part of Whole"]].append(disk.get("Mount Point")) | ||
for device_id in device_ids: | ||
if disk.get("APFS Physical Store", "").startswith(device_id): | ||
device_ids[device_id].append(disk.get("Mount Point")) | ||
return device_ids | ||
|
||
|
||
def diskutil_all(): | ||
result = subprocess.run("diskutil info -all", shell=True, capture_output=True, text=True) | ||
disks = [] | ||
data_dict = {} | ||
for line in result.stdout.splitlines(): | ||
line = line.strip() | ||
if not line: | ||
continue | ||
if line == "**********": | ||
disks.append(data_dict) | ||
data_dict = {} | ||
else: | ||
key, value = line.split(":", 1) | ||
data_dict[key.strip()] = value.strip() | ||
data = [] | ||
device_ids = {} | ||
for disk in disks: | ||
if disk.get("Virtual") == "No": | ||
new_dict = { | ||
**{ | ||
"Name": disk["Device / Media Name"], | ||
"Size": size_it(disk["Disk Size"]), | ||
"DeviceID": disk["Device Identifier"], | ||
"Node": disk["Device Node"], | ||
}, | ||
} | ||
data.append(new_dict) | ||
device_ids[disk["Device Identifier"]] = [] | ||
mountpoints = update_mountpoints(disks, device_ids) | ||
for device in data: | ||
device["Mountpoints"] = mountpoints[device["DeviceID"]] | ||
return data | ||
|
||
|
||
if __name__ == '__main__': | ||
dump = diskutil_all() | ||
print(json.dumps(dump, indent=2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import json | ||
import subprocess | ||
|
||
|
||
def sys_profiler(): | ||
result = subprocess.run( | ||
["/usr/sbin/system_profiler", "SPStorageDataType", "-json"], capture_output=True, text=True | ||
) | ||
data = json.loads(result.stdout) | ||
usable_volumes = [] | ||
for volume in data["SPStorageDataType"]: | ||
if volume.get("writable") == "yes": | ||
usable_volumes.append(volume) | ||
for mlist in usable_volumes: | ||
new_dict = { | ||
"DeviceID": mlist["_name"], | ||
"Size": mlist["size_in_bytes"], | ||
"Name": mlist["physical_drive"]["device_name"], | ||
"Mountpoints": mlist["mount_point"] | ||
} | ||
print(new_dict) | ||
|
||
|
||
if __name__ == '__main__': | ||
sys_profiler() |