本文整理汇总了C#中StudyStorageLocation.GetSopInstancePath方法的典型用法代码示例。如果您正苦于以下问题:C# StudyStorageLocation.GetSopInstancePath方法的具体用法?C# StudyStorageLocation.GetSopInstancePath怎么用?C# StudyStorageLocation.GetSopInstancePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StudyStorageLocation
的用法示例。
在下文中一共展示了StudyStorageLocation.GetSopInstancePath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetUidMappingCommand
private static SeriesSopUpdateCommand GetUidMappingCommand(StudyStorageLocation sourceStudy, StudyStorageLocation targetStudy, UidMapper uidMapper, string originalSopUid, string originalSeriesUid)
{
SeriesSopUpdateCommand cmd;
string newSeriesUid = uidMapper.FindNewSeriesUid(originalSeriesUid);
string newSopUid = uidMapper.FindNewSopUid(originalSopUid);
if (string.IsNullOrEmpty(newSeriesUid) == false)
{
// Series was assigned new uid
if (string.IsNullOrEmpty(newSopUid))
{
// this is new instance
newSopUid = DicomUid.GenerateUid().UID;
uidMapper.AddSop(originalSopUid, newSopUid);
cmd = new SeriesSopUpdateCommand(sourceStudy, targetStudy, uidMapper);
}
else
{
Platform.Log(LogLevel.Info, "Map SOP UID {0} to {1}", originalSopUid, newSopUid);
// this is duplicate
if (File.Exists(targetStudy.GetSopInstancePath(newSeriesUid, newSopUid)))
{
throw new InstanceAlreadyExistsException("Instance already exists")
{
SeriesInstanceUid = newSeriesUid,
SopInstanceUid = newSopUid
};
}
cmd = new SeriesSopUpdateCommand(sourceStudy, targetStudy, uidMapper);
}
}
else
{
// this is new series
newSopUid = DicomUid.GenerateUid().UID;
uidMapper.AddSeries(sourceStudy.StudyInstanceUid, targetStudy.StudyInstanceUid, originalSeriesUid, newSopUid);
cmd = new SeriesSopUpdateCommand(sourceStudy, targetStudy, uidMapper);
Platform.Log(LogLevel.Info, "Map SOP UID {0} to {1}", originalSopUid, newSopUid);
}
return cmd;
}