File size: 4,022 Bytes
ec4a08f bbc6e97 ec4a08f |
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 |
import os
from typing import Sequence
import dpath
from dpath import MutableSequence
from dpath.segments import extend
def is_subpath(subpath, fullpath):
# Normalize the paths to handle different formats and separators
subpath = os.path.normpath(subpath)
fullpath = os.path.normpath(fullpath)
# Split the paths into individual components
subpath_components = subpath.split(os.path.sep)
fullpath_components = fullpath.split(os.path.sep)
# Check if the full path starts with the subpath
return fullpath_components[: len(subpath_components)] == subpath_components
def dpath_get(dic, query_path):
return [v for _, v in dpath.search(dic, query_path, yielded=True)]
def dpath_set_one(dic, query_path, value):
n = dpath.set(dic, query_path, value)
if n != 1:
raise ValueError(f'query "{query_path}" matched multiple items in dict: {dic}')
def dict_delete(dic, query_path):
n = dpath.delete(dic, query_path)
def dict_creator(current, segments, i, hints=()):
"""
Create missing path components. If the segment is an int, then it will
create a list. Otherwise a dictionary is created.
set(obj, segments, value) -> obj
"""
segment = segments[i]
length = len(segments)
if isinstance(current, Sequence):
segment = int(segment)
if isinstance(current, MutableSequence):
extend(current, segment)
# Infer the type from the hints provided.
if i < len(hints):
current[segment] = hints[i][1]()
else:
# Peek at the next segment to determine if we should be
# creating an array for it to access or dictionary.
if i + 1 < length:
segment_next = segments[i + 1]
else:
segment_next = None
if isinstance(segment_next, int) or (isinstance(segment_next, str) and segment_next.isdecimal()):
current[segment] = []
else:
current[segment] = {}
def dpath_set(dic, query_path, value, not_exist_ok=True):
paths = [p for p, _ in dpath.search(dic, query_path, yielded=True)]
if len(paths) == 0 and not_exist_ok:
dpath.new(dic, query_path, value, creator=dict_creator)
else:
if len(paths) != 1:
raise ValueError(f'query "{query_path}" matched {len(paths)} items in dict: {dic}. should match only one.')
for path in paths:
dpath_set_one(dic, path, value)
def dpath_set_multiple(dic, query_path, values, not_exist_ok=True):
paths = [p for p, _ in dpath.search(dic, query_path, yielded=True)]
if len(paths) == 0:
if not_exist_ok:
raise ValueError(f"Cannot set multiple values to non-existing path: {query_path}")
raise ValueError(f'query "{query_path}" did not match any item in dict: {dic}')
else:
if len(paths) != len(values):
raise ValueError(
f'query "{query_path}" matched {len(paths)} items in dict: {dic} but {len(values)} values are provided. should match only one.'
)
for path, value in zip(paths, values):
dpath_set_one(dic, path, value)
def dict_get(dic, query, use_dpath=True, not_exist_ok=False, default=None):
if use_dpath:
values = dpath_get(dic, query)
if len(values) == 0 and not_exist_ok:
return default
elif len(values) == 0:
raise ValueError(f'query "{query}" did not match any item in dict: {dic}')
if len(values) == 1 and "*" not in query and "," not in query:
return values[0]
return values
else:
if not_exist_ok:
return dic.get(query, default)
else:
return dic[query]
def dict_set(dic, query, value, use_dpath=True, not_exist_ok=True, set_multiple=False):
if use_dpath:
if set_multiple:
dpath_set_multiple(dic, query, value, not_exist_ok=not_exist_ok)
else:
dpath_set(dic, query, value, not_exist_ok=not_exist_ok)
else:
dic[query] = value
|