Ejemplo n.º 1
0
        private void OnAnimationRequestReceived(byte[] message)
        {
            // The frame might be split up into multiple packages.
            // We keep a buffer (FrameProtocol for each frame) to wait for all packages.
            // When the frame is complete, we call FrameReceived.
            int frameIndex          = FrameProtocol.GetFrameIndex(message);
            FrameWithoutDelta frame = null;

            lock (_resourceLock)
            {
                if (_frameSectionBuffer == null)
                {
                    _frameSectionBuffer = new Dictionary <int, FrameProtocol>();
                }

                if (!_frameSectionBuffer.ContainsKey(frameIndex))
                {
                    _frameSectionBuffer.Add(frameIndex, new FrameProtocol());
                }

                if (_frameSectionBuffer[frameIndex].TryDeserialize(message, out frame))
                {
                    _frameSectionBuffer.Remove(frameIndex);
                }
            }

            if (frame != null)
            {
                OnFrameReceived(frame);
            }
        }
Ejemplo n.º 2
0
        public void SerializeFrame_FrameTooBigForASinglePackage_CreatesCorrectByteArray()
        {
            int maxPackageSize      = 1016;
            int timeUnitsPerFrame   = 100;
            int frameIndex          = 9;
            FrameWithoutDelta frame = new FrameWithoutDelta(frameIndex, timeUnitsPerFrame, 900);

            for (int i = 0; i < 900; i++)
            {
                frame[i] = new PixelInstruction(1, 2, 3);
            }

            // RUN
            byte[][] packages = FrameProtocol.SerializeFrame(frame, maxPackageSize);

            // Deserialize
            FrameProtocol     frameProtocol     = new FrameProtocol();
            FrameWithoutDelta deserializedFrame = null;

            foreach (byte[] package in packages)
            {
                if (frameProtocol.TryDeserialize(package, out FrameWithoutDelta returnFrame))
                {
                    deserializedFrame = returnFrame;
                }
            }

            // Assert
            Assert.AreEqual(3, packages.Length);
            Assert.IsNotNull(deserializedFrame);
            CollectionAssert.AreEqual(frame.Items, deserializedFrame.Items);
        }
Ejemplo n.º 3
0
        public void TryDeserialize_frameWithThreeFrameSetsOutOfOrder_DeserializesCorrectly()
        {
            int maxPackageSize              = 1016;
            int timeUnitsPerFrame           = 100;
            int frameIndex                  = 9;
            FrameWithoutDelta expectedFrame = new FrameWithoutDelta(frameIndex, timeUnitsPerFrame, 900);

            for (int i = 0; i < 900; i++)
            {
                expectedFrame[i] = new PixelInstruction(1, 2, 3);
            }

            // RUN
            byte[][] packages = FrameProtocol.SerializeFrame(expectedFrame, maxPackageSize);

            Assert.AreEqual(3, packages.Length);

            FrameProtocol     protocol = new FrameProtocol();
            FrameWithoutDelta frame;

            Assert.AreEqual(false, protocol.TryDeserialize(packages[0], out frame));
            Assert.AreEqual(false, protocol.TryDeserialize(packages[2], out frame));
            Assert.AreEqual(true, protocol.TryDeserialize(packages[1], out frame));
            Assert.IsNotNull(frame);
            Assert.AreEqual(expectedFrame.Index, frame.Index);
            Assert.AreEqual(expectedFrame.TimeStampRelative, frame.TimeStampRelative);
            Assert.AreEqual(expectedFrame.Count, frame.Count);
            CollectionAssert.AreEquivalent(expectedFrame.Items, frame.Items);
        }
Ejemplo n.º 4
0
        public void GetFrameIndex_FrameAndFrameSection_GetsCorrectIndex()
        {
            int maxPackageSize              = 1016;
            int timeUnitsPerFrame           = 100;
            int frameIndex                  = 9;
            FrameWithoutDelta expectedFrame = new FrameWithoutDelta(frameIndex, timeUnitsPerFrame, 900);

            for (int i = 0; i < 900; i++)
            {
                expectedFrame[i] = new PixelInstruction(1, 2, 3);
            }

            // RUN
            byte[][] packages = FrameProtocol.SerializeFrame(expectedFrame, maxPackageSize);

            Assert.AreEqual(3, packages.Length);
            Assert.AreEqual(frameIndex, FrameProtocol.GetFrameIndex(packages[0]));
            Assert.AreEqual(frameIndex, FrameProtocol.GetFrameIndex(packages[1]));
            Assert.AreEqual(frameIndex, FrameProtocol.GetFrameIndex(packages[2]));
        }
