~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/extensions/webservices/soap/src/nsSOAPHeaderBlock.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
9
 *
 
10
 * Software distributed under the License is distributed on an "AS IS" basis,
 
11
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
 * for the specific language governing rights and limitations under the
 
13
 * License.
 
14
 *
 
15
 * The Original Code is mozilla.org code.
 
16
 *
 
17
 * The Initial Developer of the Original Code is 
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 2001
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 *
 
25
 * Alternatively, the contents of this file may be used under the terms of
 
26
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
27
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
28
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
29
 * of those above. If you wish to allow use of your version of this file only
 
30
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
31
 * use your version of this file under the terms of the NPL, indicate your
 
32
 * decision by deleting the provisions above and replace them with the notice
 
33
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
34
 * the provisions above, a recipient may use your version of this file under
 
35
 * the terms of any one of the NPL, the GPL or the LGPL.
 
36
 *
 
37
 * ***** END LICENSE BLOCK ***** */
 
38
 
 
39
#include "nsString.h"
 
40
#include "nsReadableUtils.h"
 
41
#include "nsSOAPHeaderBlock.h"
 
42
#include "nsSOAPUtils.h"
 
43
#include "nsIServiceManager.h"
 
44
#include "nsISOAPAttachments.h"
 
45
#include "nsISOAPMessage.h"
 
46
#include "nsSOAPException.h"
 
47
 
 
48
nsSOAPHeaderBlock::nsSOAPHeaderBlock()
 
49
{
 
50
}
 
51
 
 
52
NS_IMPL_CI_INTERFACE_GETTER2(nsSOAPHeaderBlock, nsISOAPBlock,
 
53
                             nsISOAPHeaderBlock)
 
54
    NS_IMPL_ADDREF_INHERITED(nsSOAPHeaderBlock, nsSOAPBlock)
 
55
    NS_IMPL_RELEASE_INHERITED(nsSOAPHeaderBlock, nsSOAPBlock)
 
56
    NS_INTERFACE_MAP_BEGIN(nsSOAPHeaderBlock)
 
57
    NS_INTERFACE_MAP_ENTRY(nsISOAPHeaderBlock)
 
58
    NS_IMPL_QUERY_CLASSINFO(nsSOAPHeaderBlock)
 
59
    NS_INTERFACE_MAP_END_INHERITING(nsSOAPBlock) nsSOAPHeaderBlock::
 
60
    ~nsSOAPHeaderBlock()
 
61
{
 
62
}
 
63
 
 
64
/* attribute AString actorURI; */
 
65
NS_IMETHODIMP nsSOAPHeaderBlock::GetActorURI(nsAString & aActorURI)
 
66
{
 
67
  NS_ENSURE_ARG_POINTER(&aActorURI);
 
68
  if (mElement) {
 
69
    if (mVersion == nsISOAPMessage::VERSION_UNKNOWN)
 
70
      return SOAP_EXCEPTION(NS_ERROR_NOT_AVAILABLE,"SOAP_HEADER_INIT", "Header has not been properly initialized.");
 
71
    return mElement->GetAttributeNS(*gSOAPStrings->kSOAPEnvURI[mVersion],
 
72
                                    gSOAPStrings->kActorAttribute,
 
73
                                    aActorURI);
 
74
  } else {
 
75
    aActorURI.Assign(mActorURI);
 
76
  }
 
77
  return NS_OK;
 
78
}
 
79
 
 
80
NS_IMETHODIMP nsSOAPHeaderBlock::SetActorURI(const nsAString & aActorURI)
 
81
{
 
82
  nsresult rc = SetElement(nsnull);
 
83
  if (NS_FAILED(rc))
 
84
    return rc;
 
85
  mActorURI.Assign(aActorURI);
 
86
  return NS_OK;
 
87
}
 
88
 
 
89
/* attribute AString mustUnderstand; */
 
90
NS_IMETHODIMP nsSOAPHeaderBlock::GetMustUnderstand(PRBool *
 
91
                                                   aMustUnderstand)
 
92
{
 
93
  NS_ENSURE_ARG_POINTER(&aMustUnderstand);
 
94
  if (mElement) {
 
95
    if (mVersion == nsISOAPMessage::VERSION_UNKNOWN)
 
96
      return SOAP_EXCEPTION(NS_ERROR_NOT_AVAILABLE,"SOAP_HEADER_INIT", "Header has not been properly initialized.");
 
97
    nsAutoString m;
 
98
    nsresult
 
99
        rc =
 
100
        mElement->
 
101
        GetAttributeNS(*gSOAPStrings->kSOAPEnvURI[mVersion],
 
102
                       gSOAPStrings->kMustUnderstandAttribute, m);
 
103
    if (NS_FAILED(rc))
 
104
      return rc;
 
105
    if (m.IsEmpty())
 
106
      *aMustUnderstand = PR_FALSE;
 
107
    else if (m.Equals(gSOAPStrings->kTrue)
 
108
             || m.Equals(gSOAPStrings->kTrueA))
 
109
      *aMustUnderstand = PR_TRUE;
 
110
    else if (m.Equals(gSOAPStrings->kFalse)
 
111
             || m.Equals(gSOAPStrings->kFalseA))
 
112
      *aMustUnderstand = PR_FALSE;
 
113
    else
 
114
      return SOAP_EXCEPTION(NS_ERROR_ILLEGAL_VALUE,"SOAP_HEADER_MUSTUNDERSTAND", "Must understand value in header has an illegal value.");
 
115
    return NS_OK;
 
116
  } else {
 
117
    *aMustUnderstand = mMustUnderstand;
 
118
  }
 
119
  return NS_OK;
 
120
}
 
121
 
 
122
NS_IMETHODIMP nsSOAPHeaderBlock::SetMustUnderstand(PRBool aMustUnderstand)
 
123
{
 
124
  nsresult rc = SetElement(nsnull);
 
125
  if (NS_FAILED(rc))
 
126
    return rc;
 
127
  mMustUnderstand = aMustUnderstand;
 
128
  return NS_OK;
 
129
}