-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathutil.py
401 lines (312 loc) · 10.9 KB
/
util.py
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
"""
Misc helper functions.
"""
import colorsys
import json
import logging
import os
import platform
import re
import shutil
import subprocess
import sys
import hashlib
import copy
has_fcntl = False
fcntl_warning = ""
try:
import fcntl
has_fcntl = True
except ImportError:
fcntl_warning = "{}, {}".format(
"can't skip blocking io in current platform",
"program could hang indefinitely",
)
class Color:
"""Color formats."""
alpha_num = "100"
def __init__(self, hex_color):
self.hex_color = hex_color
def __str__(self):
return self.hex_color
@property
def rgb(self):
"""Convert a hex color to rgb."""
return "%s,%s,%s" % (*hex_to_rgb(self.hex_color),)
@property
def rgbspace(self):
"""Convert a hex color to rgb separated by spaces."""
return "%s %s %s" % (*hex_to_rgb(self.hex_color),)
@property
def xrgba(self):
"""Convert a hex color to xrdb rgba."""
return hex_to_xrgba(self.hex_color)
@property
def rgba(self):
"""Convert a hex color to rgba."""
return "rgba(%s,%s,%s,%s)" % (
*hex_to_rgb(self.hex_color),
self.alpha_dec,
)
@property
def hex_argb(self):
"""Convert an alpha hex color to argb hex."""
return "#%02X%s" % (
int(int(self.alpha_num) * 255 / 100),
self.hex_color[1:],
)
@property
def alpha(self):
"""Add URxvt alpha value to color."""
return "[%s]%s" % (self.alpha_num, self.hex_color)
@property
def alpha_dec(self):
"""Export the alpha value as a decimal number in [0, 1]."""
return int(self.alpha_num) / 100
@property
def alpha_hex(self):
"""Export the alpha value as a hexdecimal number in [00, FF]."""
return "%02X" % (int(int(self.alpha_num) * 255 / 100))
@property
def decimal(self):
"""Export color in decimal."""
return "%s%s" % ("#", int(self.hex_color[1:], 16))
@property
def decimal_strip(self):
"""Strip '#' from decimal color."""
return int(self.hex_color[1:], 16)
@property
def octal(self):
"""Export color in octal."""
return "%s%s" % ("#", oct(int(self.hex_color[1:], 16))[2:])
@property
def octal_strip(self):
"""Strip '#' from octal color."""
return oct(int(self.hex_color[1:], 16))[2:]
@property
def strip(self):
"""Strip '#' from color."""
return self.hex_color[1:]
@property
def red(self):
"""Red value as float between 0 and 1."""
return "%.3f" % (hex_to_rgb(self.hex_color)[0] / 255.0)
@property
def green(self):
"""Green value as float between 0 and 1."""
return "%.3f" % (hex_to_rgb(self.hex_color)[1] / 255.0)
@property
def blue(self):
"""Blue value as float between 0 and 1."""
return "%.3f" % (hex_to_rgb(self.hex_color)[2] / 255.0)
@property
def red_hex(self):
"""Red value as hex."""
return "%s" % (self.hex_color)[1:3]
@property
def green_hex(self):
"""Green value as hex."""
return "%s" % (self.hex_color)[3:5]
@property
def blue_hex(self):
"""Blue value as hex."""
return "%s" % (self.hex_color)[5:]
@property
def red_dec(self):
"""Red value as decimal."""
return "%s" % hex_to_rgb(self.hex_color)[0]
@property
def green_dec(self):
"""Green value as decimal."""
return "%s" % hex_to_rgb(self.hex_color)[1]
@property
def blue_dec(self):
"""Blue value as decimal."""
return "%s" % hex_to_rgb(self.hex_color)[2]
@property
def w3_luminance(self):
"""Luminance value of the color according to W3 formula"""
color_channels = [float(self.red), float(self.green), float(self.blue)]
for index, channel in enumerate(color_channels):
if channel <= 0.04045:
color_channels[index] = channel / 12.92
else:
color_channels[index] = ((channel + 0.055) / 1.055) ** 2.4
return (
(0.2126 * color_channels[0])
+ (0.7152 * color_channels[1])
+ (0.0722 * color_channels[2])
)
def lighten(self, percent):
"""Lighten color by percent."""
percent = float(re.sub(r"[\D\.]", "", str(percent)))
return Color(lighten_color(self.hex_color, percent / 100))
def darken(self, percent):
"""Darken color by percent."""
percent = float(re.sub(r"[\D\.]", "", str(percent)))
return Color(darken_color(self.hex_color, percent / 100))
def saturate(self, percent):
"""Saturate a color."""
percent = float(re.sub(r"[\D\.]", "", str(percent)))
return Color(saturate_color(self.hex_color, percent / 100))
def adjust_alpha(self, alpha = "100"):
adjusted = copy.copy(self)
adjusted.alpha_num = alpha
return adjusted
def read_file(input_file):
"""Read data from a file and trim newlines."""
with open(input_file, "r") as file:
return file.read().splitlines()
def read_file_json(input_file):
"""Read data from a json file."""
with open(input_file, "r") as json_file:
return json.load(json_file)
def read_file_raw(input_file):
"""Read data from a file as is, don't strip
newlines or other special characters."""
with open(input_file, "r") as file:
return file.readlines()
def save_file(data, export_file):
"""Write data to a file."""
create_dir(os.path.dirname(export_file))
if has_fcntl:
try:
with open(export_file, "w") as file:
# Get the current flags and add non-blocking mode
# to skip TTYs suspended by Flow Control
# https://www.gnu.org/software/libc/manual/html_node/Getting-File-Status-Flags.html
# https://www.gnu.org/software/libc/manual/html_node/Open_002dtime-Flags.html
flags = fcntl.fcntl(file, fcntl.F_GETFL)
fcntl.fcntl(file, fcntl.F_SETFL, flags | os.O_NONBLOCK)
file.write(data)
except PermissionError:
logging.warning("Couldn't write to %s.", export_file)
except BlockingIOError:
logging.warning(
"Couldn't write to %s, not accepting data", export_file
)
else:
try:
with open(export_file, "w") as file:
file.write(data)
except PermissionError:
logging.warning("Couldn't write to %s.", export_file)
def save_file_json(data, export_file):
"""Write data to a json file."""
create_dir(os.path.dirname(export_file))
with open(export_file, "w") as file:
json.dump(data, file, indent=4)
def get_img_checksum(img):
checksum = hashlib.new("md5", usedforsecurity=False)
with open(img, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
checksum.update(chunk)
return checksum.hexdigest()
def create_dir(directory):
"""Alias to create the cache dir."""
os.makedirs(directory, exist_ok=True)
def setup_logging():
"""Logging config."""
logging.basicConfig(
format=(
"[%(levelname)s\033[0m] "
"\033[1;31m%(module)s\033[0m: "
"%(message)s"
),
level=logging.INFO,
stream=sys.stdout,
)
logging.addLevelName(logging.ERROR, "\033[1;31mE")
logging.addLevelName(logging.INFO, "\033[1;32mI")
logging.addLevelName(logging.WARNING, "\033[1;33mW")
def hex_to_rgb(color):
"""Convert a hex color to rgb."""
return tuple(bytes.fromhex(color.strip("#")))
def hex_to_xrgba(color):
"""Convert a hex color to xrdb rgba."""
col = color.lower().strip("#")
return "%s%s/%s%s/%s%s/ff" % (*col,)
def rgb_to_hex(color):
"""Convert an rgb color to hex."""
return "#%02x%02x%02x" % (*color,)
def darken_color(color, amount):
"""Darken a hex color."""
color = [int(col * (1 - amount)) for col in hex_to_rgb(color)]
return rgb_to_hex(color)
def lighten_color(color, amount):
"""Lighten a hex color."""
color = [int(col + (255 - col) * amount) for col in hex_to_rgb(color)]
return rgb_to_hex(color)
def blend_color(color, color2):
"""Blend two colors together."""
r1, g1, b1 = hex_to_rgb(color)
r2, g2, b2 = hex_to_rgb(color2)
r3 = int(0.5 * r1 + 0.5 * r2)
g3 = int(0.5 * g1 + 0.5 * g2)
b3 = int(0.5 * b1 + 0.5 * b2)
return rgb_to_hex((r3, g3, b3))
def saturate_color(color, amount):
"""Saturate a hex color."""
r, g, b = hex_to_rgb(color)
r, g, b = [x / 255.0 for x in (r, g, b)]
h, l, s = colorsys.rgb_to_hls(r, g, b)
s = amount
r, g, b = colorsys.hls_to_rgb(h, l, s)
r, g, b = [x * 255.0 for x in (r, g, b)]
return rgb_to_hex((int(r), int(g), int(b)))
def rgb_to_yiq(color):
"""Sort a list of colors."""
return colorsys.rgb_to_yiq(*hex_to_rgb(color))
def disown(cmd):
"""Call a system command in the background,
disown it and hide it's output."""
subprocess.Popen(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
def get_pid(name):
"""Check if process is running by name."""
if not shutil.which("pidof"):
return False
try:
if platform.system() != "Darwin":
subprocess.check_output(["pidof", "-s", name])
else:
subprocess.check_output(["pidof", name])
except subprocess.CalledProcessError:
return False
return True
def has_im():
"""Check to see if the user has im installed."""
if shutil.which("magick"):
return "magick"
if shutil.which("convert"):
return "convert"
logging.error("Problem running image averaging command.")
logging.error("Imagemagick wasn't found on your system.")
sys.exit(1)
def image_average_color(img):
"""Get the average color of an image using imagemagick
by resizing to 1x1"""
# Attempt to run the imagemagick command
# Resizes to 1x1 and enumerates all pixel data (one pixel) to stdout
# Command adapted from a stackoverflow thread, but tinkered with because the
# thread was a decade old:
# # https://stackoverflow.com/questions/25488338/how-to-find-average-color-of-an-image-with-imagemagick
cmd_flags = [
"-resize",
"1x1!",
"-format",
'"%[fx:int(255*r+.5)],%[fx:int(255*g+.5)],%[fx:int(255*b+.5)]"',
"txt:-",
]
magick_command = has_im()
try:
magick_output = subprocess.run(
[magick_command, img] + cmd_flags, stdout=subprocess.PIPE
)
except subprocess.CalledProcessError as Err:
logging.error(
"Problem running image averaging command. Is imagemagick installed?"
)
logging.error("Imagemagick error: %s", Err)
return ""
# Regex hex code from the command output
return re.search("#[0-9A-Fa-f]{6}", magick_output.stdout.decode("utf-8"))[0]