summaryrefslogtreecommitdiff
blob: 3945ebf93531e366bf1cde405ee79c5fbcbd68d4 (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
#!/usr/bin/env python
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Universal Select Tool
# Profiling Tool
# uprofile.py mephx.x@gmail.com

import os
import re
import sys
import stat
import string
import traceback

from umodule import *
from uio import filesystem
from uio import printsystem


verbose = False
printsystem.set_type('profile')

class Profile:

	def __init__(self, name):
		self.name = name
		self.author = 'unnamed'
		self.version = '0.1'
		self.description = 'Empty'
		self.actions = []
		self.actions.append(Action(name = 'set', \
			description = 'Set this profile for this folder.', \
			type = 'profile'))
		self.actions.append(Action(name = 'default', \
			description = 'Set this profile the default profile.', \
			type = 'profile'))
		return

class UniversalProfileTool:
	
	def __init__(self):
		self.profiles = []
		return
	
	def get_profile(self, name):
		profile = Profile(name)
		return profile
		
	def get_profiles(self):
		""" Returns the list of available uprofiles """
		for profile in filesystem.list_dir('.uprofile/'):
			self.profiles.append(Profile(profile))
		return
		
	def parse_argv(self, args):
		global verbose, version
		profile = None
		profiles = None
		printsystem.use_colors(True)
		for arg in args:
			if arg == '-v':
				verbose = True
				printsystem.verbose()
				args = args[1:]
			elif arg == '-nc':
				printsystem.use_colors(False)
				args = args[1:]
	
		if len(args) < 1:
			self.get_profiles()
			profiles = self.profiles
		elif len(args) == 1:
			profile = self.get_profile(args[0])
		if len(args) == 2:
			args = None
		else:
			args = args[2:]
		
		return [profile, profiles, args]

		
def main():
	uprofile = UniversalProfileTool()
	try:
		list = uprofile.parse_argv(sys.argv[1:])
		
		printsystem.print_ui(profile = list[0], \
			profiles = list[1], args = list[2])
		
	except UserWarning, warning:
		printsystem.print_exception(warning, True)
	except Exception, exception:
		printsystem.print_exception(exception)
		if verbose:
			traceback.print_exc()
			printsystem.print_line('')
		exit(1)
	exit(0)

if __name__ == '__main__': main()