mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
98 lines
3.8 KiB
C#
98 lines
3.8 KiB
C#
|
|
// /***************************************************************************
|
|||
|
|
// The Disc Image Chef
|
|||
|
|
// ----------------------------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// Filename : Identify.cs
|
|||
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|||
|
|
//
|
|||
|
|
// Component : Disk image plugins.
|
|||
|
|
//
|
|||
|
|
// --[ Description ] ----------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// Identifies cdrdao cuesheets (toc/bin).
|
|||
|
|
//
|
|||
|
|
// --[ License ] --------------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// This library is free software; you can redistribute it and/or modify
|
|||
|
|
// it under the terms of the GNU Lesser General Public License as
|
|||
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|||
|
|
// License, or (at your option) any later version.
|
|||
|
|
//
|
|||
|
|
// This library is distributed in the hope that it will be useful, but
|
|||
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|||
|
|
// Lesser General Public License for more details.
|
|||
|
|
//
|
|||
|
|
// You should have received a copy of the GNU Lesser General Public
|
|||
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|||
|
|
//
|
|||
|
|
// ----------------------------------------------------------------------------
|
|||
|
|
// Copyright © 2011-2018 Natalia Portillo
|
|||
|
|
// ****************************************************************************/
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.IO;
|
|||
|
|
using System.Text.RegularExpressions;
|
|||
|
|
using DiscImageChef.CommonTypes.Interfaces;
|
|||
|
|
using DiscImageChef.Console;
|
|||
|
|
|
|||
|
|
namespace DiscImageChef.DiscImages
|
|||
|
|
{
|
|||
|
|
public partial class Cdrdao
|
|||
|
|
{
|
|||
|
|
public bool Identify(IFilter imageFilter)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
imageFilter.GetDataForkStream().Seek(0, SeekOrigin.Begin);
|
|||
|
|
byte[] testArray = new byte[512];
|
|||
|
|
imageFilter.GetDataForkStream().Read(testArray, 0, 512);
|
|||
|
|
imageFilter.GetDataForkStream().Seek(0, SeekOrigin.Begin);
|
|||
|
|
// Check for unexpected control characters that shouldn't be present in a text file and can crash this plugin
|
|||
|
|
bool twoConsecutiveNulls = false;
|
|||
|
|
for(int i = 0; i < 512; i++)
|
|||
|
|
{
|
|||
|
|
if(i >= imageFilter.GetDataForkStream().Length) break;
|
|||
|
|
|
|||
|
|
if(testArray[i] == 0)
|
|||
|
|
{
|
|||
|
|
if(twoConsecutiveNulls) return false;
|
|||
|
|
|
|||
|
|
twoConsecutiveNulls = true;
|
|||
|
|
}
|
|||
|
|
else twoConsecutiveNulls = false;
|
|||
|
|
|
|||
|
|
if(testArray[i] < 0x20 && testArray[i] != 0x0A && testArray[i] != 0x0D && testArray[i] != 0x00)
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
tocStream = new StreamReader(imageFilter.GetDataForkStream());
|
|||
|
|
|
|||
|
|
Regex cr = new Regex(REGEX_COMMENT);
|
|||
|
|
Regex dr = new Regex(REGEX_DISCTYPE);
|
|||
|
|
|
|||
|
|
while(tocStream.Peek() >= 0)
|
|||
|
|
{
|
|||
|
|
string line = tocStream.ReadLine();
|
|||
|
|
|
|||
|
|
Match dm = dr.Match(line ?? throw new InvalidOperationException());
|
|||
|
|
Match cm = cr.Match(line);
|
|||
|
|
|
|||
|
|
// Skip comments at start of file
|
|||
|
|
if(cm.Success) continue;
|
|||
|
|
|
|||
|
|
return dm.Success;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
catch(Exception ex)
|
|||
|
|
{
|
|||
|
|
DicConsole.ErrorWriteLine("Exception trying to identify image file {0}", cdrdaoFilter.GetFilename());
|
|||
|
|
DicConsole.ErrorWriteLine("Exception: {0}", ex.Message);
|
|||
|
|
DicConsole.ErrorWriteLine("Stack trace: {0}", ex.StackTrace);
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|