summaryrefslogtreecommitdiff
path: root/archey.new
blob: e0ae9f5e011d51f3bd7a93fa70dba0125499ee6e (plain)
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
#!/usr/bin/env python
#
# Archey [version 0.3.0]
#
# Archey is a simple system information tool written in Python.
#
# Copyright 2010 Melik Manukyan <melik@archlinux.us>
#
# ASCII art by Brett Bohnenkamper <kittykatt@silverirc.com>
# Changes Jerome Launay <jerome@projet-libre.org>
# Fedora support by YeOK <yeok@henpen.org>
#
# Distributed under the terms of the GNU General Public License v3.
# See http://www.gnu.org/licenses/gpl.txt for the full license text.

# Import libraries
import os
import sys
import subprocess
import optparse
import re
import linecache
import collections
from optparse import OptionParser
from getpass import getuser
from time import ctime, sleep

#---------------Output---------------#



#--------------Exceptions-------------#

class ArcheyException(Exception): pass
 
#---------------Dictionaries---------------#

class NoDeleteDict(dict):
	"""
	This dict silently disables deletions. This is because allthough we will want users to be able to
	edit these dicts from their config files, we don't want them to muck up somthing important, so we
	disable deletions to protect them from themselves.
	
	>>>dic = NoDeleteDict({'a':1, 'b':2})
	
	We can still access items normally:
	>>>dic['a']
	1
	
	But when we delete items, nothing happens:
	>>>del dic['b']
	>>>dic['b']
	2
	"""
	
	def __delitem__(self, name):
		return

COLOR_DICT = NoDeleteDict({
	'Arch Linux': ['\x1b[0;34m', '\x1b[1;34m'],
	'Ubuntu': ['\x1b[0;31m', '\x1b[1;31m', '\x1b[0;33m'],
	'Debian': ['\x1b[0;31m', '\x1b[1;31m'],
	'Mint': ['\x1b[0;32m', '\x1b[1;37m'],
	'Crunchbang': ['\x1b[1;37m'],
	'Fedora': ['\x1b[0;34m', '\x1b[1;37m'],
	'Clear': '\x1b[0m'
	})
	
DE_DICT = NoDeleteDict({
	'gnome-session': 'GNOME',
	'ksmserver': 'KDE',
	'xfce4-session': 'Xfce',
	'lxsession': 'LXDE'
	})

WM_DICT = NoDeleteDict({
	'awesome': 'Awesome',
	'beryl': 'Beryl',
	'blackbox': 'Blackbox',
	'compiz': 'Compiz',
	'dwm': 'DWM',
	'enlightenment': 'Enlightenment',
	'fluxbox': 'Fluxbox',
	'fvwm': 'FVWM',
	'i3': 'i3',
	'icewm': 'IceWM',
	'kwin': 'KWin',
	'metacity': 'Metacity',
	'musca': 'Musca',
	'openbox': 'Openbox',
	'pekwm': 'PekWM',
	'ratpoison': 'ratpoison',
	'scrotwm': 'ScrotWM',
	'wmaker': 'Window Maker',
	'wmfs': 'Wmfs',
	'wmii': 'wmii',
	'xfwm4': 'Xfwm',
	'xmonad': 'xmonad'
	})


LOGO_DICT = NoDeleteDict({'Arch Linux': '''{color[1]}
{color[1]}               +                {results[0]}
{color[1]}               #                {results[1]}
{color[1]}              ###               {results[2]}
{color[1]}             #####              {results[3]}
{color[1]}             ######             {results[4]}
{color[1]}            ; #####;            {results[5]}
{color[1]}           +##.#####            {results[6]}
{color[1]}          +##########           {results[7]}
{color[1]}         ######{color[0]}#####{color[1]}##;         {results[8]}
{color[1]}        ###{color[0]}############{color[1]}+        {results[9]}
{color[1]}       #{color[0]}######   #######        {results[10]}
{color[0]}     .######;     ;###;`\".      {results[11]}
{color[0]}    .#######;     ;#####.       {results[12]}
{color[0]}    #########.   .########`     {results[13]}
{color[0]}   ######'           '######    {results[14]}
{color[0]}  ;####                 ####;   {results[15]}
{color[0]}  ##'                     '##   {results[16]} 
{color[0]} #'                         `#  {results[17]}
\x1b[0m'''})

