Ejemplo n.º 1
0
        protected async Task <IMailWriteReference> CreateWriteReference(
            string sender,
            CancellationToken token,
            IEnumerable <string> recipients,
            Func <string, string> getTempPathFromName,
            Func <string, string> getPathFromName)
        {
            IEnumerable <string> targetRecipients = recipients;

            string mailName = Guid.NewGuid().ToString("D");

            string tempPath   = getTempPathFromName(mailName);
            string targetPath = getPathFromName(mailName);

            // ReSharper disable AssignNullToNotNullAttribute
            Directory.CreateDirectory(Path.GetDirectoryName(targetPath));
            Directory.CreateDirectory(Path.GetDirectoryName(tempPath));
            // ReSharper restore AssignNullToNotNullAttribute

            using (Sharable <FileStream> shared =
                       Sharable.Create(File.Open(tempPath, FileMode.CreateNew, FileAccess.Write, FileShare.Read)))
            {
                FileStream           stream     = shared.Peek();
                IEnumerable <string> enumerable = targetRecipients.ToList();
                // Save room for header length
                using (var writer = new StreamWriter(stream, new UTF8Encoding(false), 1024, true))
                {
                    await writer.WriteLineAsync($"{HeaderLengthHeader}000000000");

                    await writer.WriteLineAsync($"FROM:{sender}");

                    foreach (string recipient in enumerable)
                    {
                        token.ThrowIfCancellationRequested();
                        await writer.WriteLineAsync($"TO:{recipient}");
                    }

                    await writer.FlushAsync();

                    var location = (int)stream.Position;
                    stream.Seek(0, SeekOrigin.Begin);
                    await writer.FlushAsync();

                    await writer.WriteLineAsync($"{HeaderLengthHeader}{location:D9}");

                    await writer.FlushAsync();

                    stream.Seek(location, SeekOrigin.Begin);
                }

                return(new WriteReference(
                           mailName,
                           tempPath,
                           targetPath,
                           sender,
                           enumerable,
                           new StreamSpan(shared.TakeValue()),
                           this));
            }
        }
Ejemplo n.º 2
0
        public async Task <IMailReadReference> OpenReadAsync(IMailReference reference)
        {
            var mailReference = reference as IReference;

            if (mailReference == null)
            {
                throw new ArgumentNullException(nameof(reference));
            }

            using (var stream = Sharable.Create(File.OpenRead(mailReference.Path)))
            {
                string        sender;
                List <string> recipients = new List <string>();
                using (var reader = new StreamReader(stream.Peek(), Encoding.UTF8, false, 1024, true))
                {
                    var fromLine = await reader.ReadLineAsync();

                    if (!fromLine.StartsWith("FROM:"))
                    {
                        throw new FormatException("Invalid mail file format, expected FROM line");
                    }

                    sender = fromLine.Substring(5);

                    while (true)
                    {
                        var line = await reader.ReadLineAsync();

                        if (line.StartsWith("---"))
                        {
                            break;
                        }

                        if (line.StartsWith("TO:"))
                        {
                            recipients.Add(line.Substring(3));
                            continue;
                        }

                        throw new FormatException("Invalid mail file format, expected TO: line or Begin Message");
                    }
                }

                return(new ReadReference(sender, recipients, mailReference.Path, stream.TakeValue()));
            }
        }
Ejemplo n.º 3
0
        public async Task <IMailWriteReference> NewMailAsync(string sender, IEnumerable <string> recipients, CancellationToken token)
        {
            string mailName = Guid.NewGuid().ToString("D");

            string tempPath   = Path.Combine(Path.GetTempPath(), mailName);
            string targetPath = Path.Combine(_mailDirectory, mailName);

            using (var shared = Sharable.Create(File.Create(tempPath)))
            {
                IEnumerable <string> enumerable = recipients as IList <string> ?? recipients.ToList();
                using (var writer = new StreamWriter(shared.Peek(), Encoding.UTF8, 1024, true))
                {
                    await writer.WriteLineAsync($"FROM:{sender}");

                    foreach (var recipient in enumerable)
                    {
                        await writer.WriteLineAsync($"TO:{recipient}");
                    }
                    await writer.WriteLineAsync("--- BEGIN MESSAGE ---");
                }

                return(new WriteReference(tempPath, targetPath, sender, enumerable, new OffsetStream(shared.TakeValue())));
            }
        }
Ejemplo n.º 4
0
        public async Task <IMailReadReference> OpenReadAsync(IMailReference reference, CancellationToken token)
        {
            var mailReference = reference as Reference;

            if (mailReference == null)
            {
                throw new ArgumentNullException(nameof(reference));
            }

            using (Sharable <FileStream> stream = Sharable.Create(File.OpenRead(mailReference.Path)))
            {
                string     sender;
                var        recipients = new List <string>();
                FileStream streamImpl = stream.Peek();
                // 23 ASCII characters, up to 1 GB in size, should be sufficient
                // Header-Legnth:000000000
                string headerSizeHeader = Encoding.ASCII.GetString(await streamImpl.ReadExactlyAsync(23, token));

                if (!headerSizeHeader.StartsWith(HeaderLengthHeader))
                {
                    throw new FormatException($"Invalid mail file format, expected {HeaderLengthHeader} line");
                }

                if (!int.TryParse(headerSizeHeader.Substring(HeaderLengthHeader.Length), out int headerSize) || headerSize <= 0)
                {
                    throw new FormatException($"Invalid mail file format, {HeaderLengthHeader} is not a valid number");
                }

                using (var reader = new StreamReader(new StreamSpan(streamImpl, 0, headerSize), Encoding.UTF8, false, 1, true))
                {
                    // This should be the "new line" at the end of the Header-Length we've already consumed
                    // so all that is left is the rest of the line (which is empty).
                    // If it's not, then we didn't read what we thought we read, bail
                    string blankLine = await reader.ReadLineAsync();

                    if (!string.IsNullOrEmpty(blankLine))
                    {
                        throw new FormatException($"Invalid mail file format, {HeaderLengthHeader} is improperly formatted");
                    }

                    string fromLine = await reader.ReadLineAsync();

                    if (!fromLine.StartsWith("FROM:"))
                    {
                        throw new FormatException("Invalid mail file format, expected FROM line");
                    }

                    sender = fromLine.Substring(5);

                    string line = null;
                    while (await reader.TryReadLineAsync(l => line = l, token))
                    {
                        if (line.StartsWith("TO:"))
                        {
                            recipients.Add(line.Substring(3));
                            continue;
                        }

                        throw new FormatException("Invalid mail file format, expected TO: line or Begin Message");
                    }
                }

                return(new ReadReference(
                           mailReference.Id,
                           sender,
                           recipients,
                           mailReference.Path,
                           new StreamSpan(stream.TakeValue()),
                           this));
            }
        }