9

First, some clarification of terms. By finalize, I don't mean closing a session; I mean writing a lead-out to a CD or DVD in such a way that information can no longer be added to it via the usual means (Roxio, Nero, Windows Explorer, etc.)

I've done a fair amount of research on this. There are some open-source programs like InfraRecorder from which we could draw some inspiration, but they all seem to involve rather elaborate reams of C++ code using IMAPI, which seems like a very low-level way to do things. None of the developers on our team have the C++ or IMAPI expertise to support such a code base.

The most promising resource on the internet appears to be this one, but it doesn't seem to include a finalize function. Here is the code that "writes an image":

public void WriteImage(BurnVerificationLevel verification, bool finalize, bool eject)
{
    if (!_recorderLoaded)
        throw new InvalidOperationException("LoadMedia must be called first.");

    MsftDiscRecorder2 recorder = null;
    MsftDiscFormat2Data discFormatData = null;

    try
    {
        recorder = new MsftDiscRecorder2();
        recorder.InitializeDiscRecorder(_recorders.SelectedItem.InternalUniqueId);

        discFormatData = new MsftDiscFormat2Data
        {
            Recorder = recorder,
            ClientName = ClientName,
            ForceMediaToBeClosed = finalize
        };

        //
        // Set the verification level
        //
        var burnVerification = (IBurnVerification)discFormatData;
        burnVerification.BurnVerificationLevel = IMAPI_BURN_VERIFICATION_LEVEL.IMAPI_BURN_VERIFICATION_NONE;

        //
        // Check if media is blank, (for RW media)
        //
        object[] multisessionInterfaces = null;
        if (!discFormatData.MediaHeuristicallyBlank)
            multisessionInterfaces = discFormatData.MultisessionInterfaces;

        //
        // Create the file system
        //
        IStream fileSystem;
        _CreateImage(recorder, multisessionInterfaces, out fileSystem);

        discFormatData.Update += _discFormatWrite_Update;

        //
        // Write the data
        //
        try
        {
            discFormatData.Write(fileSystem);
        }
        finally
        {
            if (fileSystem != null) Marshal.FinalReleaseComObject(fileSystem);                    
        }

        discFormatData.Update -= _discFormatWrite_Update;

        if (eject) recorder.EjectMedia();
    }
    finally
    {
        _isWriting = false;
        if (discFormatData != null) Marshal.ReleaseComObject(discFormatData);
        if (recorder != null) Marshal.ReleaseComObject(recorder);                
    }
}

The critical section of code seems to be this one:

discFormatData = new MsftDiscFormat2Data
{
    Recorder = recorder,
    ClientName = ClientName,
    ForceMediaToBeClosed = finalize // <-- Here
};

But this isn't a finalize function; it's a function that burns actual data onto a disk. Do you have to actually create a new session to perform a finalization on an existing disk?

4

2 回答 2

12

ForceMediaToBeClosed属性IDiscFormat2Data 控制 IMAPI 是否在下次写入后完成光盘:

设置为 VARIANT_TRUE 以将光盘标记为已关闭,以在下一次写入会话结束时禁止其他写入。

Image Mastering API 没有提供专门用于完成光盘的抽象,因此我们需要执行写入操作。如果我们打开ForceMediaToBeClosed主映像写入器,API 将在初始刻录期间最终确定一张空白光盘。对于现有的多会话光盘,我们需要附加另一个会话。

这是一个简单的 PowerShell 示例,我们可以尝试,因此我们不需要构建项目。C# 中的概念类似:

$drives = New-Object -ComObject 'IMAPI2.MsftDiscMaster2'
$recorder = New-Object -ComObject 'IMAPI2.MsftDiscRecorder2'
$recorder.InitializeDiscRecorder($drives[0])  # Choose a drive here

$disc = New-Object -ComObject 'IMAPI2.MsftDiscFormat2Data'
$disc.ClientName = 'PowerShell Recorder'
$disc.Recorder = $recorder
$disc.ForceMediaToBeClosed = $true  # Finalize the next session

$image = New-Object -ComObject 'IMAPI2FS.MsftFileSystemImage'

if (!$disc.IsCurrentMediaSupported($recorder)) {
    throw 'Disc is not writeable.'
} elseif ($disc.MediaHeuristicallyBlank) {
    $image.ChooseImageDefaults($recorder)
} else {
    $image.MultisessionInterfaces = $disc.MultisessionInterfaces
    $image.ImportFileSystem() > $null
}

