summaryrefslogtreecommitdiffstats
path: root/mailnews/mime/emitters/nsMimePlainEmitter.cpp
blob: 8e6fae742af20791102c0378f83c1172534c86fc (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include <stdio.h>
#include "nsMimeRebuffer.h"
#include "nsMimePlainEmitter.h"
#include "plstr.h"
#include "nsMailHeaders.h"
#include "nscore.h"
#include "prmem.h"
#include "nsEmitterUtils.h"
#include "nsCOMPtr.h"
#include "nsUnicharUtils.h"

/*
 * nsMimePlainEmitter definitions....
 */
nsMimePlainEmitter::nsMimePlainEmitter()
{
}


nsMimePlainEmitter::~nsMimePlainEmitter(void)
{
}


// Header handling routines.
nsresult
nsMimePlainEmitter::StartHeader(bool rootMailHeader, bool headerOnly, const char *msgID,
                           const char *outCharset)
{
  mDocHeader = rootMailHeader;
  return NS_OK; 
}

nsresult
nsMimePlainEmitter::AddHeaderField(const char *field, const char *value)
{
  if ( (!field) || (!value) )
    return NS_OK;

  UtilityWrite(field);
  UtilityWrite(":\t");
  UtilityWriteCRLF(value);
  return NS_OK;
}

nsresult
nsMimePlainEmitter::EndHeader(const nsACString &name)
{
  UtilityWriteCRLF("");
  return NS_OK; 
}

NS_IMETHODIMP
nsMimePlainEmitter::WriteBody(const nsACString &buf, uint32_t *amountWritten)
{
  Write(buf, amountWritten);
  return NS_OK;
}