using System.Collections.Generic;
IBatchItems batch = Batch.AsBatchItem.ChildItems;
List<string> docDefs = new List<string> {"DocSet","Doc1","Doc2"}; / Reihenfolge der Dokumentzusammenstellung
/ Name des Schlüsselfelds
// (das Feld soll in allen Dokumenten indexiert werden und denselben Namen haben)
string keyFieldName = "SSN";
List<string> keyFields = new List<string>();
// Zerlegen von Sätzen
bool foundChildren = false;
do
{
foreach (IBatchItem itm in batch)
{
if (itm.ChildItems.Count > 1)
{
int shift = 0;
foreach (IBatchItem subItm in itm.ChildItems)
{
shift++;
batch.Move(subItm, itm.Index + shift);
}
}
}
foreach (IBatchItem itm in batch)
if (itm.ChildItems.Count > 1)
foundChildren = true;
} while (foundChildren);
// Dokumente so sortieren, wie sie im Satz angeordnet sein sollen
// (d. h. der Satz selbst, gefolgt von allen seinen Unterdokumenten)
foreach (string docDefName in docDefs)
{
List<int> indexList = new List<int>();
foreach (IBatchItem itm in batch)
if (itm.Type == TBatchItemType.BIT_Document)
if (itm.AsDocument.DefinitionName == docDefName) indexList.Add(itm.Index);
for (int i = 0; i < indexList.Count; i++)
batch.Move(batch[indexList[i]-i], batch.Count);
}
// Suchen nach allen Optionen der Schlüsselfeder in dem Stapel
foreach (IBatchItem itm in batch)
{
if (itm.Type == TBatchItemType.BIT_Document)
{
string keyFieldValue = (string)itm.AsDocument.IndexedItemValue(keyFieldName);
if (!keyFields.Contains(keyFieldValue))
keyFields.Add(keyFieldValue);
}
}
// Zusammenstellen der Dokumente mit demselben Schlüsselfeld
foreach (string keyFieldValue in keyFields)
{
List<int> indexList = new List<int>();
foreach (IBatchItem itm in batch)
if (itm.Type == TBatchItemType.BIT_Document)
if ((string)itm.AsDocument.IndexedItemValue(keyFieldName) == keyFieldValue) indexList.Add(itm.Index);
for (int i = 0; i < indexList.Count; i++)
batch.Move(batch[indexList[i]-i], batch.Count);
}
// Unterdokumente nur dann in Sätze verschieben, wenn die Schlüsselfelder übereinstimmen
// (zuerst Bereiche festlegen, dann untergeordnete Dokumente)
int ind = 0;
while (ind < batch.Count)
{
if (batch[ind].Type == TBatchItemType.BIT_Document)
// Suchen nach dem Anfang des Satzes
if (batch[ind].AsDocument.DefinitionName == docDefs[0])
//Wenn das Dokument nach dem Satz kein Satz ist und die Schlüsselfelder übereinstimmen,
// fügen wir es zum Satz hinzu
while (ind+1 < batch.Count &&
batch[ind+1].AsDocument.DefinitionName != docDefs[0] &&
(string)batch[ind+1].AsDocument.IndexedItemValue(keyFieldName) == (string)batch[ind].AsDocument.IndexedItemValue(keyFieldName))
batch[ind].ChildItems.Move(batch[ind+1], batch[ind].ChildItems.Count);
ind++;
}