这设置了一些样板文件,我们将在下面使用这些样板文件来刻录光盘。我们需要添加错误处理和功能检测以供实际使用,但它作为演示工作正常。如果我们将此代码粘贴或点源到 PowerShell 会话中,我们可以交互地使用 COM 对象。

此时,如果我们检查空白或打开光盘的状态,我们应该看到一个值2,46对应于6枚举的“空白”或“附加”位掩码(两者都适用)IMAPI_FORMAT2_DATA_MEDIA_STATE

PS> $disc.CurrentMediaStatus  # 4 for an open, multi-session disc 

然后,我们可以添加一些文件。如果我们只想关闭多区段光盘,我们不需要向图像添加任何内容。API 使用空数据轨道记录会话的导入和导出。

PS> $image.Root.AddTree('path\to\root\folder', $false)

最后,我们会将更改刻录到光盘上。因为我们设置$disc.ForceMediaToBeClosed$true,所以这个操作最终确定了磁盘,并且不允许进一步的写操作:

PS> $disc.Write($image.CreateResultImage().ImageStream)

如果我们现在检查磁盘状态,它应该表明该磁盘不可写:

PS> $disc.CurrentMediaStatus  # 16384 or 40960

对于单会话光盘,我们应该看到16384( 0x4000, "finalized")。我的系统报告包含位(“写保护”)和(“不受支持的媒体”)40960的封闭式多会话光盘。我们可能需要弹出或重启某些硬件才能在刻录后看到准确的值。0x20000x8000

评论:

  • 通常,多区段光盘上的每个区段都以导入开始并以导出结束。当我们最终确定光盘时,最后一个会话的导入会永久关闭媒体以进一步写入。这就是为什么即使我们没有更多数据要添加,我们也需要将额外的会话附加到未关闭的光盘上。

  • 如果可用空间低于 2%,IMAPI 将自动完成光盘。

  • InfraRecorder(问题中提到的工具)不使用 IMAPI。此应用程序为cdrtools提供了一个前端,它直接控制设备 IO。如果我们只需要最终确定未关闭的光盘,我们可能希望使用此软件包中包含的cdrecord CLI 程序来避免维护额外的代码库:

    PS> cdrecord -scanbus          # Show <drive> IDs to choose from
    PS> cdrecord -fix dev=<drive>  # Close an open session
    

    作为一个简短的起点,以下是我们如何完成多区段光盘:

    PS> $session = cdrecord -msinfo dev=<drive>
    PS> mkisofs -rJ -C $session -M <drive> 'path\to\root' | cdrecord dev=<drive> -
    

    这与我们使用 IMAPI 的 PowerShell 脚本实现了相同的结果:我们导入最后一个会话,创建映像,然后刻录一个新的会话来完成光盘。通过省略cdrecord-multi的参数,该命令不会以允许连续多会话光盘的方式写入导入。

    虽然我们通常在类 Unix 系统上看到此工具集,但构建可用于 Windows。

  • 对于更高级的应用程序,我们可以使用较低级别的实现IDiscRecorderEx来查询并向记录设备发送命令。

于 2018-01-11T00:51:37.267 回答
8

在对象上设置ForceMediaToBeClosed标志并在IMAPI2.MsftDiscFormat2Data启用关闭标志的情况下写出光盘。

  • 如果您已经知道上一次会话,请设置标志,添加要写入的数据,然后将其写出,它将关闭。
  • 如果您已经编写了最后一个会话,请导入最后一个会话,设置标志并写入关闭。

方法在这里描述:https ://social.msdn.microsoft.com/Forums/en-US/ce1ff136-39a1-4442-bc5c-61c119b6f4f2/finalize-question?forum=windowsopticalplatform#2e968a94-7347-4d94-9332-00fe7cd0ba89

下面是一个不错的 Powershell 刻录脚本的链接,您所要做的就是在准备好结束写入时Out-CD使用新param设置进行更新。$DiscFormatData.ForceMediaToBeClosed = true

链接:https ://www.adamtheautomator.com/use-powershell-to-automate-burning-cds/

供参考:

# this fetches all the properties (as you probably already know)
$DiscFormatData  = New-Object -com IMAPI2.MsftDiscFormat2Data ;
$DiscFormatData | Get-Member ;
于 2018-01-11T00:47:02.760 回答