2007-04-10 04:47:37 +02:00
|
|
|
"""Calculates file-paths for the Sugar working environment"""
|
2007-06-24 14:43:48 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2006-10-15 01:08:44 +02:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
2006-05-18 06:24:32 +02:00
|
|
|
import os
|
2006-05-22 03:31:57 +02:00
|
|
|
|
2007-03-09 14:57:54 +01:00
|
|
|
def _get_prefix_path(base, path=None):
|
|
|
|
if os.environ.has_key('SUGAR_PREFIX'):
|
|
|
|
prefix = os.environ['SUGAR_PREFIX']
|
|
|
|
else:
|
2007-05-15 11:50:21 +02:00
|
|
|
raise RuntimeError("The SUGAR_PREFIX environment variable is not set.")
|
2007-03-09 14:57:54 +01:00
|
|
|
|
|
|
|
if path:
|
|
|
|
return os.path.join(prefix, base, path)
|
|
|
|
else:
|
|
|
|
return os.path.join(prefix, base)
|
|
|
|
|
2007-04-15 13:54:53 +02:00
|
|
|
def _get_sugar_path(base, path=None):
|
|
|
|
if os.environ.has_key('SUGAR_PATH'):
|
|
|
|
sugar_path = os.environ['SUGAR_PATH']
|
|
|
|
else:
|
2007-05-01 16:42:43 +02:00
|
|
|
raise RuntimeError("The SUGAR_PATH environment variable is not set.")
|
2007-04-15 13:54:53 +02:00
|
|
|
|
|
|
|
if path:
|
|
|
|
return os.path.join(sugar_path, base, path)
|
|
|
|
else:
|
|
|
|
return os.path.join(sugar_path, base)
|
|
|
|
|
2007-01-11 11:20:08 +01:00
|
|
|
def is_emulator():
|
|
|
|
if os.environ.has_key('SUGAR_EMULATOR'):
|
|
|
|
if os.environ['SUGAR_EMULATOR'] == 'yes':
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2007-03-09 17:29:03 +01:00
|
|
|
def get_profile_path(path=None):
|
2006-12-04 20:12:24 +01:00
|
|
|
if os.environ.has_key('SUGAR_PROFILE'):
|
|
|
|
profile_id = os.environ['SUGAR_PROFILE']
|
|
|
|
else:
|
|
|
|
profile_id = 'default'
|
2006-08-22 16:15:34 +02:00
|
|
|
|
2007-03-09 17:29:03 +01:00
|
|
|
base = os.path.join(os.path.expanduser('~/.sugar'), profile_id)
|
|
|
|
if not os.path.isdir(base):
|
2006-12-04 20:12:24 +01:00
|
|
|
try:
|
2007-03-09 17:29:03 +01:00
|
|
|
os.makedirs(base)
|
2006-12-04 20:12:24 +01:00
|
|
|
except OSError, exc:
|
|
|
|
print "Could not create user directory."
|
2006-10-16 13:34:43 +02:00
|
|
|
|
2007-03-09 17:29:03 +01:00
|
|
|
if path != None:
|
|
|
|
return os.path.join(base, path)
|
|
|
|
else:
|
|
|
|
return base
|
2006-06-18 01:54:12 +02:00
|
|
|
|
2007-10-09 21:18:54 +02:00
|
|
|
def get_logs_path(path=None):
|
|
|
|
base = get_profile_path('logs')
|
|
|
|
if path != None:
|
|
|
|
return os.path.join(base, path)
|
|
|
|
else:
|
|
|
|
return base
|
|
|
|
|
2007-03-09 14:57:54 +01:00
|
|
|
def get_user_activities_path():
|
2007-03-18 13:48:34 +01:00
|
|
|
return os.path.expanduser('~/Activities')
|
2007-01-27 12:54:56 +01:00
|
|
|
|
2007-09-06 22:24:44 +02:00
|
|
|
def get_user_library_path():
|
|
|
|
return os.path.expanduser('~/Library')
|
|
|
|
|
2007-03-23 15:05:42 +01:00
|
|
|
def get_locale_path(path=None):
|
|
|
|
return _get_prefix_path('share/locale', path)
|
|
|
|
|
2007-04-15 13:54:53 +02:00
|
|
|
def get_bin_path(path=None):
|
2007-10-18 12:57:04 +02:00
|
|
|
return _get_prefix_path('bin', path)
|
2007-04-15 13:54:53 +02:00
|
|
|
|
2007-03-09 14:57:54 +01:00
|
|
|
def get_service_path(name):
|
2007-04-15 13:54:53 +02:00
|
|
|
return _get_sugar_path('services', name)
|
2007-03-09 14:57:54 +01:00
|
|
|
|
|
|
|
def get_shell_path(path=None):
|
2007-04-15 13:54:53 +02:00
|
|
|
return _get_sugar_path('shell', path)
|
2007-03-22 20:34:07 +01:00
|
|
|
|
|
|
|
def get_data_path(path=None):
|
2007-04-15 13:54:53 +02:00
|
|
|
return _get_sugar_path('data', path)
|