コード例 #1
0
ファイル: mkmethodlist.py プロジェクト: hbprosper/SusySapien
def expandMethod(filename, fname1, delim, methlist):

    header, classname, basenames, methodlist = readMethods(filename)

    # Ok now, get simple methods

    for rtype, name, atype, record in methodlist:

        if DEBUG3 > 3: print "\texpandMethod RTYPE( %s, %s )" % (rtype, name)

        # Take care not to overwrite these variables

        if DEBUG3 > 2:
            print "\tRTYPE( %s ) METHOD( %s ) ARG( %s )" % \
               (rtype, name, atype)

        # Keep methods/datamembers that return simple types

        if rtype == "void": continue
        if retype.match(rtype) == None: continue
        if skipmethod.match(name) != None: continue

        # atype = None for data members
        if atype == None:
            # data member
            fname2 = name
        else:
            # function member
            arg = striparg.sub("", atype)
            if simpletype.match(arg) == None: continue
            if (atype == "void"):
                fname2 = "%s()" % name
            else:
                fname2 = "%s(%s)" % (name, atype)

        # ok, this looks like a good method or data member
        method = "%12s  %s%s%s" % (rtype, fname1, delim, fname2)
        if DEBUG3 > 0: print "\t\tCOMPOUND METHOD( %s )" % strip(method)
        methlist.append(method)
コード例 #2
0
ファイル: mkmethodlist.py プロジェクト: hbprosper/SusySapien
def expandMethod(filename, fname1, delim, methlist):

	header, classname, basenames, methodlist = readMethods(filename)

	# Ok now, get simple methods

	for rtype, name, atype, record in methodlist:

		if DEBUG3 > 3: print "\texpandMethod RTYPE( %s, %s )" % (rtype, name)

		# Take care not to overwrite these variables

		if DEBUG3 > 2:
			print "\tRTYPE( %s ) METHOD( %s ) ARG( %s )" % \
				  (rtype, name, atype)

		# Keep methods/datamembers that return simple types

		if rtype == "void": continue
		if retype.match(rtype) == None: continue
		if skipmethod.match(name) != None: continue		
			
		# atype = None for data members
		if atype == None:
			# data member
			fname2 = name
		else:
			# function member
			arg = striparg.sub("", atype)
			if simpletype.match(arg) == None: continue
			if ( atype == "void" ):
				fname2 = "%s()"   % name
			else:
				fname2 = "%s(%s)" % (name, atype)

		# ok, this looks like a good method or data member
		method = "%12s  %s%s%s" % (rtype, fname1, delim, fname2)
		if DEBUG3 > 0: print "\t\tCOMPOUND METHOD( %s )" % strip(method)
		methlist.append(method)
コード例 #3
0
ファイル: mkmethodlist.py プロジェクト: hbprosper/SusySapien
def mkmethodlist(filename):

    header, classname, basenames, methodlist = readMethods(filename)
    if DEBUG3 > 0:
        print "\theader: %s\t\n\t\tclassname: %s" % (header, classname)

    # Return if this is a template class

    if find(classname, "<") > -1:
        if DEBUG3 > 0:
            print "\tskipping template class: %s" % classname
        return 0

    # ------------------------------------------------------------
    # Process simple methods
    # ------------------------------------------------------------
    compoundmethodlist = []
    methods = []
    for rtype, name, atype, record in methodlist:

        # Take are not to overwrite these variables

        if DEBUG3 > 2:
            print "\n\tRTYPE( %s ) METHOD( %s ) ARG( %s )" % \
               (rtype, name, atype)

        # Skip some methods
        if rtype == "void": continue
        if skipmethod.match(name) != None: continue

        # atype = None for data members
        if atype == None:
            # data member
            fname1 = name
        else:
            # function member
            arg = striparg.sub("", atype)
            if simpletype.match(arg) == None: continue
            if (atype == "void"):
                fname1 = "%s()" % name
            else:
                fname1 = "%s(%s)" % (name, atype)

        # Check for pointer or edm::Ref
        ispointer = rtype[-1] == "*"
        isRef = rtype[-3:] == "Ref"
        if ispointer or isRef:
            delim = '->'
        else:
            delim = '.'

        # check return type

        if retype.match(rtype) == None:
            # compound method
            compoundmethodlist.append((rtype, fname1, delim))
        else:
            # simple return type
            method = "%12s  %s" % (rtype, fname1)
            methods.append(method)

            if DEBUG3 > 0:
                print "\t\tSIMPLE METHOD( %s )" % method

    # ------------------------------------------------------------
    # Process compound methods
    # ------------------------------------------------------------
    if DEBUG3 > 0:
        print "\n\tPROCESS COMPLEX RETURN TYPES\n"

    for rtype, fname1, delim in compoundmethodlist:

        # Get header for this class from ClassToHeaderMap
        cname = striprtypeless.sub("", rtype)
        if not ClassToHeaderMap.has_key(cname):
            if DEBUG3 > 2:
                print "\t\t** header for class %s NOT found" % cname
            continue

        # get file that lists this class's methods and data members
        headerfile = ClassToHeaderMap[cname]
        if type(headerfile) == type([]): headerfile = headerfile[0]

        filestem = replace(headerfile, 'interface/', '')
        filestem = split(filestem, '.h')[0]
        filestem = replace(filestem, '/', '.')
        cname = split(cname, '::').pop()
        txtfilename = "txt/%s.%s.txt" % (filestem, cname)
        if not os.path.exists(txtfilename):
            if DEBUG3 > 0:
                print "\t\t*** file %s NOT found" % txtfilename
            continue

        if DEBUG3 > 1:
            print "\t\tTXT FILE( %s )" % txtfilename

        expandMethod(txtfilename, fname1, delim, methods)

    if len(methods) == 0: return 0

    print "processed: %s\t%d" % (classname, len(methods))

    # Write a summary document for this class

    str = '%s\n' % joinfields(methods, '\n')
    classname = stripcolon.sub("", classname)
    headerfilename = striptemplatepars.sub("", classname)
    open("methods/%s.txt" % headerfilename, 'w').write(str)
    return len(methods)