PROCESSES = str(subprocess.check_output(('ps', '-u', getuser(), '-o', 'comm',
	'--no-headers')), encoding='utf8').rstrip('\n').split('\n')

		
def detect_distro():
	if os.path.exists('/etc/pacman.conf'):
		return 'Arch Linux'
	else:
		raise ArcheyException("Unsupported distro")
	
DISTRO = detect_distro()

#---------------Classes---------------#

class Output(list):
	
	def _color(self, index):
		"""
		Returns the escape code for either:
		a) The color scheme of the distro value stored in self.distro
		or
		b) The value of the entry in COLOR_DICT for the key passed
		
		>>out = Output()
		>>out._color(1) == COLOR_DICT[out.distro][1]
		>>out._color(out.distro) == COLOR_DICT[out.distro]
		"""
		
		if isinstance(index, str):
			return COLOR_DICT[index]
		return COLOR_DICT[DISTRO][index]
	
	def _get_logo(self):
		return LOGO_DICT[DISTRO]
	
	def _center_results(self, results, max_length=17):
		"""
		Centers a list of results. Length of desired list can be given via max_length kwarg.
		
		>>>out = Output()
		>>>out._center_results([1])
		[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', 1, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']
		>>>out._center_results([1], max_length=3)
		[' ', 1, ' ']
		"""
		
		length = len(results)
		if length > max_length:
			return results[:max_length + 1]
		
		center = int(max_length/2)
		start = int(center - length/2)
		new_results = list(' ' * max_length)
		new_results[start:start + length - 1] = results
		
		return new_results
	
	def _top_results(self, results, max_length=17):
		"""
		Aligns a list of results to the top. Length of output list given via max_length kwarg.
				
		>>>out = Output()
		>>>out._top_results([1])
		[1, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']
		>>>out._top_results([1], max_length=3)
		[1, ' ', ' ']
		"""
		out = results
		out.extend(' ' * (max_length - len(results)+1))
		return out
	
	def _bottom_results(self, results, max_length=17):
		"""
		Aligns a list of results to the bottom. Length of output list given via max_length kwarg.
				
		>>>out = Output()
		>>>out._bottom_results([1])
		[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', 1]
		>>>out._bottom_results([1], max_length=3)
		[' ', ' ', 1]
		"""
		out = []
		out.extend(' ' * (max_length - len(results)+1))
		out.extend(results)
		return out
	
	def _get_results(self):
		"""
		Returns a dict of the keys and values of the currently registered display classes.
		NOTE: Will not include any key value pairs where either evaluates to False.
		
		>>>out = Output()
		>>>class TestDisplay():
		...    key = 'Foo'
		...    value = 'Bar'
		...    key_value_pair = lambda self: {self.key: self.value}
		...
		>>>out.append(TestDisplay())
		>>>out._get_results()
		{'Foo': 'Bar'}
		"""
		od = collections.OrderedDict()
		for key, value in (disp.key_value_pair() for disp in self):
			if not (key and value):
				continue
			od[key] = value
		return od
	
	def align_results(self, results, maxsize=17):
		alignment_builtins = ['top', 'bottom', 'center', 'custom']
		
		try:
			align = config.results_align
			if align == None or align not in alignment_builtins:
				raise Exception()
			if align == 'top':
				out = self._top_results(results, max_length=17)
			elif align == 'bottom':
				out = self._bottom_results(results, max_length=17)
			elif align == 'custom':
				out = config.custom_align(results, max_length=17)
			else:
				out = self._center_results(results, max_length=17)
		except:
			out = self._center_results(results, max_length=17)
		return out
		
	def output(self):
		"""
		Outputs the archey logo and information. Reads Display classes from the internal list,
		and formats them, adding color. The final pretty list is then centered (though other alignments
		may be added) and printed.
		"""
		
		results = self._get_results()
		
		unformatted_stn = '{color}{key}: {clear}{value}{clear}'
		pretty_results = []
		for key, value in results.items():
			try:
				formatted_stn = unformatted_stn.format(color=self._color(1), key=key, value=value,
				                                       clear=self._color('Clear'))
			except:
				#Fail silently, have a debug option later for noisy fail?
				pass
			else:
				pretty_results.append(formatted_stn)
		
		aligned_results = self.align_results(pretty_results)
		
		print(self._get_logo().format(color=self._color(DISTRO), results=aligned_results))

