summaryrefslogtreecommitdiff
path: root/src/mime-printdoc.cc
blob: f9f86dcc25f71769b4c4670af23445d8475b66b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
 *  @file mime-printdoc.cc
 *  @brief Implementation of main mime parser components
 *  @author Andreas Aardal Hanssen
 *  @date 2002-2005
 */

#include "convert.h"
#include "iodevice.h"
#include "iofactory.h"
#include "mime-inputsource.h"
#include "mime-utils.h"
#include "mime.h"

#include <exception>
#include <iostream>
#include <map>
#include <string>
#include <vector>

#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>

void Binc::MimePart::printDoc(int fd,
                              IODevice &output,
                              unsigned int startoffset,
                              unsigned int length) const
{
  if (!mimeSource || mimeSource->getFileDescriptor() != fd) {
    delete mimeSource;
    mimeSource = new MimeInputSource(fd);
  }

  mimeSource->reset();
  mimeSource->seek(headerstartoffsetcrlf);

  char c;
  for (unsigned int i = 0; i < length; ++i) {
    if (!mimeSource->getChar(&c)) break;

    output << (char)c;
  }
}