コード例 #4
0
ファイル: mkmethodlist.py プロジェクト: hbprosper/SusySapien
def mkmethodlist(filename):

	header, classname, basenames, methodlist = readMethods(filename)
	if DEBUG3 > 0:
		print "\theader: %s\t\n\t\tclassname: %s" % (header, classname)

	# Return if this is a template class

	if find(classname, "<") > -1:
		if DEBUG3 > 0:
			print "\tskipping template class: %s" % classname
		return 0
		
	# ------------------------------------------------------------
	# Process simple methods
	# ------------------------------------------------------------
	compoundmethodlist = []	
	methods = []
	for rtype, name, atype, record in methodlist:

		# Take are not to overwrite these variables

		if DEBUG3 > 2:
			print "\n\tRTYPE( %s ) METHOD( %s ) ARG( %s )" % \
				  (rtype, name, atype)

		# Skip some methods
		if rtype == "void": continue		
		if skipmethod.match(name) != None: continue

		# atype = None for data members
		if atype == None:
			# data member
			fname1 = name
		else:
			# function member
			arg = striparg.sub("", atype)
			if simpletype.match(arg) == None: continue
			if ( atype == "void" ):
				fname1 = "%s()"   % name
			else:
				fname1 = "%s(%s)" % (name, atype)

		# Check for pointer or edm::Ref
		ispointer = rtype[-1]  == "*"
		isRef     = rtype[-3:] == "Ref"
		if ispointer or isRef:
			delim = '->'
		else:
			delim = '.'

		# check return type
		
		if retype.match(rtype) == None:
			# compound method
			compoundmethodlist.append((rtype, fname1, delim))
		else:
			# simple return type
			method = "%12s  %s" % (rtype, fname1)
			methods.append(method)
	  	
			if DEBUG3 > 0:
				print "\t\tSIMPLE METHOD( %s )" % method

	# ------------------------------------------------------------
	# Process compound methods
	# ------------------------------------------------------------
	if DEBUG3 > 0:
		print "\n\tPROCESS COMPLEX RETURN TYPES\n"

	for rtype, fname1, delim in compoundmethodlist:

		# Get header for this class from ClassToHeaderMap
		cname = striprtypeless.sub("", rtype)
		if not ClassToHeaderMap.has_key(cname):
			if DEBUG3 > 2:
				print "\t\t** header for class %s NOT found" % cname
			continue

		# get file that lists this class's methods and data members
		headerfile = ClassToHeaderMap[cname]
		if type(headerfile) == type([]): headerfile = headerfile[0]
		
		filestem = replace(headerfile, 'interface/', '')
		filestem = split(filestem, '.h')[0]
		filestem = replace(filestem, '/', '.')
		cname  = split(cname,'::').pop()
		txtfilename = "txt/%s.%s.txt" % (filestem, cname)
		if not os.path.exists(txtfilename):
			if DEBUG3 > 0:
				print "\t\t*** file %s NOT found" % txtfilename
			continue

		if DEBUG3 > 1:
			print "\t\tTXT FILE( %s )" % txtfilename

		expandMethod(txtfilename, fname1, delim, methods)
					
	if len(methods) == 0: return 0
	
	print "processed: %s\t%d" % (classname, len(methods))

	# Write a summary document for this class
	
	str = '%s\n' % joinfields(methods,'\n')
	classname = stripcolon.sub("", classname)
	headerfilename   = striptemplatepars.sub("", classname)
	open("methods/%s.txt" % headerfilename, 'w').write(str)
	return len(methods)