Example #1
0
        /// <summary>
        /// Submit the logging message to the engine queue.
        /// </summary>
        public void PostLoggingMessagesToHost(int nodeProviderId, NodeLoggingEvent[] nodeLoggingEventArray)
        {
            LocalCallDescriptorForPostLoggingMessagesToHost callDescriptor =
                new LocalCallDescriptorForPostLoggingMessagesToHost(nodeLoggingEventArray);

            nodeCommandQueue.Enqueue(callDescriptor);
        }
Example #2
0
        /// <summary>
        /// This method first reads the objectId as an int from the stream,
        /// this int should be found in the "ObjectType" enumeration. This
        /// objectId informs the method what kind of object should be
        /// deserialized and returned from the method. The objectId is an
        /// output parameter. This parameter is also returned so it can be
        /// used in the read and write methods to determine if
        /// a frame or end marker was found.
        /// </summary>
        private object DeserializeFromStream(out int objectId)
        {
            object objectRead = null;

            objectId = readStream.ReadByte();
            switch ((ObjectType)objectId)
            {
            case ObjectType.NetSerialization:
                objectRead = binaryFormatter.Deserialize(readStream);
                break;

            case ObjectType.FrameMarker:
                objectRead = binaryReader.ReadInt32();
                break;

            case ObjectType.PostBuildResult:
                objectRead = new LocalCallDescriptorForPostBuildResult();
                ((LocalCallDescriptorForPostBuildResult)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.PostBuildRequests:
                objectRead = new LocalCallDescriptorForPostBuildRequests();
                ((LocalCallDescriptorForPostBuildRequests)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.PostLoggingMessagesToHost:
                objectRead = new LocalCallDescriptorForPostLoggingMessagesToHost();
                ((LocalCallDescriptorForPostLoggingMessagesToHost)objectRead).CreateFromStream(binaryReader, loggingTypeCache);
                break;

            case ObjectType.InitializeNode:
                objectRead = new LocalCallDescriptorForInitializeNode();
                ((LocalCallDescriptorForInitializeNode)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.InitializationComplete:
                objectRead = new LocalCallDescriptorForInitializationComplete();
                ((LocalCallDescriptorForInitializationComplete)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.UpdateNodeSettings:
                objectRead = new LocalCallDescriptorForUpdateNodeSettings();
                ((LocalCallDescriptorForUpdateNodeSettings)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.RequestStatus:
                objectRead = new LocalCallDescriptorForRequestStatus();
                ((LocalCallDescriptorForRequestStatus)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.PostCacheEntriesToHost:
                objectRead = new LocalCallDescriptorForPostingCacheEntriesToHost();
                ((LocalCallDescriptorForPostingCacheEntriesToHost)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.GetCacheEntriesFromHost:
                objectRead = new LocalCallDescriptorForGettingCacheEntriesFromHost();
                ((LocalCallDescriptorForGettingCacheEntriesFromHost)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.ShutdownComplete:
                objectRead = new LocalCallDescriptorForShutdownComplete();
                ((LocalCallDescriptorForShutdownComplete)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.ShutdownNode:
                objectRead = new LocalCallDescriptorForShutdownNode();
                ((LocalCallDescriptorForShutdownNode)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.PostIntrospectorCommand:
                objectRead = new LocalCallDescriptorForPostIntrospectorCommand(null, null);
                ((LocalCallDescriptorForPostIntrospectorCommand)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.GenericSingleObjectReply:
                objectRead = new LocalReplyCallDescriptor();
                ((LocalReplyCallDescriptor)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.PostStatus:
                objectRead = new LocalCallDescriptorForPostStatus();
                ((LocalCallDescriptorForPostStatus)objectRead).CreateFromStream(binaryReader);
                break;

            case ObjectType.EndMarker:
                return(null);

            default:
                ErrorUtilities.VerifyThrow(false, "Should not be here, ObjectId:" + objectId + "Next:" + readStream.ReadByte());
                break;
            }
            return(objectRead);
        }
Example #3
0
 /// <summary>
 /// This method first reads the objectId as an int from the stream, 
 /// this int should be found in the "ObjectType" enumeration. This 
 /// objectId informs the method what kind of object should be 
 /// deserialized and returned from the method. The objectId is an
 /// output parameter. This parameter is also returned so it can be 
 /// used in the read and write methods to determine if 
 /// a frame or end marker was found.
 /// </summary>
 private object DeserializeFromStream(out int objectId)
 {
     object objectRead = null;
     objectId = readStream.ReadByte();
     switch ((ObjectType)objectId)
     {
         case ObjectType.NetSerialization:
             objectRead = binaryFormatter.Deserialize(readStream);
             break;
         case ObjectType.FrameMarker:
             objectRead = binaryReader.ReadInt32();
             break;
         case ObjectType.PostBuildResult:
             objectRead = new LocalCallDescriptorForPostBuildResult();
             ((LocalCallDescriptorForPostBuildResult)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.PostBuildRequests:
             objectRead = new LocalCallDescriptorForPostBuildRequests();
             ((LocalCallDescriptorForPostBuildRequests)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.PostLoggingMessagesToHost:
             objectRead = new LocalCallDescriptorForPostLoggingMessagesToHost();
             ((LocalCallDescriptorForPostLoggingMessagesToHost)objectRead).CreateFromStream(binaryReader, loggingTypeCache);
             break;
         case ObjectType.InitializeNode:
             objectRead = new LocalCallDescriptorForInitializeNode();
             ((LocalCallDescriptorForInitializeNode)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.InitializationComplete:
             objectRead = new LocalCallDescriptorForInitializationComplete();
             ((LocalCallDescriptorForInitializationComplete)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.UpdateNodeSettings:
             objectRead = new LocalCallDescriptorForUpdateNodeSettings();
             ((LocalCallDescriptorForUpdateNodeSettings)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.RequestStatus:
             objectRead = new LocalCallDescriptorForRequestStatus();
             ((LocalCallDescriptorForRequestStatus)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.PostCacheEntriesToHost:
             objectRead = new LocalCallDescriptorForPostingCacheEntriesToHost();
             ((LocalCallDescriptorForPostingCacheEntriesToHost)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.GetCacheEntriesFromHost:
             objectRead = new LocalCallDescriptorForGettingCacheEntriesFromHost();
             ((LocalCallDescriptorForGettingCacheEntriesFromHost)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.ShutdownComplete:
             objectRead = new LocalCallDescriptorForShutdownComplete();
             ((LocalCallDescriptorForShutdownComplete)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.ShutdownNode:
             objectRead = new LocalCallDescriptorForShutdownNode();
             ((LocalCallDescriptorForShutdownNode)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.PostIntrospectorCommand:
             objectRead = new LocalCallDescriptorForPostIntrospectorCommand(null, null);
             ((LocalCallDescriptorForPostIntrospectorCommand)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.GenericSingleObjectReply:
             objectRead = new LocalReplyCallDescriptor();
             ((LocalReplyCallDescriptor)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.PostStatus:
             objectRead = new LocalCallDescriptorForPostStatus();
             ((LocalCallDescriptorForPostStatus)objectRead).CreateFromStream(binaryReader);
             break;
         case ObjectType.EndMarker:
             return null;
         default:
             ErrorUtilities.VerifyThrow(false, "Should not be here, ObjectId:" + objectId + "Next:" + readStream.ReadByte());
             break;
     }
     return objectRead;
 }
Example #4
0
 private static LocalCallDescriptorForPostLoggingMessagesToHost CreatePostMessageCallDescriptor(int numberEvents)
 {
     NodeLoggingEvent[] eventArray = new NodeLoggingEvent[numberEvents];
     for (int i = 0; i< numberEvents; i++)
     {
         BuildMessageEventArgs message = new BuildMessageEventArgs("aaaaaaaaaaaaaaa", "aaa", "a", MessageImportance.High);
         message.BuildEventContext = new BuildEventContext(1, 2, 3, 4);
         eventArray[i] = new NodeLoggingEvent(message);
     }
     LocalCallDescriptorForPostLoggingMessagesToHost LargeLogEvent = new LocalCallDescriptorForPostLoggingMessagesToHost(eventArray);
     return LargeLogEvent;
 }
Example #5
0
 private static void VerifyPostMessagesToHost(LocalCallDescriptorForPostLoggingMessagesToHost messageCallDescriptor, int count)
 {
     Assert.IsTrue(messageCallDescriptor.BuildEvents.Length == count);
     for (int i = 0; i < count; i++)
     {
         Assert.IsTrue(string.Compare("aaaaaaaaaaaaaaa", messageCallDescriptor.BuildEvents[i].BuildEvent.Message, StringComparison.OrdinalIgnoreCase) == 0);
     }
 }
Example #6
0
 /// <summary>
 /// Submit the logging message to the engine queue.
 /// </summary>
 public void PostLoggingMessagesToHost(int nodeProviderId, NodeLoggingEvent[] nodeLoggingEventArray)
 {
     LocalCallDescriptorForPostLoggingMessagesToHost callDescriptor =
         new LocalCallDescriptorForPostLoggingMessagesToHost(nodeLoggingEventArray);
     nodeCommandQueue.Enqueue(callDescriptor);
 }