class BaseDisplay():
	"""
	All display classes should inherit this. It defigns several base functions that can be overwritten by any child classes
	
	>>>import random
	>>>class RandomNumber(BaseDisplay):
	...    key = 'Random Number'
	...    value = random.random() * 1000
	...
	>>>r = RandomNumber()
	>>>print `r`
	"""
	
	key = None
	value = None
	
	def __init__(self, args=None):
		self.arguments = args or []
	
	def __repr__(self):
		return '<{0}: key={1}, value={2}>'.format(self.__class__.__name__, self.key, self.value)
	
	def _color(self, color, bold=False):
		"""
		Returns a shell escape code for the color given as a string.
		"""
		colors = dict(zip(('BLACK', 'RED', 'GREEN', 'YELLOW', 'BLUE', 'MAGENTA', 'CYAN', 'WHITE'), range(8)))
		p = colors.get(color.upper(), None)
		return '\x1b[{0};3{1}m'.format(int(bold), p) if p else '\x1b[0m'
	
	def get_key(self):
		"""
		Return the value of the class' key attribute. If classes wish to customise key generation,
		they should override this method
		"""
		return self.key
	
	def get_value(self):
		"""
		Return the value of the class' value attribute. If classes wish to customise value generation,
		they should override this method
		"""
		return self.value
	
	def key_value_pair(self):
		"""
		Returns a tuple of the key and value of the current display.
		
		>>>disp = BaseDisplay()
		>>>disp.key = 'Foo'
		>>>disp.value = 'Bar'
		>>>disp.key_value_pair()
		('Foo', 'Bar')
		"""
		return (self.get_key(), self.get_value())

#class Hostname:
#	def __init__(self):
			
#class Distro:
#	def __init__(self):
			
#class Kernel:
#	def __init__(self):
			
class Uptime(BaseDisplay):
	key = 'Uptime'
	
	def get_uptime(self):
		fuptime = int(open('/proc/uptime').read().split('.')[0])
		day = int(fuptime / 86400)
		fuptime = fuptime % 86400
		hour = int(fuptime / 3600)
		fuptime = fuptime % 3600
		minute = int(fuptime / 60)
		
		return {'day': day, 'hour': hour, 'minute': minute}
	
	def get_value(self):
		uptime = self.get_uptime()
		
		if uptime['day']:
			value = '{day}{suffix}, '.format(day=uptime['day'], suffix='s' if day > 1 else '')
		else:
			value = ''
		value += '{hours}:{mins:02d}'.format(hours=uptime['hour'], mins=uptime['minute'])
		return value
	
class WindowManager(BaseDisplay):
	key = 'Window Manager'
	
	def get_value(self):
		wm = ''
		for key in WM_DICT.keys():
			if key in PROCESSES:
				wm = WM_DICT[key]
				break
					
		return wm
			
class DesktopEnvironment(BaseDisplay):
	key = 'Desktop Environment'
	
	def get_value(self):
		de = ''
		for key in DE_DICT.keys():
			if key in PROCESSES:
				de = DE_DICT[key]
				break
		return de
		
def enviroment_variable(klass):
	"""
	Decorate classes with this decorator. Classes decorated with enviroment_variable will
	have their __init__ function automaticly generated. This makes it very easy to write
	a class that returns an enviroment variable.
	
	>>>@enviroment_variable
	...class Lang():
	...    key = 'Language'
	...    env = 'LANG'
	...
	>>>test = Lang()
	>>>import os
	>>>assert test.value == os.getenv('LANG')
	"""
	
	def get_value(self):
		return os.getenv(self.env)
		
	if hasattr(klass, 'key') and hasattr(klass, 'env'):
		klass.get_value = get_value
	else:
		raise ArcheyException('Classes decorated with @enviroment_variable must have'
		                      'key and env attributes')
	
	return klass

@enviroment_variable
class Shell(BaseDisplay):
	key = 'Shell'
	env = 'SHELL'

@enviroment_variable	
class Terminal(BaseDisplay):
	key = 'Terminal'
	env = 'TERM'

@enviroment_variable
class User(BaseDisplay):
	key = 'User'
	env = 'USER'

