#!/usr/bin/env python # Copyright (c) 2011 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """These functions are executed via gyp-flock-tool when using the Makefile generator. Used on systems that don't have a built-in flock.""" import fcntl import os import struct import subprocess import sys def main(args): executor = FlockTool() executor.Dispatch(args) class FlockTool(object): """This class emulates the 'flock' command.""" def Dispatch(self, args): """Dispatches a string command to a method.""" if len(args) < 1: raise Exception("Not enough arguments") method = "Exec%s" % self._CommandifyName(args[0]) getattr(self, method)(*args[1:]) def _CommandifyName(self, name_string): """Transforms a tool name like copy-info-plist to CopyInfoPlist""" return name_string.title().replace('-', '') def ExecFlock(self, lockfile, *cmd_list): """Emulates the most basic behavior of Linux's flock(1).""" # Rely on exception handling to report errors. # Note that the stock python on SunOS has a bug # where fcntl.flock(fd, LOCK_EX) always fails # with EBADF, that's why we use this F_SETLK # hack instead. fd = os.open(lockfile, os.O_WRONLY|os.O_NOCTTY|os.O_CREAT, 0o666) if sys.platform.startswith('aix'): # Python on AIX is compiled with LARGEFILE support, which changes the # struct size. op = struct.pack('hhIllqq', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0) else: op = struct.pack('hhllhhl', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0) fcntl.fcntl(fd, fcntl.F_SETLK, op) return subprocess.call(cmd_list) if __name__ == '__main__': sys.exit(main(sys.argv[1:]))
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
generator | Folder | 0755 |
|
|
MSVSNew.py | File | 11.66 KB | 0644 |
|
MSVSProject.py | File | 6.24 KB | 0644 |
|
MSVSSettings.py | File | 44.17 KB | 0644 |
|
MSVSSettings_test.py | File | 64.56 KB | 0755 |
|
MSVSToolFile.py | File | 1.76 KB | 0644 |
|
MSVSUserFile.py | File | 4.97 KB | 0644 |
|
MSVSUtil.py | File | 9.31 KB | 0644 |
|
MSVSUtil.pyc | File | 7.55 KB | 0644 |
|
MSVSVersion.py | File | 17.02 KB | 0644 |
|
MSVSVersion.pyc | File | 14.28 KB | 0644 |
|
__init__.py | File | 21.87 KB | 0755 |
|
__init__.pyc | File | 16.22 KB | 0644 |
|
common.py | File | 20.58 KB | 0644 |
|
common.pyc | File | 19.59 KB | 0644 |
|
common_test.py | File | 1.92 KB | 0755 |
|
easy_xml.py | File | 4.87 KB | 0644 |
|
easy_xml_test.py | File | 3.25 KB | 0755 |
|
flock_tool.py | File | 1.71 KB | 0755 |
|
input.py | File | 113.65 KB | 0644 |
|
input.pyc | File | 62.62 KB | 0644 |
|
input_test.py | File | 3.11 KB | 0755 |
|
mac_tool.py | File | 22.89 KB | 0755 |
|
msvs_emulation.py | File | 47.1 KB | 0644 |
|
msvs_emulation.pyc | File | 47.84 KB | 0644 |
|
ninja_syntax.py | File | 5.41 KB | 0644 |
|
ninja_syntax.pyc | File | 6.47 KB | 0644 |
|
simple_copy.py | File | 1.3 KB | 0644 |
|
simple_copy.pyc | File | 2.23 KB | 0644 |
|
win_tool.py | File | 12.72 KB | 0755 |
|
xcode_emulation.py | File | 64.85 KB | 0644 |
|
xcode_emulation.pyc | File | 61.22 KB | 0644 |
|
xcode_ninja.py | File | 10.32 KB | 0644 |
|
xcode_ninja.pyc | File | 7.43 KB | 0644 |
|
xcodeproj_file.py | File | 117.66 KB | 0644 |
|
xcodeproj_file.pyc | File | 93.06 KB | 0644 |
|
xml_fix.py | File | 2.12 KB | 0644 |
|