⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.py

📁 linux下的一款播放器
💻 PY
字号:
# # ***** BEGIN LICENSE BLOCK *****# Source last modified: $Id: makefile.py,v 1.4 2004/10/19 19:38:11 hubbe Exp $# # Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.# # The contents of this file, and the files included with this file,# are subject to the current version of the RealNetworks Public# Source License (the "RPSL") available at# http://www.helixcommunity.org/content/rpsl unless you have licensed# the file under the current version of the RealNetworks Community# Source License (the "RCSL") available at# http://www.helixcommunity.org/content/rcsl, in which case the RCSL# will apply. You may also obtain the license terms directly from# RealNetworks.  You may not use this file except in compliance with# the RPSL or, if you have a valid RCSL with RealNetworks applicable# to this file, the RCSL.  Please see the applicable RPSL or RCSL for# the rights, obligations and limitations governing use of the# contents of the file.# # Alternatively, the contents of this file may be used under the# terms of the GNU General Public License Version 2 or later (the# "GPL") in which case the provisions of the GPL are applicable# instead of those above. If you wish to allow use of your version of# this file only under the terms of the GPL, and not to allow others# to use your version of this file under the terms of either the RPSL# or RCSL, indicate your decision by deleting the provisions above# and replace them with the notice and other provisions required by# the GPL. If you do not delete the provisions above, a recipient may# use your version of this file under the terms of any one of the# RPSL, the RCSL or the GPL.# # This file is part of the Helix DNA Technology. RealNetworks is the# developer of the Original Code and owns the copyrights in the# portions it created.# # This file, and the files included with this file, is distributed# and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY# KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS# ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET# ENJOYMENT OR NON-INFRINGEMENT.# # Technology Compatibility Kit Test Suite(s) Location:#    http://www.helixcommunity.org/content/tck# # Contributor(s):# # ***** END LICENSE BLOCK *****# """This file implements a Makefile "sanitizer".  The input is a Makefilewhich may or may not be valid.  It is parsed into the Makefile class,which generates a valid Makefile.  This is here because there are manyUmakefil/*.pcf files which used project.write/project.writeln to writelines directly to the Makefile.  These lines are not necessarily valid,and may contain targets with the same name as Umake generates (likethe "all" target).  This takes its best guess at merging, and re-namingthose targets so they continue to work."""import stringimport reclass Macro:    """Stores a name/value pair for a Makefile macro(variable)."""    def __init__(self):        self.name = ""        self.value = ""class Target:    """Stores a target name, list of dependancies, and a list of commands    for a Makefile target."""    def __init__(self):        self.name = ""        self.depend_list = []        self.command_list = []        class Makefile:    """Stores a list of Makefile macros and targets.  When referenced as    a string, the output is a valid Makefile from its macro and target    lists."""        def __init__(self):        self.target_list = []        self.macro_list = []    def __str__(self):        line_list = []        ## write macros        for macro in self.macro_list:            line_list.append("%s=%s" % (macro.name, macro.value))            line_list.append("")        ## write targets        for target in self.target_list:            line_list.append("%s: %s" % (                target.name, string.join(target.depend_list)))            for command in target.command_list:                line_list.append("\t%s" % (command))            line_list.append("")        return string.join(line_list, "\n") + "\n"    def get_variables(self):        vars={}        for m in self.macro_list:            vars[m.name]=m.value        return varsdef ParseMakefile(buff):    """Given a buffer containing a Makefile, parse it into a Makefile()    class."""        mfile = Makefile()    _re_macro = re.compile("\s*(\w+)\s*=\s*(.*)$")    ## Nmake cruft    _re_target0 = re.compile("\s*([A-Za-z]:[^:]*)\s*:\s*(.*)$")    _re_target1 = re.compile("\s*([^:]+)\s*::\s*(.*)$")    _re_target2 = re.compile("\s*([^:]+)\s*:\s*(.*)$")    _state_in_body = "in body"    _state_in_target = "in target"    state = _state_in_body    continue_line = ""    current_target = None    line_list = string.split(buff, "\n")    for line in line_list:        line = continue_line + string.rstrip(line)        ## ignore blank lines and comments        if len(line) == 0 or line[0] == "#":            continue        ## handle backslash line continuations        if line[-1] == "\\":            continue_line = continue_line + line[:-1]            continue        else:            continue_line = ""        ## process        if state == _state_in_target:            if line[0] == "\t":                line = string.lstrip(line)                current_target.command_list.append(line)            else:                state = _state_in_body                    if state == _state_in_body:            m = _re_macro.match(line)            if m:                macro = Macro()                mfile.macro_list.append(macro)                (macro.name, macro.value) = m.groups()            else:                m = _re_target0.match(line) or _re_target1.match(line) or _re_target2.match(line)                if m:                    state = _state_in_target                    current_target = Target()                    mfile.target_list.append(current_target)                    (current_target.name, deps) = m.groups()                    current_target.depend_list = string.split(deps)                else:                    print "INTERNAL ERROR makefile.py(%s):%s" % (state, line)    return mfiledef expand_variables(text, variables, empty=0):    """Expand variables in makefile-style, use makefile.get_vars() for 'variables'"""    # print "Expanding %s ..." % text    arr = string.split(text,"$")    if len(arr) < 2:        return text    expanded = {}    i=1    while i < len(arr):        item = arr[i]        if item[0] == '$':            pass        elif item[0] == '(':            pos = string.index(item,')')            vname = item[1:pos]            if expanded.has_key(vname):                xpand=expanded[vname]            elif variables.has_key(vname):                xpand=variables[vname]                tmp = variables.copy()                del tmp[vname]                xpand=expand_variables(xpand,tmp, empty)            elif empty:                xpand=""            else:                xpand="$("+vname+")"            expanded[vname]=xpand            arr[i]=xpand+item[pos+1:]        else:            arr[i]="$"+item        i = i + 1    # print "Expanding %s to %s " % (text, string.join(arr, ''))    return string.join(arr, '')    ## testingif __name__ == "__main__":    import sys        try:        path = sys.argv[1]    except IndexError:        print "makefile.py <filename>"        sys.exit(1)    buff = open(path, "r").read()    mfile = ParseMakefile(buff)    print mfile

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -