Skip to content

Commit 99df4ba

Browse files
[dotnet] Improve format of generated CDP types (#15129)
* [dotnet] Improve format of generated cdp types * fix XML param in adapter template
1 parent bad5038 commit 99df4ba

File tree

5 files changed

+25
-44
lines changed

5 files changed

+25
-44
lines changed

third_party/dotnet/devtools/src/generator/Templates/command.hbs

+5-14
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ namespace {{rootNamespace}}.{{domain.Name}}
1414
/// Gets the name of the command.
1515
/// </summary>
1616
[JsonIgnore]
17-
public string CommandName
18-
{
19-
get { return DevToolsRemoteInterface_CommandName; }
20-
}
17+
public string CommandName => DevToolsRemoteInterface_CommandName;
2118

2219
{{#each command.Parameters}}
2320
{{#if Description}}
@@ -31,11 +28,8 @@ namespace {{rootNamespace}}.{{domain.Name}}
3128
{{/if}}
3229
[JsonPropertyName("{{Name}}")]
3330
{{#if Optional}}[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]{{/if}}
34-
public {{typemap ../context}} {{dehumanize Name}}
35-
{
36-
get;
37-
set;
38-
}
31+
public {{typemap ../context}} {{dehumanize Name}} { get; set; }
32+
3933
{{/each}}
4034
}
4135

@@ -56,11 +50,8 @@ namespace {{rootNamespace}}.{{domain.Name}}
5650
{{/if}}
5751
[JsonPropertyName("{{Name}}")]
5852
{{#if Optional}}[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]{{/if}}
59-
public {{typemap ../context}} {{dehumanize Name}}
60-
{
61-
get;
62-
set;
63-
}
53+
public {{typemap ../context}} {{dehumanize Name}} { get; set; }
54+
6455
{{/each}}
6556
}
6657
}

third_party/dotnet/devtools/src/generator/Templates/domain.hbs

+10-11
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ namespace {{rootNamespace}}.{{domain.Name}}
1212
/// </summary>
1313
public class {{dehumanize domain.Name}}Adapter
1414
{
15-
private readonly IDevToolsSession m_session;
1615
private readonly string m_domainName = "{{dehumanize domain.Name}}";
1716
private Dictionary<string, DevToolsEventData> m_eventMap = new Dictionary<string, DevToolsEventData>();
1817

1918
/// <summary>
2019
/// Initializes a new instance of the {{dehumanize domain.Name}}Adapter class.
2120
/// </summary>
2221
/// <param name="session">The IDevToolsSession to be used with this adapter.</param>
22+
/// <exception cref="ArgumentNullException">If <paramref name="session"/> is <see langword="null"/>.</exception>
2323
public {{dehumanize domain.Name}}Adapter(IDevToolsSession session)
2424
{
25-
m_session = session ?? throw new ArgumentNullException(nameof(session));
26-
m_session.DevToolsEventReceived += OnDevToolsEventReceived;
25+
Session = session ?? throw new ArgumentNullException(nameof(session));
26+
Session.DevToolsEventReceived += OnDevToolsEventReceived;
2727
{{#each domain.Events}}
2828
m_eventMap["{{Name}}"] = new DevToolsEventData(typeof({{dehumanize Name}}EventArgs), On{{dehumanize Name}});
2929
{{/each}}
@@ -32,16 +32,14 @@ namespace {{rootNamespace}}.{{domain.Name}}
3232
/// <summary>
3333
/// Gets the DevToolsSession associated with the adapter.
3434
/// </summary>
35-
public IDevToolsSession Session
36-
{
37-
get { return m_session; }
38-
}
35+
public IDevToolsSession Session { get; }
3936

4037
{{#each domain.Events}}
4138
/// <summary>
4239
/// {{xml-code-comment Description 2}}
4340
/// </summary>
4441
public event EventHandler<{{dehumanize Name}}EventArgs> {{dehumanize Name}};
42+
4543
{{/each}}
4644

4745
{{#each domain.Commands}}
@@ -50,8 +48,9 @@ namespace {{rootNamespace}}.{{domain.Name}}
5048
/// </summary>
5149
public Task<{{dehumanize Name}}CommandResponse> {{dehumanize Name}}({{dehumanize Name}}CommandSettings command{{#if NoParameters}} = null{{/if}}, CancellationToken cancellationToken = default(CancellationToken), int? millisecondsTimeout = null, bool throwExceptionIfResponseNotReceived = true)
5250
{
53-
return m_session.SendCommand<{{dehumanize Name}}CommandSettings, {{dehumanize Name}}CommandResponse>(command{{#if NoParameters}} ?? new {{dehumanize Name}}CommandSettings(){{/if}}, cancellationToken, millisecondsTimeout, throwExceptionIfResponseNotReceived);
51+
return Session.SendCommand<{{dehumanize Name}}CommandSettings, {{dehumanize Name}}CommandResponse>(command{{#if NoParameters}} ?? new {{dehumanize Name}}CommandSettings(){{/if}}, cancellationToken, millisecondsTimeout, throwExceptionIfResponseNotReceived);
5452
}
53+
5554
{{/each}}
5655

5756
private void OnDevToolsEventReceived(object sender, DevToolsEventReceivedEventArgs e)
@@ -70,12 +69,12 @@ namespace {{rootNamespace}}.{{domain.Name}}
7069
{{#each domain.Events}}
7170
private void On{{dehumanize Name}}(object rawEventArgs)
7271
{
73-
{{dehumanize Name}}EventArgs e = rawEventArgs as {{dehumanize Name}}EventArgs;
74-
if (e != null && {{dehumanize Name}} != null)
72+
if (rawEventArgs is {{dehumanize Name}}EventArgs e)
7573
{
76-
{{dehumanize Name}}(this, e);
74+
{{dehumanize Name}}?.Invoke(this, e);
7775
}
7876
}
77+
7978
{{/each}}
8079
}
8180
}

third_party/dotnet/devtools/src/generator/Templates/event.hbs

+2-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ namespace {{rootNamespace}}.{{domain.Name}}
2121
{{/if}}
2222
[JsonPropertyName("{{Name}}")]
2323
{{#if Optional}}[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]{{/if}}
24-
public {{typemap ../context}} {{dehumanize Name}}
25-
{
26-
get;
27-
set;
28-
}
24+
public {{typemap ../context}} {{dehumanize Name}} { get; set; }
25+
2926
{{/each}}
3027
}
3128
}

third_party/dotnet/devtools/src/generator/Templates/type-hash.hbs

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <auto-generated />
1+
// <auto-generated />
22
namespace {{rootNamespace}}.{{domain.Name}}
33
{
44
using System.Collections.Generic;
@@ -14,11 +14,8 @@ namespace {{rootNamespace}}.{{domain.Name}}
1414
///</summary>
1515
[JsonPropertyName("{{Name}}")]
1616
{{#if Optional}}[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]{{/if}}
17-
public {{typemap ../context}} {{dehumanize Name}}
18-
{
19-
get;
20-
set;
21-
}
17+
public {{typemap ../context}} {{dehumanize Name}} { get; set; }
18+
2219
{{/each}}
2320
}
24-
}
21+
}

third_party/dotnet/devtools/src/generator/Templates/type-object.hbs

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <auto-generated />
1+
// <auto-generated />
22
namespace {{rootNamespace}}.{{domain.Name}}
33
{
44
using System.Text.Json.Serialization;
@@ -14,11 +14,8 @@ namespace {{rootNamespace}}.{{domain.Name}}
1414
///</summary>
1515
[JsonPropertyName("{{Name}}")]
1616
{{#if Optional}}[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]{{/if}}
17-
public {{typemap ../context}} {{dehumanize Name}}
18-
{
19-
get;
20-
set;
21-
}
17+
public {{typemap ../context}} {{dehumanize Name}} { get; set; }
18+
2219
{{/each}}
2320
}
24-
}
21+
}

0 commit comments

Comments
 (0)