(file) Return to HTTPOptions.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

  1 mike  1.2 //%/////////////////////////////////////////////////////////////////////////////
  2           //
  3           // Copyright (c) 2000, 2001 BMC Software, Hewlett-Packard Company, IBM, 
  4           // The Open Group, Tivoli Systems
  5           //
  6           // Permission is hereby granted, free of charge, to any person obtaining a copy
  7           // of this software and associated documentation files (the "Software"), to 
  8           // deal in the Software without restriction, including without limitation the 
  9           // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 
 10           // sell copies of the Software, and to permit persons to whom the Software is
 11           // furnished to do so, subject to the following conditions:
 12           // 
 13           // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN 
 14           // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 15           // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 16           // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR 
 17           // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
 18           // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 
 19           // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 20           // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 21           //
 22 mike  1.2 //==============================================================================
 23           //
 24           // Author: Mike Brasher (k.schopmeyer@opengroup.org)
 25           //
 26           // Modified By:
 27           //
 28           //%/////////////////////////////////////////////////////////////////////////////
 29           
 30 kumpf 1.5 #include <Pegasus/Common/Config.h>
 31           #include <Pegasus/Common/Constants.h>
 32 mike  1.2 #include <Pegasus/Common/HTTPAcceptor.h>
 33           #include <Pegasus/Common/FileSystem.h>
 34           #include <Pegasus/Common/HTTPConnection.h>
 35           #include <Pegasus/Common/HTTPMessage.h>
 36           
 37           #include "HTTPOptions.h"
 38           
 39           PEGASUS_NAMESPACE_BEGIN
 40           
 41           PEGASUS_USING_PEGASUS;
 42           PEGASUS_USING_STD;
 43           
 44           HTTPOptions::HTTPOptions()
 45 kumpf 1.5     : MessageQueue(PEGASUS_QUEUENAME_HTTPOPTIONS)
 46 mike  1.2 {
 47 mday  1.3 #error  "this class does not appear to be used" // <<< Sat Feb  9 17:33:07 2002 mdd >>>
 48 mike  1.2 }
 49           
 50           HTTPOptions::~HTTPOptions()
 51           {
 52           
 53           }
 54           
 55 mday  1.4 void HTTPOptions::handleEnqueue(Message *message)
 56           {
 57              if (message)
 58              {
 59                 if (message->getType() == HTTP_MESSAGE)
 60                 {
 61           	 handleHTTPMessage((HTTPMessage*)message);
 62                 }
 63           
 64                 //delete message;
 65              }
 66           }
 67           
 68 mike  1.2 void HTTPOptions::handleEnqueue()
 69           {
 70           
 71 mday  1.4    Message* message = dequeue();
 72              handleEnqueue(message);
 73              
 74 mike  1.2 }
 75           
 76           void HTTPOptions::handleHTTPMessage(HTTPMessage* httpMessage)
 77           {
 78            
 79 mday  1.4    // Save queueId:
 80 mike  1.2 
 81 mday  1.4    Uint32 queueId = httpMessage->queueId;
 82 mike  1.2 
 83 mday  1.4    // Parse the HTTP message:
 84              String startLine;
 85              Array<HTTPHeader> headers;
 86              Sint8* content;
 87              Uint32 contentLength;
 88 mike  1.2 
 89 mday  1.4    httpMessage->parse(startLine, headers, content, contentLength);
 90 mike  1.2     
 91 mday  1.4    // Parse the request line:
 92 mike  1.2 
 93 mday  1.4    String methodName;
 94              String requestUri;
 95              String httpVersion;
 96           
 97              HTTPMessage::parseRequestLine(
 98                 startLine, methodName, requestUri, httpVersion);
 99           
100              // Process M-POST and POST messages:
101           
102              if (methodName == "M-POST" || methodName == "POST")
103              {
104                 // Search for "CIMOperation" header:
105           
106                 String cimOperation;
107                 httpMessage->message.append('\0');
108           
109                 //SocketMessage* socketMessage = (SocketMessage*)httpMessage;
110           
111                 if (HTTPMessage::lookupHeader(
112           	     headers, "*CIMOperation", cimOperation, true))
113                 {
114 mday  1.4 	 //_operationMessageQueue->enqueue(socketMessage);
115           	 _operationMessageQueue->enqueue(httpMessage);
116                 }
117                 else if (HTTPMessage::lookupHeader(
118           		  headers, "*CIMExport", cimOperation, true))
119                 {
120           	 //_exportMessageQueue->enqueue(socketMessage);
121           	 _exportMessageQueue->enqueue(httpMessage);
122                 }
123                 else
124                 {
125           	 // ATTN: error discarded at this time!
126           	 return;
127                 }
128 mike  1.2 
129 mday  1.4    }
130              // ATTN: KS Add the else here for Post, etc.  Also go to OPTIONS here.
131 mike  1.2 }
132           
133           
134           PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2