def shell_command(klass):
	"""
	A class decorated with @shell_command will be treated as a class that runs a command, and then parses the output.
	
	It should have two string members, "command", the command that will be run, and "key", the key for the display.
	It should also implement one method, process_output, which should take two arguments, stdout, and stderr, and return
	a value to be displayed.
	"""
	def get_value(self):
		command = self.command.format(arguments=self.arguments)
		cmd = subprocess.Popen(command.split(),
		                       stdout=subprocess.PIPE,
		                       stdin=subprocess.PIPE,
		                       stderr=subprocess.PIPE)
		stdout, stderr = cmd.communicate()
		return self.process_output(stdout.decode('ascii'), stderr.decode('ascii'))
	
	if not all(hasattr(klass, name) for name in ('command', 'process_output')):
		raise ArcheyException("Classes decorated with @shell_command must have "
			              "a key and command attributes, and the process_output method")
	else:
		klass.get_value = get_value
	
	return klass

@shell_command
class Packages(BaseDisplay):
	key = 'Packman packages'
	command = 'pacman -Q'
	
	def process_output(self, stdout, stderr):
		#Return nothing if pacman returns errors
		if stderr:
			return None
		
		no_of_packages = len(stdout.split('\n'))
		
		return str(no_of_packages)


@shell_command
class FileSystem(BaseDisplay):
	command = 'df -TPh {arguments[0]}'
	
	conversions = {
	        'k': 2**10,
	        'M': 2**20,
	        'G': 2**30,
	        'T': 2**40,
	        'P': 2**50,
	        }
	
	def get_key(self):
		path = self.arguments[0]
		name = path.split('/')[-1] or 'Root'
		return '{0} FS'.format(name.capitalize())
	
	def process_output(self, stdout, stderr):
		#Return nothing if pacman returns errors
		if stderr:
			return None
		
		stdout = stdout.split('\n')
		line = stdout[1]
		line = re.sub(r'( +)', r' ', line)
		line = line.split(' ')
		
		persentage = int(line[5][:-1])
		used = line[3]
		total = line[2]
		fstype = line[1]
		if persentage < (1/3) * 100:
			color = self._color('green', bold=True)
		elif persentage < (2/3) * 100:
			color = self._color('blue', bold=True)
		else:
			color = self._color('red', bold=True)
		
		return '{color}{used}{clear}/{total} ({fstype})'.format(color=color, used=used, clear=self._color('clear'), total=total, fstype=fstype)
			
#class CPU():
#	def __init__(self):
			
#class RAM():
#	def __init__(self):
			
#class Disk():
#	def __init__(self):


## TEST ## <<< TEMPORARY 
def main():
	global config
	config = load_config()
	
	out = Output()
	
	displays = get_display_objects()
	
	out.extend(displays)
	out.output()
	
def get_display_objects():
	"""
	Returns a list of display objects, from the names in the list passed to the
	function as the first argument.
	"""
	names = config.display
	for raw in names:
		if ':' in raw:
			name, *raw_arguments = raw.split(':')
			if len(raw_arguments) > 1:
				raise ArcheyException('Badly formatted argument in "{0}"'.format(raw))
			else:
				arguments = [arg for arg in raw_arguments[0].split(',') if arg]
		else:
			name = raw
			arguments = []
		try:
			klass = eval(name)
		except:
			try:
				klass = eval(name.capitalize())
			except:
				raise ArcheyException('Could not find display class {0} to use'.format(name))
		
		yield klass(arguments)

def load_config():
	"""
	Imports the config file.
	"""
	config_dir = os.getenv('XDG_CONFIG_HOME')
	sys.path.append(config_dir)
	
	class _config():
		defaults = {'display':
	                            ['User',
	                            'Uptime',
	                            'WindowManager',
	                            'DesktopEnvironment',
	                            'Shell',
	                            'Terminal',
	                            'Packages',
	                            'FileSystem:/home',
	                            ]
	        }
		
		try:
			import archey as _config
		except ImportError:
			_config = None
		
		def __getattr__(self, name):
			if hasattr(self._config, name):
				return getattr(self._config, name)
			elif name in self.defaults.keys():
				return self.defaults[name]
			else:
				return None
	
	return _config()
	
	
if __name__ == '__main__':
	main()