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

Diff for /pegasus/src/Pegasus/Common/BinaryCodec.cpp between version 1.12.2.6 and 1.12.2.7

version 1.12.2.6, 2013/06/11 23:17:43 version 1.12.2.7, 2013/09/15 23:00:27
Line 3230 
Line 3230 
  
     Boolean endOfSequence;     Boolean endOfSequence;
     if (!in.getBoolean(endOfSequence))     if (!in.getBoolean(endOfSequence))
       {
         return 0;         return 0;
       }
  
     String enumerationContext;     String enumerationContext;
     if (!in.getString(enumerationContext))     if (!in.getString(enumerationContext))
       {
         return 0;         return 0;
       }
  
     CIMOpenEnumerateInstancesResponseMessage* msg =     CIMOpenEnumerateInstancesResponseMessage* msg =
         new CIMOpenEnumerateInstancesResponseMessage(         new CIMOpenEnumerateInstancesResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext);
             QueueIdStack());  
  
     // Instead of resolving the binary data here, we delegate this     // Instead of resolving the binary data here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through
Line 3385 
Line 3389 
  
     Boolean endOfSequence;     Boolean endOfSequence;
     if (!in.getBoolean(endOfSequence))     if (!in.getBoolean(endOfSequence))
       {
         return 0;         return 0;
       }
  
     String enumerationContext;     String enumerationContext;
     if (!in.getString(enumerationContext))     if (!in.getString(enumerationContext))
     {     {
         return 0;         return 0;
     }     }
   
     CIMOpenEnumerateInstancePathsResponseMessage* msg =     CIMOpenEnumerateInstancePathsResponseMessage* msg =
         new CIMOpenEnumerateInstancePathsResponseMessage(         new CIMOpenEnumerateInstancePathsResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext);
             QueueIdStack());  
  
     // Instead of resolving the binary data here, we delegate this     // Instead of resolving the binary data here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through
Line 3586 
Line 3593 
         new CIMOpenReferenceInstancesResponseMessage(         new CIMOpenReferenceInstancesResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext);
             QueueIdStack());  
  
     // Instead of resolving the binary data here, we delegate this     // Instead of resolving the binary data here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through
Line 3759 
Line 3766 
         new CIMOpenReferenceInstancePathsResponseMessage(         new CIMOpenReferenceInstancePathsResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext);
             QueueIdStack());  
  
     // Instead of resolving the binary data right here, we delegate this     // Instead of resolving the binary data right here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through
Line 3972 
Line 3979 
         new CIMOpenAssociatorInstancesResponseMessage(         new CIMOpenAssociatorInstancesResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext );
             QueueIdStack());  
  
     // Instead of resolving the binary data right here, we delegate this     // Instead of resolving the binary data right here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through
Line 4093 
Line 4100 
     Uint32 maxObjectCount;     Uint32 maxObjectCount;
     if (!in.getUint32(maxObjectCount))     if (!in.getUint32(maxObjectCount))
        return 0;        return 0;
   
     Uint32Arg operationTimeout;     Uint32Arg operationTimeout;
     if (!in.getUint32Arg(operationTimeout))     if (!in.getUint32Arg(operationTimeout))
         return 0;         return 0;
   
     String filterQueryLanguage;     String filterQueryLanguage;
     if (!in.getString(filterQueryLanguage))     if (!in.getString(filterQueryLanguage))
         return 0;         return 0;
   
     String filterQuery;     String filterQuery;
     if (!in.getString(filterQuery))     if (!in.getString(filterQuery))
         return 0;         return 0;
Line 4155 
Line 4165 
  
     Boolean endOfSequence;     Boolean endOfSequence;
     if (!in.getBoolean(endOfSequence))     if (!in.getBoolean(endOfSequence))
       {
         return 0;         return 0;
       }
  
     String enumerationContext;     String enumerationContext;
     if (!in.getString(enumerationContext))     if (!in.getString(enumerationContext))
       {
         return 0;         return 0;
       }
  
     CIMOpenAssociatorInstancePathsResponseMessage* msg =     CIMOpenAssociatorInstancePathsResponseMessage* msg =
         new CIMOpenAssociatorInstancePathsResponseMessage(         new CIMOpenAssociatorInstancePathsResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext);
             QueueIdStack());  
  
     // Instead of resolving the binary data right here, we delegate this     // Instead of resolving the binary data right here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through
Line 4230 
Line 4244 
  
     CIMNamespaceName nameSpace;     CIMNamespaceName nameSpace;
     if (!in.getNamespaceName(nameSpace))     if (!in.getNamespaceName(nameSpace))
       {
         return 0;         return 0;
       }
  
     // [EnumerationContext]     // [EnumerationContext]
     String enumerationContext;     String enumerationContext;
Line 4242 
Line 4258 
     // [MACTCOUNT]     // [MACTCOUNT]
     Uint32 maxObjectCount;     Uint32 maxObjectCount;
     if (!in.getUint32(maxObjectCount))     if (!in.getUint32(maxObjectCount))
       {
        return 0;        return 0;
       }
  
     AutoPtr<CIMPullInstancesWithPathRequestMessage> request(     AutoPtr<CIMPullInstancesWithPathRequestMessage> request(
         new CIMPullInstancesWithPathRequestMessage(         new CIMPullInstancesWithPathRequestMessage(
Line 4289 
Line 4307 
  
     Boolean endOfSequence;     Boolean endOfSequence;
     if (!in.getBoolean(endOfSequence))     if (!in.getBoolean(endOfSequence))
       {
         return 0;         return 0;
       }
  
     String enumerationContext;     String enumerationContext;
     if (!in.getString(enumerationContext))     if (!in.getString(enumerationContext))
       {
         return 0;         return 0;
       }
  
     CIMPullInstancesWithPathResponseMessage* msg =     CIMPullInstancesWithPathResponseMessage* msg =
         new CIMPullInstancesWithPathResponseMessage(         new CIMPullInstancesWithPathResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext);
             QueueIdStack());  
  
     // Instead of resolving the binary data right here, we delegate this     // Instead of resolving the binary data right here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through
Line 4363 
Line 4385 
  
     CIMNamespaceName nameSpace;     CIMNamespaceName nameSpace;
     if (!in.getNamespaceName(nameSpace))     if (!in.getNamespaceName(nameSpace))
       {
         return 0;         return 0;
       }
  
     // [EnumerationContext]     // [EnumerationContext]
     String enumerationContext;     String enumerationContext;
Line 4423 
Line 4447 
  
     Boolean endOfSequence;     Boolean endOfSequence;
     if (!in.getBoolean(endOfSequence))     if (!in.getBoolean(endOfSequence))
       {
         return 0;         return 0;
       }
  
     String enumerationContext;     String enumerationContext;
     if (!in.getString(enumerationContext))     if (!in.getString(enumerationContext))
       {
         return 0;         return 0;
       }
  
     CIMPullInstancePathsResponseMessage* msg =     CIMPullInstancePathsResponseMessage* msg =
         new CIMPullInstancePathsResponseMessage(         new CIMPullInstancePathsResponseMessage(
             messageId,             messageId,
             cimException,             cimException,
               QueueIdStack(),
             endOfSequence,             endOfSequence,
             enumerationContext,              enumerationContext);
             QueueIdStack());  
  
     // Instead of resolving the binary data right here, we delegate this     // Instead of resolving the binary data right here, we delegate this
     // to a later point in time when the data is actually retrieved through     // to a later point in time when the data is actually retrieved through


Legend:
Removed from v.1.12.2.6  
changed lines
  Added in v.1.12.2.7

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2