community.general/lib/ansible/utils/path.py

47 lines
1.5 KiB
Python
Raw Normal View History

2015-01-28 19:17:56 +00:00
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
2015-04-13 20:28:01 +00:00
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
2015-01-28 19:17:56 +00:00
import os
import stat
from time import sleep
2015-06-02 17:01:02 +00:00
from errno import EEXIST
2015-01-28 19:17:56 +00:00
__all__ = ['unfrackpath']
2015-01-28 19:17:56 +00:00
def unfrackpath(path):
'''
returns a path that is free of symlinks, environment
variables, relative path traversals and symbols (~)
example:
'$HOME/../../var/mail' becomes '/var/spool/mail'
'''
return os.path.normpath(os.path.realpath(os.path.expandvars(os.path.expanduser(path))))
def makedirs_safe(path, mode=None):
'''Safe way to create dirs in muliprocess/thread environments'''
2015-06-02 17:01:02 +00:00
if not os.path.exists(path):
try:
2015-06-03 03:39:57 +00:00
if mode:
os.makedirs(path, mode)
else:
os.makedirs(path)
except OSError as e:
2015-06-02 17:01:02 +00:00
if e.errno != EEXIST:
raise