blob: d1b7d124aae874acce0af008c20e60a52801462b (
plain) (
blame)
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
|
import os
import time
from .exceptions import IncompleteEnv
from .parsers import CBCConfigParser, ExtendedInterpolation
'''
[cbc_cgi]
local_server: true
local_port: 8888
local_sources: /srv/conda/sources
protocol: http
url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port}
'''
class Environment(object):
def __init__(self, *args, **kwargs):
self.environ = os.environ.copy()
self.config = {}
self.cbchome = None
self.pwd = os.path.abspath(os.curdir)
self.pkgdir = None
self.rcpath = os.path.expanduser('~/.cbcrc')
self.configrc = None
if 'CBC_HOME' in kwargs:
self.cbchome = kwargs['CBC_HOME']
# I want the local user environment to override what is
# passed to the class.
if 'CBC_HOME' in self.environ:
self.cbchome = self.environ['CBC_HOME']
if os.path.exists(self.rcpath):
if os.path.isfile(self.rcpath):
self.configrc = CBCConfigParser(interpolation=ExtendedInterpolation())
self.configrc.read(self.rcpath)
if 'settings' in self.configrc.sections():
if 'path' in self.configrc['settings']:
self.cbchome = self.configrc['settings']['path']
if not self.cbchome:
raise IncompleteEnv('.cbcrc empty path detected. Check: settings -> path')
self.configrc['cbc_cgi'] = {}
self.configrc['cbc_cgi']['local_server'] = 'true'
self.configrc['cbc_cgi']['local_port'] = '8888'
self.configrc['cbc_cgi']['local_sources'] = os.path.expanduser('~')
self.configrc['cbc_cgi']['protocol'] = 'http'
self.configrc['cbc_cgi']['url'] = '{0}://localhost:{1}'.format(self.configrc['cbc_cgi']['protocol'], self.configrc['cbc_cgi']['local_port'])
if self.cbchome is None:
raise IncompleteEnv('CBC_HOME is undefined.')
self.cbchome = os.path.abspath(self.cbchome)
if not os.path.exists(self.cbchome):
os.makedirs(self.cbchome)
def _script_meta(self):
self.config['script'] = {}
self.config['script']['meta'] = self.join('meta.yaml')
self.config['script']['build_linux'] = self.join('build.sh')
self.config['script']['build_windows'] = self.join('bld.bat')
def join(self, filename):
return os.path.abspath(os.path.join(self.pkgdir, filename))
def mkpkgdir(self, pkgname):
pkgdir = os.path.join(self.cbchome, pkgname)
if not pkgname:
raise IncompleteEnv('Empty package name passed to {0}'.format(__name__))
if not os.path.exists(pkgdir):
os.mkdir(pkgdir)
self.pkgdir = pkgdir
self._script_meta()
|