Esempio n. 1
0
    /// <summary>
    /// Yields all of the nodes in the tree represented by <paramref name="value"/>, starting at the top.
    ///
    /// <para>
    /// This is a depth-first pre-order traversal.
    /// </para>
    ///
    /// <seealso cref="DescendantsAndSelf"/>
    /// </summary>
    /// <example>
    /// <code>
    /// Expr expr = new Add(
    ///     new Add(
    ///         new Lit(1),
    ///         new Lit(2)
    ///     ),
    ///     new Lit(3)
    /// );
    /// Expr[] expected = new[]
    ///     {
    ///         expr,
    ///         new Add(new Lit(1), new Lit(2)),
    ///         new Lit(1),
    ///         new Lit(2),
    ///         new Lit(3),
    ///     };
    /// Assert.Equal(expected, rewriter.SelfAndDescendants(expr));
    /// </code>
    /// </example>
    /// <typeparam name="T">The rewritable tree type</typeparam>
    /// <param name="rewriter">The rewriter</param>
    /// <param name="value">The value to traverse</param>
    /// <returns>An enumerable containing all of the nodes in the tree represented by <paramref name="value"/>, starting at the top.</returns>
    public static IEnumerable <T> SelfAndDescendants <T>(this IRewriter <T> rewriter, T value)
    {
        if (rewriter == null)
        {
            throw new ArgumentNullException(nameof(rewriter));
        }

        IEnumerable <T> Iterator()
        {
            var stack = new ChunkStack <T>();

            stack.Allocate(1)[0] = value;

            try
            {
                while (!stack.IsEmpty)
                {
                    var x = stack.Pop();
                    yield return(x);

                    var count = rewriter.CountChildren(x);
                    var span  = stack.Allocate(count);
                    rewriter.GetChildren(span, x);
                    span.Reverse();  // pop them in left to right order
                }
            }
            finally
            {
                stack.Dispose();
            }
        }

        return(Iterator());
    }
Esempio n. 2
0
    public void TestEmptyChunk()
    {
        var stack = new ChunkStack <int>();
        var span  = stack.Allocate(0);

        Assert.Equal(0, span.Length);

        stack.Free(span);
        stack.Dispose();
    }
Esempio n. 3
0
    public void TestLargeChunk_Region1()
    {
        var stack = new ChunkStack <int>();

        var span = stack.Allocate(513);

        Assert.Equal(513, span.Length);

        stack.Free(span);
        stack.Dispose();
    }
Esempio n. 4
0
    public void TestManySmallChunks()
    {
        var stack = new ChunkStack <int>();

        for (var i = 0; i < 1025; i++)
        {
            var span = stack.Allocate(1);
            Assert.Equal(1, span.Length);
        }

        stack.Dispose();
    }
Esempio n. 5
0
    public void TestEdgeOfRegion1_DoesntFit()
    {
        var stack = new ChunkStack <int>();

        var span1 = stack.Allocate(510);

        Assert.Equal(510, span1.Length);

        var span2 = stack.Allocate(3);

        Assert.Equal(3, span2.Length);

        stack.Free(span2);
        stack.Free(span1);
        stack.Dispose();
    }
Esempio n. 6
0
    public void TestLargeChunk_Region2()
    {
        var stack = new ChunkStack <int>();

        var span1 = stack.Allocate(512);

        Assert.Equal(512, span1.Length);

        var span2 = stack.Allocate(513);

        Assert.Equal(513, span2.Length);

        stack.Free(span2);
        stack.Free(span1);
        stack.Dispose();
    }
    /// <summary>
    /// Update the immediate children of the value by applying a transformation function to each one.
    /// </summary>
    /// <typeparam name="T">The rewritable tree type</typeparam>
    /// <param name="rewriter">The rewriter</param>
    /// <param name="transformer">A transformation function to apply to each of <paramref name="value"/>'s immediate children.</param>
    /// <param name="value">The old value, whose immediate children should be transformed by <paramref name="transformer"/>.</param>
    /// <returns>A copy of <paramref name="value"/> with updated children.</returns>
    public static T RewriteChildren <T>(this IRewriter <T> rewriter, Func <T, T> transformer, T value)
    {
        if (rewriter == null)
        {
            throw new ArgumentNullException(nameof(rewriter));
        }
        if (transformer == null)
        {
            throw new ArgumentNullException(nameof(transformer));
        }

        var chunks = new ChunkStack <T>();

        var result = rewriter.RewriteChildrenInternal(transformer, value, ref chunks);

        chunks.Dispose();

        return(result);
    }
Esempio n. 8
0
    public void TestSomeSmallChunks()
    {
        var stack = new ChunkStack <int>();

        var span1 = stack.Allocate(1);

        Assert.Equal(1, span1.Length);

        var span2 = stack.Allocate(2);

        Assert.Equal(2, span2.Length);

        var previousValues = span2.ToArray();

        span1[0]++;
        Assert.Equal(previousValues, span2.ToArray());

        stack.Free(span2);
        stack.Free(span1);
        stack.Dispose();
    }
Esempio n. 9
0
    public void TestEdgeOfRegion2_Fits()
    {
        var stack = new ChunkStack <int>();

        var span1 = stack.Allocate(512);

        Assert.Equal(512, span1.Length);

        var span2 = stack.Allocate(510);

        Assert.Equal(510, span2.Length);

        var span3 = stack.Allocate(2);

        Assert.Equal(2, span3.Length);

        stack.Free(span3);
        stack.Free(span2);
        stack.Free(span1);
        stack.Dispose();
    }