private int CabExtractNotify(NativeMethods.FDI.NOTIFICATIONTYPE notificationType, NativeMethods.FDI.NOTIFICATION notification)
        {
            switch (notificationType)
            {
            case NativeMethods.FDI.NOTIFICATIONTYPE.CABINET_INFO:
                if (base.NextCabinetName != null && base.NextCabinetName.StartsWith("?", StringComparison.Ordinal))
                {
                    base.NextCabinetName = base.NextCabinetName.Substring(1);
                }
                else
                {
                    string text = Marshal.PtrToStringAnsi(notification.psz1);
                    base.NextCabinetName = ((text.Length != 0) ? text : null);
                }
                return(0);

            case NativeMethods.FDI.NOTIFICATIONTYPE.NEXT_CABINET:
            {
                string key = Marshal.PtrToStringAnsi(notification.psz1);
                base.CabNumbers[key] = notification.iCabinet;
                base.NextCabinetName = "?" + base.NextCabinetName;
                return(0);
            }

            case NativeMethods.FDI.NOTIFICATIONTYPE.COPY_FILE:
                return(CabExtractCopyFile(notification));

            case NativeMethods.FDI.NOTIFICATIONTYPE.CLOSE_FILE_INFO:
                return(CabExtractCloseFile(notification));

            default:
                return(0);
            }
        }
Example #2
0
        private int CabListNotify(NativeMethods.FDI.NOTIFICATIONTYPE notificationType, NativeMethods.FDI.NOTIFICATION notification)
        {
            switch (notificationType)
            {
            case NativeMethods.FDI.NOTIFICATIONTYPE.CABINET_INFO:
            {
                string nextCab = Marshal.PtrToStringAnsi(notification.psz1);
                this.NextCabinetName = (nextCab.Length != 0 ? nextCab : null);
                return(0);         // Continue
            }

            case NativeMethods.FDI.NOTIFICATIONTYPE.PARTIAL_FILE:
            {
                // This notification can occur when examining the contents of a non-first cab file.
                return(0);         // Continue
            }

            case NativeMethods.FDI.NOTIFICATIONTYPE.COPY_FILE:
            {
                //bool execute = (notification.attribs & (ushort) FileAttributes.Device) != 0;  // _A_EXEC

                string name = CabUnpacker.GetFileName(notification);

                if (this.filter == null || this.filter(name))
                {
                    if (this.fileList != null)
                    {
                        FileAttributes attributes = (FileAttributes)notification.attribs &
                                                    (FileAttributes.Archive | FileAttributes.Hidden | FileAttributes.ReadOnly | FileAttributes.System);
                        if (attributes == (FileAttributes)0)
                        {
                            attributes = FileAttributes.Normal;
                        }
                        DateTime lastWriteTime;
                        CompressionEngine.DosDateAndTimeToDateTime(notification.date, notification.time, out lastWriteTime);
                        long length = notification.cb;

                        CabFileInfo fileInfo = new CabFileInfo(
                            name,
                            notification.iFolder,
                            notification.iCabinet,
                            attributes,
                            lastWriteTime,
                            length);
                        this.fileList.Add(fileInfo);
                        this.currentFileNumber   = this.fileList.Count - 1;
                        this.fileBytesProcessed += notification.cb;
                    }
                }

                this.totalFiles++;
                this.totalFileBytes += notification.cb;
                return(0);         // Continue
            }
            }
            return(0);
        }
        private int CabListNotify(NativeMethods.FDI.NOTIFICATIONTYPE notificationType, NativeMethods.FDI.NOTIFICATION notification)
        {
            checked
            {
                switch (notificationType)
                {
                case NativeMethods.FDI.NOTIFICATIONTYPE.CABINET_INFO:
                {
                    string text = Marshal.PtrToStringAnsi(notification.psz1);
                    base.NextCabinetName = ((text.Length != 0) ? text : null);
                    return(0);
                }

                case NativeMethods.FDI.NOTIFICATIONTYPE.PARTIAL_FILE:
                    return(0);

                case NativeMethods.FDI.NOTIFICATIONTYPE.COPY_FILE:
                {
                    string fileName = GetFileName(notification);
                    if ((filter == null || filter(fileName)) && fileList != null)
                    {
                        FileAttributes fileAttributes = unchecked ((FileAttributes)(notification.attribs & 0x27));
                        if (fileAttributes == (FileAttributes)0)
                        {
                            fileAttributes = FileAttributes.Normal;
                        }
                        CompressionEngine.DosDateAndTimeToDateTime(notification.date, notification.time, out var dateTime);
                        long        length = notification.cb;
                        CabFileInfo item   = new CabFileInfo(fileName, notification.iFolder, notification.iCabinet, fileAttributes, dateTime, length);
                        fileList.Add(item);
                        currentFileNumber   = fileList.Count - 1;
                        fileBytesProcessed += notification.cb;
                    }
                    totalFiles++;
                    totalFileBytes += notification.cb;
                    return(0);
                }

                default:
                    return(0);
                }
            }
        }
Example #4
0
        private int CabExtractNotify(NativeMethods.FDI.NOTIFICATIONTYPE notificationType, NativeMethods.FDI.NOTIFICATION notification)
        {
            switch (notificationType)
            {
            case NativeMethods.FDI.NOTIFICATIONTYPE.CABINET_INFO:
            {
                if (this.NextCabinetName != null && this.NextCabinetName.StartsWith("?", StringComparison.Ordinal))
                {
                    // We are just continuing the copy of a file that spanned cabinets.
                    // The next cabinet name needs to be preserved.
                    this.NextCabinetName = this.NextCabinetName.Substring(1);
                }
                else
                {
                    string nextCab = Marshal.PtrToStringAnsi(notification.psz1);
                    this.NextCabinetName = (nextCab.Length != 0 ? nextCab : null);
                }
                return(0);         // Continue
            }

            case NativeMethods.FDI.NOTIFICATIONTYPE.NEXT_CABINET:
            {
                string nextCab = Marshal.PtrToStringAnsi(notification.psz1);
                this.CabNumbers[nextCab] = (short)notification.iCabinet;
                this.NextCabinetName     = "?" + this.NextCabinetName;
                return(0);         // Continue
            }

            case NativeMethods.FDI.NOTIFICATIONTYPE.COPY_FILE:
            {
                return(this.CabExtractCopyFile(notification));
            }

            case NativeMethods.FDI.NOTIFICATIONTYPE.CLOSE_FILE_INFO:
            {
                return(this.CabExtractCloseFile(notification));
            }
            }
            return(0);
        }