public override void PerformBatchOperation(object[][] batchedItemBuffer, int fetchedItemCount, StoreId currentFolderId, MailboxSession sourceMailbox, MailboxSession targetMailbox, Dictionary <StoreId, FolderNode> folderNodeMap, SearchResultProcessor processor)
 {
     if (this.loggingLevel != LoggingLevel.Full)
     {
         return;
     }
     LocalizedString[] array = new LocalizedString[fetchedItemCount];
     for (int i = 0; i < fetchedItemCount; i++)
     {
         VersionedId versionedId = (VersionedId)batchedItemBuffer[i][0];
         string      text        = SearchMailboxAction.PropertyExists(batchedItemBuffer[i][3]) ? ((string)batchedItemBuffer[i][3]) : string.Empty;
         bool?       flag        = null;
         if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][4]))
         {
             flag = new bool?((bool)batchedItemBuffer[i][4]);
         }
         ExDateTime?exDateTime = null;
         if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][5]))
         {
             exDateTime = new ExDateTime?((ExDateTime)batchedItemBuffer[i][5]);
         }
         ExDateTime?exDateTime2 = null;
         if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][6]))
         {
             exDateTime2 = new ExDateTime?((ExDateTime)batchedItemBuffer[i][6]);
         }
         Participant participant = null;
         if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][7]))
         {
             participant = (Participant)batchedItemBuffer[i][7];
         }
         string text2 = null;
         if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][8]))
         {
             text2 = (string)batchedItemBuffer[i][8];
         }
         string text3       = (participant != null) ? participant.DisplayName : string.Empty;
         string text4       = (participant != null) ? participant.EmailAddress : string.Empty;
         string displayName = folderNodeMap[currentFolderId].DisplayName;
         array[i] = new LocalizedString(string.Format("{0},\"{1}\",\"{2}\",{3},{4},{5},{6},{7},{8}", new object[]
         {
             sourceMailbox.MailboxOwner.MailboxInfo.DisplayName,
             displayName,
             text,
             flag,
             exDateTime,
             exDateTime2,
             text3,
             text2 ?? text4,
             versionedId.ObjectId
         }));
     }
     StreamLogItem.LogItem logItem = new StreamLogItem.LogItem(processor.WorkerId, array);
     processor.ReportLogs(logItem);
 }
Пример #2
0
        private static bool DeleteItemByItem(object[][] batchedItemBuffer, int fetchedItemCount, StoreId currentFolderId, MailboxSession sourceMailbox, SearchResultProcessor processor, out string message)
        {
            StringBuilder stringBuilder = new StringBuilder();
            bool          result        = true;

            using (Folder folder = Folder.Bind(sourceMailbox, currentFolderId))
            {
                for (int i = 0; i < fetchedItemCount; i++)
                {
                    StoreId storeId = (StoreId)batchedItemBuffer[i][0];
                    if (!DeleteSearchMailboxAction.ItemSuccessfullyDeleted(sourceMailbox, storeId))
                    {
                        lock (sourceMailbox)
                        {
                            if (processor.IsAborted())
                            {
                                message = stringBuilder.ToString();
                                return(result);
                            }
                            AggregateOperationResult aggregateOperationResult = folder.DeleteObjects(DeleteItemFlags.HardDelete, new StoreId[]
                            {
                                storeId
                            });
                            if (aggregateOperationResult.OperationResult != OperationResult.Succeeded)
                            {
                                foreach (GroupOperationResult groupOperationResult in aggregateOperationResult.GroupOperationResults)
                                {
                                    if (groupOperationResult.OperationResult != OperationResult.Succeeded)
                                    {
                                        result = false;
                                        string text  = SearchMailboxAction.PropertyExists(batchedItemBuffer[i][3]) ? ((string)batchedItemBuffer[i][3]) : string.Empty;
                                        bool?  flag2 = null;
                                        if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][4]))
                                        {
                                            flag2 = new bool?((bool)batchedItemBuffer[i][4]);
                                        }
                                        ExDateTime?exDateTime = null;
                                        if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][5]))
                                        {
                                            exDateTime = new ExDateTime?((ExDateTime)batchedItemBuffer[i][5]);
                                        }
                                        ExDateTime?exDateTime2 = null;
                                        if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][6]))
                                        {
                                            exDateTime2 = new ExDateTime?((ExDateTime)batchedItemBuffer[i][6]);
                                        }
                                        Participant participant = null;
                                        if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][7]))
                                        {
                                            participant = (Participant)batchedItemBuffer[i][7];
                                        }
                                        string text2 = null;
                                        if (SearchMailboxAction.PropertyExists(batchedItemBuffer[i][8]))
                                        {
                                            text2 = (string)batchedItemBuffer[i][8];
                                        }
                                        string text3 = (participant != null) ? participant.DisplayName : string.Empty;
                                        string text4 = (participant != null) ? participant.EmailAddress : string.Empty;
                                        string text5 = (folder != null) ? folder.DisplayName : string.Empty;
                                        stringBuilder.Append(string.Format("\n{0}:\n {1},\"{2}\",\"{3}\",{4},{5},{6},{7},{8},{9}", new object[]
                                        {
                                            Strings.DeleteItemFailedForMessage(groupOperationResult.Exception.Message),
                                            sourceMailbox.MailboxOwner.MailboxInfo.DisplayName,
                                            text5,
                                            text,
                                            flag2,
                                            exDateTime,
                                            exDateTime2,
                                            text3,
                                            text2 ?? text4,
                                            ((VersionedId)storeId).ObjectId
                                        }));
                                    }
                                }
                            }
                        }
                    }
                }
            }
            message = stringBuilder.ToString();
            return(result);
        }