mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
7baf8a0fd1
And use third_party/depot_tools/gn.
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
# Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
# All rights reserved. MIT License.
|
|
import os
|
|
import subprocess
|
|
|
|
executable_suffix = ".exe" if os.name == "nt" else ""
|
|
|
|
|
|
def run(args, quiet=False, envs={}):
|
|
if not quiet:
|
|
print " ".join(args)
|
|
env = os.environ.copy()
|
|
for key in envs.keys():
|
|
env[key] = envs[key]
|
|
args[0] = os.path.normpath(args[0])
|
|
shell = os.name == "nt" # Run through shell to make .bat/.cmd files work.
|
|
subprocess.check_call(args, env=env, shell=shell)
|
|
|
|
|
|
def remove_and_symlink(target, name, target_is_dir=False):
|
|
try:
|
|
# On Windows, directory symlink can only be removed with rmdir().
|
|
if os.name == "nt" and os.path.isdir(name):
|
|
os.rmdir(name)
|
|
else:
|
|
os.unlink(name)
|
|
except:
|
|
pass
|
|
symlink(target, name, target_is_dir)
|
|
|
|
|
|
def symlink(target, name, target_is_dir=False):
|
|
if os.name == "nt":
|
|
import ctypes
|
|
CreateSymbolicLinkW = ctypes.windll.kernel32.CreateSymbolicLinkW
|
|
CreateSymbolicLinkW.restype = ctypes.c_ubyte
|
|
CreateSymbolicLinkW.argtypes = (ctypes.c_wchar_p, ctypes.c_wchar_p,
|
|
ctypes.c_uint32)
|
|
|
|
# Replace forward slashes by backward slashes.
|
|
# Strangely it seems that this is only necessary for symlinks to files.
|
|
# Forward slashes don't cause any issues when the target is a directory.
|
|
target = target.replace("/", "\\")
|
|
flags = 0x02 # SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE
|
|
if (target_is_dir):
|
|
flags |= 0x01 # SYMBOLIC_LINK_FLAG_DIRECTORY
|
|
if not CreateSymbolicLinkW(name, target, flags):
|
|
raise ctypes.WinError()
|
|
else:
|
|
os.symlink(target, name)
|
|
|
|
|
|
def touch(fname):
|
|
if os.path.exists(fname):
|
|
os.utime(fname, None)
|
|
else:
|
|
open(fname, 'a').close()
|
|
|
|
|
|
# Recursive search for files of certain extensions.
|
|
# (Recursive glob doesn't exist in python 2.7.)
|
|
def find_exts(directory, *extensions):
|
|
matches = []
|
|
for root, dirnames, filenames in os.walk(directory):
|
|
for filename in filenames:
|
|
for ext in extensions:
|
|
if filename.endswith(ext):
|
|
matches.append(os.path.join(root, filename))
|
|
break
|
|
return matches
|