Consider the following class in a file "MyClass.cs"

using System;

public class MyClass : Entity<long>
{
    public long Id
    {
        get;
        set;
    }

    [Required]
    public string Name
    {
        get;
        set;
    }

    public string Slug
    {
        get;
        set;
    }

    public DateTime CreatedOn
    {
        get;
        private set;
    }

    public DateTime UpdatedOn
    {
        get;
        private set;
    }

    /* ... */
}

Currently I manually create data contract classes looking as follows:

[DataContract(Namespace = "http://example.com/", Name = "MyClass")]
public sealed class MyClass
{
    [DataMember(EmitDefaultValue = false, Name = "Id")]
    public long Id
    {
        get;
        set;
    }

    [DataMember(EmitDefaultValue = false, Name = "Name", IsRequired = true)]
    public string Name
    {
        get;
        set;
    }

    [DataMember(EmitDefaultValue = false, Name = "Slug")]
    public string Slug
    {
        get;
        set;
    }

    [DataMember(EmitDefaultValue = false, Name = "CreatedOn")]
    public DateTime CreatedOn
    {
        get;
        set;
    }

    [DataMember(EmitDefaultValue = false, Name = "UpdatedOn")]
    public DateTime UpdatedOn
    {
        get;
        set;
    }
}

I'd like to use Roslyn to rewrite "MyClass.cs" so its looks like the class I create by hand. Currently I have the following:

using System;
using System.IO;
using Roslyn.Compilers.CSharp;

internal class Program
{
    private static void Main()
    {
        var reader = new StreamReader(@"..\..\MyClass.cs");
        var source = reader.ReadToEnd();
        var tree = SyntaxTree.ParseCompilationUnit(source);
        var rewriter = new MyRewriter();
        var newRoot = rewriter.Visit(tree.Root);
        Console.WriteLine(newRoot.Format());
    }
}

public class MyRewriter : SyntaxRewriter
{
    protected override SyntaxNode VisitClassDeclaration(ClassDeclarationSyntax node)
    {
        var declaration = (TypeDeclarationSyntax) base.VisitClassDeclaration(node);

        return ((ClassDeclarationSyntax) declaration).Update(
            declaration.Attributes,
            Syntax.TokenList(Syntax.Token(SyntaxKind.PublicKeyword), Syntax.Token(SyntaxKind.SealedKeyword)),
            declaration.Keyword,
            declaration.Identifier,
            declaration.TypeParameterListOpt,
            null,
            declaration.ConstraintClauses,
            declaration.OpenBraceToken,
            declaration.Members,
            declaration.CloseBraceToken,
            declaration.SemicolonTokenOpt);
    }

    protected override SyntaxNode VisitPropertyDeclaration(PropertyDeclarationSyntax node)
    {
        var typeSyntax = node.Type;

        if (node.Identifier.ValueText == "Id")
        {
            typeSyntax = Syntax.IdentifierName("string");
        }

        var newProperty = Syntax.PropertyDeclaration(
            modifiers: Syntax.TokenList(Syntax.Token(SyntaxKind.PublicKeyword)),
            type: typeSyntax,
            identifier: node.Identifier,
            accessorList: Syntax.AccessorList(
                accessors: Syntax.List(
                    Syntax.AccessorDeclaration(SyntaxKind.GetAccessorDeclaration, 
                    semicolonTokenOpt: Syntax.Token(SyntaxKind.SemicolonToken)),
                    Syntax.AccessorDeclaration(SyntaxKind.SetAccessorDeclaration,
                    semicolonTokenOpt: Syntax.Token(SyntaxKind.SemicolonToken))
                    )
                )
            );

        return newProperty;
    }
}

I have been trying to find a way to add the DataMember and DataContract custom attributes to MyClass but have been unsuccessful. How does one add the custom attributes?

link|improve this question

The way I read this MSDN thread, I'd say that Roslyn doesn't support custom attributes. Have you seen something that indicates otherwise? – M.Babcock Feb 9 at 3:24
Roslyn does support attributes at the syntax level, just not the semantics – Kevin Pilch-Bisson Feb 9 at 3:47
There is a AttributeDeclarationSyntax class and both the class and properties have an attributes member, but I cannot find an example how to construct it. You can also rewrite attributes with a SyntaxRewiter. Here is an example how to use it. So I would think its supported, but I may be wrong. – Werner Strydom Feb 9 at 4:34
feedback

1 Answer

up vote 4 down vote accepted

One of the parameters of the Syntax.PropertyDeclaration method is a list of attributes that apply to the attribute. Like all Syntax elements, it is constructed using a factory method on the static Syntax class. In your particular example, the VisitPropertyDeclaration method of your rewriter should look something like:

    protected override SyntaxNode VisitPropertyDeclaration(PropertyDeclarationSyntax node)
{
    var typeSyntax = node.Type;

    if (node.Identifier.ValueText == "Id")
    {
        typeSyntax = Syntax.IdentifierName("string");
    }

    var newProperty = Syntax.PropertyDeclaration(
        attributes: Syntax.List(
            Syntax.AttributeDeclaration(
                attributes: Syntax.SeparatedList(
                    Syntax.Attribute(
                        name: Syntax.ParseName("DataMember"),
                        argumentListOpt: Syntax.AttributeArgumentList(
                            arguments:Syntax.SeparatedList(new[]
                                {
                                    Syntax.AttributeArgument(
                                        nameEqualsOpt: Syntax.NameEquals(
                                            Syntax.Identifier("EmitDefaultValue")),
                                        expression: Syntax.LiteralExpression(SyntaxKind.FalseLiteralExpression)),
                                    Syntax.AttributeArgument(
                                        nameEqualsOpt: Syntax.NameEquals(
                                            Syntax.Identifier("Name")),
                                        expression: Syntax.LiteralExpression(
                                            SyntaxKind.StringLiteralExpression,
                                            Syntax.ParseToken("\"" + node.Identifier + "\""))),
                                }, Enumerable.Repeat(Syntax.Token(SyntaxKind.CommaToken), 1))))))),
        modifiers: Syntax.TokenList(Syntax.Token(SyntaxKind.PublicKeyword)),
        type: typeSyntax,
        identifier: node.Identifier,
        accessorList: Syntax.AccessorList(
            accessors: Syntax.List(
                Syntax.AccessorDeclaration(SyntaxKind.GetAccessorDeclaration, 
                semicolonTokenOpt: Syntax.Token(SyntaxKind.SemicolonToken)),
                Syntax.AccessorDeclaration(SyntaxKind.SetAccessorDeclaration,
                semicolonTokenOpt: Syntax.Token(SyntaxKind.SemicolonToken))
                )
            )
        );

    return newProperty;
}       
link|improve this answer
That I noticed, but I couldn't figure out how to initialize it, hence the question. – Werner Strydom Feb 9 at 4:37
See updated answer. – Kevin Pilch-Bisson Feb 9 at 7:05
Just what I was looking for. Thank you. – Werner Strydom Feb 10 at 3:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.