コード例 #1
0
        public static AstIdlNode Parse(string source)
        {
            var parser = new TokenParser(source);
            var idl    = new AstIdlNode {
                Attributes = ParseGlobalAttributes(ref parser)
            };

            while (!parser.Eof)
            {
                var attrs = ParseLocalAttributes(ref parser);

                if (parser.TryParseKeyword("enum"))
                {
                    idl.Enums.Add(ParseEnum(attrs, ref parser));
                }
                else if (parser.TryParseKeyword("struct"))
                {
                    idl.Structs.Add(ParseStruct(attrs, ref parser));
                }
                else if (parser.TryParseKeyword("interface"))
                {
                    idl.Interfaces.Add(ParseInterface(attrs, ref parser));
                }
                else
                {
                    throw new ParseException("Unexpected character", ref parser);
                }
            }

            return(idl);
        }
コード例 #2
0
        public CSharpGen(AstIdlNode idl)
        {
            _idl = idl.Clone();
            new AstRewriter(_idl.Attributes.Where(a => a.Name == "clr-map")
                            .Select(x => x.Value.Trim().Split(' '))
                            .ToDictionary(x => x[0], x => x[1])
                            ).VisitAst(_idl);

            _extraUsings = _idl.Attributes.Where(u => u.Name == "clr-using").Select(u => u.Value).ToList();
            _namespace   = _idl.GetAttribute("clr-namespace");
            var visibilityString = _idl.GetAttribute("clr-access");

            if (visibilityString == "internal")
            {
                _visibility = SyntaxKind.InternalKeyword;
            }
            else if (visibilityString == "public")
            {
                _visibility = SyntaxKind.PublicKeyword;
            }
            else
            {
                throw new CodeGenException("Invalid clr-access attribute");
            }
        }
コード例 #3
0
ファイル: CppGen.cs プロジェクト: AparnaSGhenge/Hello_World
        public static string GenerateCpp(AstIdlNode idl)
        {
            var sb       = new StringBuilder();
            var preamble = idl.GetAttributeOrDefault("cpp-preamble");

            if (preamble != null)
            {
                sb.AppendLine(preamble);
            }

            foreach (var s in idl.Structs)
            {
                sb.AppendLine("struct " + s.Name + ";");
            }

            foreach (var s in idl.Interfaces)
            {
                sb.AppendLine("struct " + s.Name + ";");
            }

            foreach (var en in idl.Enums)
            {
                sb.Append("enum ");
                if (en.Attributes.Any(a => a.Name == "class-enum"))
                {
                    sb.Append("class ");
                }
                sb.AppendLine(en.Name).AppendLine("{");

                foreach (var m in en)
                {
                    sb.Append("    ").Append(m.Name);
                    if (m.Value != null)
                    {
                        sb.Append(" = ").Append(m.Value);
                    }
                    sb.AppendLine(",");
                }

                sb.AppendLine("};");
            }

            foreach (var s in idl.Structs)
            {
                sb.Append("struct ").AppendLine(s.Name).AppendLine("{");
                foreach (var m in s)
                {
                    sb.Append("    ").Append(ConvertType(m.Type)).Append(" ").Append(m.Name).AppendLine(";");
                }

                sb.AppendLine("};");
            }

            foreach (var i in idl.Interfaces)
            {
                var guidString = i.GetAttribute("uuid");
                var guid       = Guid.Parse(guidString).ToString().Replace("-", "");


                sb.Append("COMINTERFACE(").Append(i.Name).Append(", ")
                .Append(guid.Substring(0, 8)).Append(", ")
                .Append(guid.Substring(8, 4)).Append(", ")
                .Append(guid.Substring(12, 4));
                for (var c = 0; c < 8; c++)
                {
                    sb.Append(", ").Append(guid.Substring(16 + c * 2, 2));
                }

                sb.Append(") : ");
                if (i.HasAttribute("cpp-virtual-inherits"))
                {
                    sb.Append("virtual ");
                }
                sb.AppendLine(i.Inherits ?? "IUnknown")
                .AppendLine("{");

                foreach (var m in i)
                {
                    sb.Append("    ")
                    .Append("virtual ")
                    .Append(ConvertType(m.ReturnType))
                    .Append(" ").Append(m.Name).Append(" (");
                    if (m.Count == 0)
                    {
                        sb.AppendLine(") = 0;");
                    }
                    else
                    {
                        sb.AppendLine();
                        for (var c = 0; c < m.Count; c++)
                        {
                            var arg = m[c];
                            sb.Append("        ");
                            if (arg.Attributes.Any(a => a.Name == "const"))
                            {
                                sb.Append("const ");
                            }
                            sb.Append(ConvertType(arg.Type))
                            .Append(" ")
                            .Append(arg.Name);
                            if (c != m.Count - 1)
                            {
                                sb.Append(", ");
                            }
                            sb.AppendLine();
                        }

                        sb.AppendLine("    ) = 0;");
                    }
                }

                sb.AppendLine("};");
            }

            return(sb.ToString());
        }