summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mime/emitters/nsMimePlainEmitter.cpp
blob: 1a74e1041709f48b3c523d931cec75dbbcfe949c (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
/* -*- Mode: C++; tab-width: 2; 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 "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;
}