Ejemplo n.º 5
0
        public void TryDeserialize_frameWithNoFrameSets_DeserializesCorrectly()
        {
            int timeUnitsPerFrame           = 100;
            FrameWithoutDelta expectedFrame = new FrameWithoutDelta(1, timeUnitsPerFrame, 3);

            expectedFrame[0] = new PixelInstruction(1, 2, 3);
            expectedFrame[1] = new PixelInstruction(4, 5, 6);
            expectedFrame[2] = new PixelInstruction(7, 8, 9);

            byte[] bytes      = new byte[sizeof(int) + sizeof(int) + sizeof(int) + sizeof(bool) + PixelInstructionProtocol.BYTES_NEEDED * 3];
            int    startIndex = 0;

            BitConverter.GetBytes(1).CopyTo(bytes, startIndex);                        // Frame index
            BitConverter.GetBytes(timeUnitsPerFrame).CopyTo(bytes, startIndex   += 4); // Timestamp (relative)
            BitConverter.GetBytes(expectedFrame.Count).CopyTo(bytes, startIndex += 4); // Number of PixelInstructions
            BitConverter.GetBytes(false).CopyTo(bytes, startIndex += 4);               // Has FrameSections
            // instruction 1
            bytes[startIndex += 1] = 1;
            bytes[startIndex += 1] = 2;
            bytes[startIndex += 1] = 3;
            // instruction 2
            bytes[startIndex += 1] = 4;
            bytes[startIndex += 1] = 5;
            bytes[startIndex += 1] = 6;
            // instruction 3
            bytes[startIndex += 1] = 7;
            bytes[startIndex += 1] = 8;
            bytes[startIndex += 1] = 9;

            FrameProtocol     protocol = new FrameProtocol();
            FrameWithoutDelta frame;

            Assert.AreEqual(true, protocol.TryDeserialize(bytes, out frame));
            Assert.IsNotNull(frame);
            Assert.AreEqual(expectedFrame.Index, frame.Index);
            Assert.AreEqual(expectedFrame.TimeStampRelative, frame.TimeStampRelative);
            Assert.AreEqual(expectedFrame.Count, frame.Count);
            CollectionAssert.AreEqual(expectedFrame.Items, frame.Items);
        }
Ejemplo n.º 6
0
        public void SerializeFrame_Frame_CreatesCorrectByteArray()
        {
            int maxPackageSize      = 1016;
            int timeUnitsPerFrame   = 100;
            int frameIndex          = 9;
            FrameWithoutDelta frame = new FrameWithoutDelta(frameIndex, timeUnitsPerFrame, 3);

            frame[0] = new PixelInstruction(1, 2, 3);
            frame[1] = new PixelInstruction(4, 5, 6);
            frame[2] = new PixelInstruction(7, 8, 9);

            byte[] expectedBytes = new byte[sizeof(int) + sizeof(int) + sizeof(int) + sizeof(bool) + 3 + 3 + 3];
            int    startIndex    = 0;

            BitConverter.GetBytes(frameIndex).CopyTo(expectedBytes, startIndex);             // Frame index
            BitConverter.GetBytes(timeUnitsPerFrame).CopyTo(expectedBytes, startIndex += 4);
            BitConverter.GetBytes(frame.Count).CopyTo(expectedBytes, startIndex       += 4); // Number of PixelInstructions
            BitConverter.GetBytes(false).CopyTo(expectedBytes, startIndex             += 4); // Has FrameSections
            // instruction 1
            expectedBytes[startIndex += 1] = 1;
            expectedBytes[startIndex += 1] = 2;
            expectedBytes[startIndex += 1] = 3;
            // instruction 2
            expectedBytes[startIndex += 1] = 4;
            expectedBytes[startIndex += 1] = 5;
            expectedBytes[startIndex += 1] = 6;
            // instruction 3
            expectedBytes[startIndex += 1] = 7;
            expectedBytes[startIndex += 1] = 8;
            expectedBytes[startIndex += 1] = 9;

            byte[][] packages = FrameProtocol.SerializeFrame(frame, maxPackageSize);

            Assert.AreEqual(1, packages.Length);
            Assert.AreEqual(expectedBytes, packages[0]);
        }