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

  1 karl  1.7 //%2006////////////////////////////////////////////////////////////////////////
  2 kumpf 1.1 //
  3 karl  1.2 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
  4           // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
  5           // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
  6 kumpf 1.1 // IBM Corp.; EMC Corporation, The Open Group.
  7 karl  1.2 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
  8           // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
  9 karl  1.4 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 10           // EMC Corporation; VERITAS Software Corporation; The Open Group.
 11 karl  1.7 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 12           // EMC Corporation; Symantec Corporation; The Open Group.
 13 kumpf 1.1 //
 14           // Permission is hereby granted, free of charge, to any person obtaining a copy
 15           // of this software and associated documentation files (the "Software"), to
 16           // deal in the Software without restriction, including without limitation the
 17           // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 18           // sell copies of the Software, and to permit persons to whom the Software is
 19           // furnished to do so, subject to the following conditions:
 20           // 
 21           // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 22           // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 23           // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 24           // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 25           // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 26           // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 27           // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 28           // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 29           //
 30 kamal.locahana 1.10 //=============================================================================
 31 kumpf          1.1  //
 32 kamal.locahana 1.10 //%////////////////////////////////////////////////////////////////////////////
 33 kumpf          1.1  
 34                     #include <Pegasus/Common/CIMMessageSerializer.h>
 35                     #include <Pegasus/Common/CIMMessageDeserializer.h>
 36                     #include <Pegasus/Common/MessageLoader.h>
 37                     #include <Pegasus/Common/Exception.h>
 38                     #include <Pegasus/Common/Tracer.h>
 39                     
 40                     #include "AnonymousPipe.h"
 41                     
 42                     
 43                     #if defined (PEGASUS_OS_TYPE_WINDOWS)
 44                     # include "AnonymousPipeWindows.cpp"
 45                     #elif defined (PEGASUS_OS_TYPE_UNIX)
 46 mike           1.8  # include "AnonymousPipePOSIX.cpp"
 47 gs.keenan      1.5  #elif defined (PEGASUS_OS_VMS)
 48 mike           1.8  # include "AnonymousPipePOSIX.cpp"
 49 kumpf          1.1  #else
 50                     # error "Unsupported platform"
 51                     #endif
 52                     
 53                     PEGASUS_NAMESPACE_BEGIN
 54                     
 55                     AnonymousPipe::Status AnonymousPipe::writeMessage (CIMMessage * message)
 56                     {
 57                         PEG_METHOD_ENTER (TRC_OS_ABSTRACTION, "AnonymousPipe::writeMessage");
 58                     
 59                         //
 60                         // Serialize the request
 61                         //
 62 mike           1.6      Buffer messageBuffer;
 63 kumpf          1.1      messageBuffer.reserveCapacity (4096);
 64                         try
 65                         {
 66                             CIMMessageSerializer::serialize (messageBuffer, message);
 67                         }
 68                         catch (Exception & e)
 69                         {
 70 thilo.boehm    1.14         PEG_TRACE((TRC_OS_ABSTRACTION, Tracer::LEVEL2,
 71                                 "Failed to serialize message: %s", 
 72                                 (const char*)e.getMessage().getCString()));
 73 kumpf          1.1          PEG_METHOD_EXIT ();
 74                             throw;
 75                         }
 76                     
 77                         //
 78                         // Write the serialized message to the pipe
 79                         //
 80 kumpf          1.13     Uint32 messageLength = messageBuffer.size();
 81                         const char * messageData = messageBuffer.getData ();
 82 kumpf          1.1  
 83 kumpf          1.13     Status writeStatus =
 84                             writeBuffer((const char*) &messageLength, sizeof(Uint32));
 85 kumpf          1.1  
 86 kumpf          1.13     if (writeStatus == STATUS_SUCCESS)
 87 kumpf          1.1      {
 88 kumpf          1.13         writeStatus = writeBuffer(messageData, messageLength);
 89 kumpf          1.1      }
 90                     
 91                         PEG_METHOD_EXIT ();
 92                         return writeStatus;
 93                     }
 94                     
 95                     AnonymousPipe::Status AnonymousPipe::readMessage (CIMMessage * & message)
 96                     {
 97                         PEG_METHOD_ENTER (TRC_OS_ABSTRACTION, "AnonymousPipe::readMessage");
 98                     
 99                         message = 0;
100                     
101                         //
102                         //  Read the message length
103                         //
104                         Uint32 messageLength;
105                         Status readStatus = readBuffer ((char *) &messageLength, sizeof (Uint32));
106                     
107                         if (readStatus != STATUS_SUCCESS)
108                         {
109                             PEG_METHOD_EXIT ();
110 kumpf          1.1          return readStatus;
111                         }
112                     
113                         if (messageLength == 0)
114                         {
115                             //
116                             //  Null message
117                             //
118                             PEG_METHOD_EXIT ();
119                             return STATUS_SUCCESS;
120                         }
121                     
122                         //
123                         //  Read the message data
124                         //
125                         AutoArrayPtr <char> messageBuffer (new char [messageLength + 1]);
126                     
127                         //
128                         //  We know a message is coming
129                         //  Keep reading even if interrupted
130                         //
131 kumpf          1.1      do
132                         {
133                             readStatus = readBuffer (messageBuffer.get (), messageLength);
134                         } while (readStatus == STATUS_INTERRUPT);
135                     
136                         if (readStatus != STATUS_SUCCESS)
137                         {
138                             PEG_METHOD_EXIT ();
139                             return readStatus;
140                         }
141                     
142                         try
143                         {
144                             //
145                             //  De-serialize the message
146                             //
147                             message = CIMMessageDeserializer::deserialize (messageBuffer.get ());
148                         }
149                         catch (Exception & e)
150                         {
151                             //
152 kumpf          1.1          //  De-serialization failed
153                             //
154 thilo.boehm    1.14         PEG_TRACE ((TRC_OS_ABSTRACTION, Tracer::LEVEL2,
155                                 "Failed to de-serialize message: %s",
156                                 (const char*)e.getMessage().getCString()));
157 kumpf          1.1          PEG_METHOD_EXIT ();
158                             throw;
159                         }
160                     
161                         PEG_METHOD_EXIT ();
162                         return readStatus;
163                     }
164                     
165                     PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2