예제 #1
0
        public string createMethodMappings()
        {
            if (ShowLogViewer)
            {
                showLogViewer();
            }
            "Loading Ast source files from folder: {0}".info(SourceFolder);
            O2MappedAstData astData = SourceFolder.getAstData(References, UseCachedData);

            "There are {0} AST files loaded".debug(astData.files().size());
            "Calculating MethodsMappings".info();
            var methodMapingsIndexedBySignature = astData.externalMethodsAndProperties(MethodFilter, ResultsFolder, NumberOfItemsToProcess)
                                                  .indexedBy_ResolvedSignature();

            //var methodMapingsIndexedBySignature = new Dictionary<string,List<KeyValuePair<INode,IMethodOrProperty>>>();

//			if (addProperties)
            astData.add_Properties(ResultsFolder);
            var savedFile = astData.saveMappings(methodMapingsIndexedBySignature);

            "MethodMappings saved to: {0} : {1}".info(savedFile, ((Int32)savedFile.fileInfo().size()).kBytesStr());

            //PublicDI.log.showMessageBox("Click Ok to continue");
            "AstData loaded".info();
            if (LogViewer.notNull())
            {
                LogViewer.parentForm().close();
            }
            return(savedFile);
            //show.info(astData);
            //"Hello there".info();


            //show.info(astData);
            //return "done";
        }
예제 #2
0
        public static Dictionary <IMethod, Dictionary <string, List <KeyValuePair <INode, IMethodOrProperty> > > > externalMethodsAndProperties(this O2MappedAstData astData, string filter, string targetFolder, int numberOfItemsToProcess)
        {
            var MimimumAvailableMemoryRequired = "".availableMemory() / 4;   //50;

            "Starting externalMethodsAndProperties calculations (with min memory required set to: {0}".info(MimimumAvailableMemoryRequired);
            if (targetFolder.valid().isFalse())
            {
                targetFolder = PublicDI.config.getTempFolderInTempDirectory("_AstEngine_ExternalMappings");
            }

            var methodMappingHashesFile = targetFolder.pathCombine("_methodMappingHashes.txt");

            var o2Timer         = new O2Timer("Calculated externalMethodsAndProperties").start();
            var iMethodMappings = new Dictionary <IMethod, Dictionary <string, List <KeyValuePair <INode, IMethodOrProperty> > > >();
            var iMethods        = astData.iMethods();
            var itemsToMap      = iMethods.size();// - targetFolder.files().size();
            var itemsMapped     = 0;

            foreach (var iMethod in iMethods)
            {
                // check avaialble memory
                var availableMemory = new System.Diagnostics.PerformanceCounter("Memory", "Available MBytes").NextValue();
                if (availableMemory < MimimumAvailableMemoryRequired)
                {
                    "In externalMethodsAndProperties, There is not enough free memory to continue (MimimumAvailableMemoryRequired = {0}, availableMemory = {1}. Stopping mappings".error(MimimumAvailableMemoryRequired, availableMemory);
                    "There are {0} iMethodMappings".debug(iMethodMappings.size());
                    break;
                }
                //"Available Memory: {0}".debug(availableMemory);

                //convert method
                var fullName = iMethod.fullName();
                var md5Hash  = fullName.safeFileName().md5Hash();
                var savedMethodMappingsFile = targetFolder.pathCombine(md5Hash) + ".xml";
                //var savedMethodMappingsFile = targetFolder.pathCombine(iMethod.fullName().safeFileName(100))+ ".xml";
                itemsMapped++;
                if (savedMethodMappingsFile.fileExists().isFalse())                 // Skip if method mappings have already been calculated
                {
                    //"Mapping :{0}".debug(iMethod.DotNetName);
                    if (iMethod.Name.regEx(filter))
                    {
                        var mappings = astData.externalMethodsAndProperties(iMethod);
                        iMethodMappings.Add(iMethod, mappings);
                        var savedMethodMappings = astData.saveMappings(mappings);
                        if (savedMethodMappings.fileExists())
                        {
                            Files.moveFile(savedMethodMappings, savedMethodMappingsFile);
                            methodMappingHashesFile.fileInsertAt(0, "{0}\t{1}".format(md5Hash, fullName).line());
                        }
                    }
                    //savedMethodMappingsFile
                    if (itemsMapped % 10 == 0)                                  // every 10 methods show a log message
                    {
                        "In externalMethodsAndProperties, mapped [{0}/{1}] to folder: {2}".info(itemsMapped, itemsToMap, targetFolder);
                        if (itemsMapped % 100 == 0)
                        {
                            PublicDI.config.gcCollect();                                // every 100 methods release some memory
                        }
                    }
                    if (numberOfItemsToProcess > 0 && numberOfItemsToProcess < iMethodMappings.size())
                    {
                        "In externalMethodsAndProperties, max number of Items To Process reached ({0}), so stopping mappings]".info(numberOfItemsToProcess);
                        "There are {0} iMethodMappings".debug(iMethodMappings.size());
                        break;
                    }
                }
            }
            o2Timer.stop();
            return(iMethodMappings);
        }
예제 #3
0
 public static Dictionary <IMethod, Dictionary <string, List <KeyValuePair <INode, IMethodOrProperty> > > > externalMethodsAndProperties(this O2MappedAstData astData, string filter)
 {
     return(astData.externalMethodsAndProperties("", "", -1));
 }
예제 #4
0
        public static Dictionary <IMethod, Dictionary <string, List <KeyValuePair <INode, IMethodOrProperty> > > > externalMethodsAndProperties(this O2MappedAstData astData)
        {
            var tempFolder = PublicDI.config.getTempFolderInTempDirectory("_AstEngine_ExternalMappings");

            return(astData.externalMethodsAndProperties(""));
        }