当前位置: 首页>>代码示例>>C#>>正文


C# IByteReader.GetHit方法代码示例

本文整理汇总了C#中IByteReader.GetHit方法的典型用法代码示例。如果您正苦于以下问题:C# IByteReader.GetHit方法的具体用法?C# IByteReader.GetHit怎么用?C# IByteReader.GetHit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IByteReader的用法示例。


在下文中一共展示了IByteReader.GetHit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: checkExtension

		/**
		 * Determines the file extension
		 * If the file has got some positive hits, then check these against this extension
		 * If the file has not got any positive hits, then look for tentative hits
		 * based on the extension only.
		 *
		 * @param targetFile   The binary file to be identified
		 */
		private void checkExtension(IByteReader targetFile)
		{

			//work out if file has an extension
			bool hasExtension = true;
			int dotPos = targetFile.GetFileName().LastIndexOf(".");
			if (dotPos < 0)
			{
				hasExtension = false;
			}
			else if (dotPos == targetFile.GetFileName().Length - 1)
			{
				hasExtension = false;
			}
			else if (targetFile.GetFileName().LastIndexOf("/") > dotPos)
			{
				hasExtension = false;
			}
			else if (targetFile.GetFileName().LastIndexOf("\\") > dotPos)
			{
				hasExtension = false;
			}

			//
			if (hasExtension)
			{
				String fileExtension = targetFile.GetFileName().Substring(dotPos + 1);

				if (targetFile.GetNumberOfHits() > 0)
				{

					//for each file format which is a hit, check that it expects the given extension - if not give a warning
					for (int iHit = 0; iHit < targetFile.GetNumberOfHits(); iHit++)
					{
						if (!(targetFile.GetHit(iHit).GetFileFormat().HasMatchingExtension(fileExtension)))
						{
							targetFile.GetHit(iHit).SetIdentificationWarning(MessageDisplay.FILEEXTENSIONWARNING);
						}
					}//loop through hits

				}
				else
				{
					//no positive hits have been found, so search for tenative hits
					//loop through all file formats with no internal signature
					for (int iFormat = 0; iFormat < this.getNumFileFormats(); iFormat++)
					{
						if (this.getFileFormat(iFormat).GetNumberOfInternalSignatures() == 0)
						{
							if (this.getFileFormat(iFormat).HasMatchingExtension(fileExtension))
							{
								//add this as a tentative hit
								FileFormatHit fileHit = new FileFormatHit(this.getFileFormat(iFormat), AnalysisController.HIT_TYPE_TENTATIVE, false, "");
								targetFile.AddHit(fileHit);
								targetFile.SetTentativeIdentification();
							}
						}
					}//loop through file formats
				}
			}//end of if(hasExtension)
			else
			{
				//if the file does not have an extension then add warning to all its hits
				for (int iHit = 0; iHit < targetFile.GetNumberOfHits(); iHit++)
				{
					targetFile.GetHit(iHit).SetIdentificationWarning(MessageDisplay.FILEEXTENSIONWARNING);
				}
			}
		}
开发者ID:bossaia,项目名称:alexandrialibrary,代码行数:77,代码来源:FFSignatureFile.cs

示例2: debugDisplayHits

		/**
		 * Print out the list of hits (for debugging purposes only
		 */
		private void debugDisplayHits(IByteReader testFile, String fileName) {
        
        System.Console.WriteLine("==================================");
        if (testFile.IsClassified()) {
            
            //display file classification and any warning
            System.Console.WriteLine("     " + fileName);
            if(testFile.GetIdentificationWarning().Length > 0)
                System.Console.WriteLine("with warning: "+testFile.GetIdentificationWarning());
            
            //display list of hits
            for(int ih=0; ih<testFile.GetNumberOfHits(); ih++) {
                String specificityDisplay = testFile.GetHit(ih).IsSpecific()?"specific":"generic";
                System.Console.WriteLine("          " + testFile.GetHit(ih).GetHitTypeVerbose() + " " + specificityDisplay + " hit for " + testFile.GetHit(ih).GetFileFormat().GetName() + "  [PUID: " + testFile.GetHit(ih).GetFileFormat().GetPuid()+ "]");
                if(testFile.GetHit(ih).GetHitWarning().Length > 0)
                {
                    System.Console.WriteLine("               WARNING: " + testFile.GetHit(ih).GetHitWarning());
                }
            }
        } else {
			System.Console.WriteLine("     " + fileName + " was not classified");
        }
        
    }
开发者ID:bossaia,项目名称:alexandrialibrary,代码行数:27,代码来源:AnalysisThread.cs

示例3: removeLowerPriorityHits

		/**
		 * Remove any hits for which there is a higher priority hit
		 *
		 * @param targetFile   The binary file to be identified
		 */
		private void removeLowerPriorityHits(IByteReader targetFile)
		{
			//loop through specific hits and list any hits which these have priority over
			IList<int> hitsToRemove = new List<int>(); //ArrayList();
			for (int i = 0; i < targetFile.GetNumberOfHits(); i++)
			{
				for (int j = 0; j < targetFile.GetHit(i).GetFileFormat().GetNumberOfHasPriorityOver(); j++) //HasPriorityOver(); j++)
				{
					int formatID = targetFile.GetHit(i).GetFileFormat().GetHasPriorityOver(j); //getHasPriorityOver(j);
					for (int k = 0; k < targetFile.GetNumberOfHits(); k++)
					{ //loop through hits to find any for this file format
						if (targetFile.GetHit(k).GetFileFormat().GetId() == formatID)
						{
							hitsToRemove.Add(k); //Integer.toString(k));  //use string representation as ArrayList won't take integers
							break;
						}
					}
				}
			}
			//Create sorted array of indexes for hits to be removed
			int[] indexesOfHits = new int[hitsToRemove.Count];
			int numHitsToRemove = 0;
			for (int i = 0; i < hitsToRemove.Count; i++)
			{   //loop through unsorted list of hits to be removed
				int j = numHitsToRemove;
				//int indexOfHit =  Integer.parseInt((String)hitsToRemove[i]);
				int indexOfHit = hitsToRemove[i];
				while (j > 0 && indexesOfHits[j - 1] > indexOfHit)
				{
					indexesOfHits[j] = indexesOfHits[j - 1];
					--j;
				}
				indexesOfHits[j] = indexOfHit;
				++numHitsToRemove;
			}
			//Delete hits in decreasing index order, ignorinmg any repetitions
			for (int i = indexesOfHits.Length - 1; i >= 0; i--)
			{
				if (i == (indexesOfHits.Length - 1))
				{
					targetFile.RemoveHit(indexesOfHits[i]);
				}
				else if (indexesOfHits[i] != indexesOfHits[i + 1])
				{
					targetFile.RemoveHit(indexesOfHits[i]);
				}
			}

		}
开发者ID:bossaia,项目名称:alexandrialibrary,代码行数:54,代码来源:FFSignatureFile.cs


注:本文中的IByteReader.GetHit方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。