mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
Updated package dependencies
Fixed Thread.Join race condition in Tcp server Removed unnecessary code Added some integration-level tests for capnpc-csharp
This commit is contained in:
parent
e805610427
commit
23944aef56
@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
|
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
|
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -161,6 +161,33 @@ namespace Capnp.Rpc
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SafeJoin(Thread thread)
|
||||||
|
{
|
||||||
|
for (int retry = 0; retry < 5; ++retry)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!thread.Join(500))
|
||||||
|
{
|
||||||
|
Logger.LogError($"Unable to join {thread.Name} within timeout");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
catch (ThreadStateException)
|
||||||
|
{
|
||||||
|
// In rare cases it happens that despite thread.Start() was called, the thread did not actually start yet.
|
||||||
|
Logger.LogDebug("Waiting for thread to start in order to join it");
|
||||||
|
Thread.Sleep(100);
|
||||||
|
}
|
||||||
|
catch (System.Exception exception)
|
||||||
|
{
|
||||||
|
Logger.LogError($"Unable to join {thread.Name}: {exception.Message}");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stops accepting incoming attempts and closes all existing connections.
|
/// Stops accepting incoming attempts and closes all existing connections.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -185,41 +212,10 @@ namespace Capnp.Rpc
|
|||||||
{
|
{
|
||||||
connection.Client.Dispose();
|
connection.Client.Dispose();
|
||||||
connection.Pump.Dispose();
|
connection.Pump.Dispose();
|
||||||
if (!connection.PumpRunner.Join(500))
|
SafeJoin(connection.PumpRunner);
|
||||||
{
|
|
||||||
Logger.LogError("Unable to join frame pumping thread within timeout");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
SafeJoin(_acceptorThread);
|
||||||
{
|
|
||||||
for (int retry = 0; retry < 5; ++retry)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if (!_acceptorThread.Join(500))
|
|
||||||
{
|
|
||||||
Logger.LogError("Unable to join TCP acceptor thread within timeout");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
catch (ThreadStateException)
|
|
||||||
{
|
|
||||||
// In rare cases it happens that despite _acceptorThread.Start() was called, the thread did not actually start yet.
|
|
||||||
Logger.LogDebug("Waiting for TCP acceptor thread to start in order to join it");
|
|
||||||
Thread.Sleep(100);
|
|
||||||
}
|
|
||||||
catch (System.Exception exception)
|
|
||||||
{
|
|
||||||
Logger.LogError($"Unable to join TCP acceptor thread: {exception.Message}");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (ThreadStateException)
|
|
||||||
{
|
|
||||||
// If acceptor thread was not yet started this is not a problem. Ignore.
|
|
||||||
}
|
|
||||||
|
|
||||||
GC.SuppressFinalize(this);
|
GC.SuppressFinalize(this);
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Capnp
|
namespace Capnp
|
||||||
|
20
capnpc-csharp.tests/CodeGenerator.feature
Normal file
20
capnpc-csharp.tests/CodeGenerator.feature
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
Feature: CodeGenerator
|
||||||
|
In order to ensure that the generator backend produces valid output
|
||||||
|
As a contributor
|
||||||
|
I want to get notified when there is any deviation from reference output
|
||||||
|
|
||||||
|
Scenario: Comparing backend output with reference
|
||||||
|
Given I have a binary code generator request "test.capnp.bin"
|
||||||
|
And my reference output is "test.cs"
|
||||||
|
When I invoke capnpc-csharp
|
||||||
|
Then the generated output must match the reference
|
||||||
|
|
||||||
|
Scenario Outline: Invalid binary code generator requests
|
||||||
|
Given I have a binary code generator request <bin>
|
||||||
|
When I invoke capnpc-csharp
|
||||||
|
Then the invocation must fail
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
| bin |
|
||||||
|
| null.bin |
|
||||||
|
| test.cs |
|
155
capnpc-csharp.tests/CodeGenerator.feature.cs
generated
Normal file
155
capnpc-csharp.tests/CodeGenerator.feature.cs
generated
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
// ------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by SpecFlow (http://www.specflow.org/).
|
||||||
|
// SpecFlow Version:3.0.0.0
|
||||||
|
// SpecFlow Generator Version:3.0.0.0
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
// ------------------------------------------------------------------------------
|
||||||
|
#region Designer generated code
|
||||||
|
#pragma warning disable
|
||||||
|
namespace capnpc_csharp.Tests
|
||||||
|
{
|
||||||
|
using TechTalk.SpecFlow;
|
||||||
|
|
||||||
|
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("TechTalk.SpecFlow", "3.0.0.0")]
|
||||||
|
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestClassAttribute()]
|
||||||
|
public partial class CodeGeneratorFeature
|
||||||
|
{
|
||||||
|
|
||||||
|
private static TechTalk.SpecFlow.ITestRunner testRunner;
|
||||||
|
|
||||||
|
private Microsoft.VisualStudio.TestTools.UnitTesting.TestContext _testContext;
|
||||||
|
|
||||||
|
#line 1 "CodeGenerator.feature"
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
public virtual Microsoft.VisualStudio.TestTools.UnitTesting.TestContext TestContext
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._testContext;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
this._testContext = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.ClassInitializeAttribute()]
|
||||||
|
public static void FeatureSetup(Microsoft.VisualStudio.TestTools.UnitTesting.TestContext testContext)
|
||||||
|
{
|
||||||
|
testRunner = TechTalk.SpecFlow.TestRunnerManager.GetTestRunner();
|
||||||
|
TechTalk.SpecFlow.FeatureInfo featureInfo = new TechTalk.SpecFlow.FeatureInfo(new System.Globalization.CultureInfo("en-US"), "CodeGenerator", "\tIn order to ensure that the generator backend produces valid output\r\n\tAs a contr" +
|
||||||
|
"ibutor\r\n\tI want to get notified when there is any deviation from reference outpu" +
|
||||||
|
"t", ProgrammingLanguage.CSharp, ((string[])(null)));
|
||||||
|
testRunner.OnFeatureStart(featureInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.ClassCleanupAttribute()]
|
||||||
|
public static void FeatureTearDown()
|
||||||
|
{
|
||||||
|
testRunner.OnFeatureEnd();
|
||||||
|
testRunner = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestInitializeAttribute()]
|
||||||
|
public virtual void TestInitialize()
|
||||||
|
{
|
||||||
|
if (((testRunner.FeatureContext != null)
|
||||||
|
&& (testRunner.FeatureContext.FeatureInfo.Title != "CodeGenerator")))
|
||||||
|
{
|
||||||
|
global::capnpc_csharp.Tests.CodeGeneratorFeature.FeatureSetup(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestCleanupAttribute()]
|
||||||
|
public virtual void ScenarioTearDown()
|
||||||
|
{
|
||||||
|
testRunner.OnScenarioEnd();
|
||||||
|
}
|
||||||
|
|
||||||
|
public virtual void ScenarioInitialize(TechTalk.SpecFlow.ScenarioInfo scenarioInfo)
|
||||||
|
{
|
||||||
|
testRunner.OnScenarioInitialize(scenarioInfo);
|
||||||
|
testRunner.ScenarioContext.ScenarioContainer.RegisterInstanceAs<Microsoft.VisualStudio.TestTools.UnitTesting.TestContext>(_testContext);
|
||||||
|
}
|
||||||
|
|
||||||
|
public virtual void ScenarioStart()
|
||||||
|
{
|
||||||
|
testRunner.OnScenarioStart();
|
||||||
|
}
|
||||||
|
|
||||||
|
public virtual void ScenarioCleanup()
|
||||||
|
{
|
||||||
|
testRunner.CollectScenarioErrors();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestMethodAttribute()]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.DescriptionAttribute("Comparing backend output with reference")]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestPropertyAttribute("FeatureTitle", "CodeGenerator")]
|
||||||
|
public virtual void ComparingBackendOutputWithReference()
|
||||||
|
{
|
||||||
|
TechTalk.SpecFlow.ScenarioInfo scenarioInfo = new TechTalk.SpecFlow.ScenarioInfo("Comparing backend output with reference", null, ((string[])(null)));
|
||||||
|
#line 6
|
||||||
|
this.ScenarioInitialize(scenarioInfo);
|
||||||
|
this.ScenarioStart();
|
||||||
|
#line 7
|
||||||
|
testRunner.Given("I have a binary code generator request \"test.capnp.bin\"", ((string)(null)), ((TechTalk.SpecFlow.Table)(null)), "Given ");
|
||||||
|
#line 8
|
||||||
|
testRunner.And("my reference output is \"test.cs\"", ((string)(null)), ((TechTalk.SpecFlow.Table)(null)), "And ");
|
||||||
|
#line 9
|
||||||
|
testRunner.When("I invoke capnpc-csharp", ((string)(null)), ((TechTalk.SpecFlow.Table)(null)), "When ");
|
||||||
|
#line 10
|
||||||
|
testRunner.Then("the generated output must match the reference", ((string)(null)), ((TechTalk.SpecFlow.Table)(null)), "Then ");
|
||||||
|
#line hidden
|
||||||
|
this.ScenarioCleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
public virtual void InvalidBinaryCodeGeneratorRequests(string bin, string[] exampleTags)
|
||||||
|
{
|
||||||
|
TechTalk.SpecFlow.ScenarioInfo scenarioInfo = new TechTalk.SpecFlow.ScenarioInfo("Invalid binary code generator requests", null, exampleTags);
|
||||||
|
#line 12
|
||||||
|
this.ScenarioInitialize(scenarioInfo);
|
||||||
|
this.ScenarioStart();
|
||||||
|
#line 13
|
||||||
|
testRunner.Given(string.Format("I have a binary code generator request {0}", bin), ((string)(null)), ((TechTalk.SpecFlow.Table)(null)), "Given ");
|
||||||
|
#line 14
|
||||||
|
testRunner.When("I invoke capnpc-csharp", ((string)(null)), ((TechTalk.SpecFlow.Table)(null)), "When ");
|
||||||
|
#line 15
|
||||||
|
testRunner.Then("the invocation must fail", ((string)(null)), ((TechTalk.SpecFlow.Table)(null)), "Then ");
|
||||||
|
#line hidden
|
||||||
|
this.ScenarioCleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestMethodAttribute()]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.DescriptionAttribute("Invalid binary code generator requests: null.bin")]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestPropertyAttribute("FeatureTitle", "CodeGenerator")]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestPropertyAttribute("VariantName", "null.bin")]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestPropertyAttribute("Parameter:bin", "null.bin")]
|
||||||
|
public virtual void InvalidBinaryCodeGeneratorRequests_Null_Bin()
|
||||||
|
{
|
||||||
|
#line 12
|
||||||
|
this.InvalidBinaryCodeGeneratorRequests("null.bin", ((string[])(null)));
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestMethodAttribute()]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.DescriptionAttribute("Invalid binary code generator requests: test.cs")]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestPropertyAttribute("FeatureTitle", "CodeGenerator")]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestPropertyAttribute("VariantName", "test.cs")]
|
||||||
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestPropertyAttribute("Parameter:bin", "test.cs")]
|
||||||
|
public virtual void InvalidBinaryCodeGeneratorRequests_Test_Cs()
|
||||||
|
{
|
||||||
|
#line 12
|
||||||
|
this.InvalidBinaryCodeGeneratorRequests("test.cs", ((string[])(null)));
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore
|
||||||
|
#endregion
|
0
capnpc-csharp.tests/Embedded Resources/null.bin
Normal file
0
capnpc-csharp.tests/Embedded Resources/null.bin
Normal file
BIN
capnpc-csharp.tests/Embedded Resources/test.capnp.bin
Normal file
BIN
capnpc-csharp.tests/Embedded Resources/test.capnp.bin
Normal file
Binary file not shown.
16200
capnpc-csharp.tests/Embedded Resources/test.cs
Normal file
16200
capnpc-csharp.tests/Embedded Resources/test.cs
Normal file
File diff suppressed because it is too large
Load Diff
84
capnpc-csharp.tests/FeatureSteps/CodeGeneratorSteps.cs
Normal file
84
capnpc-csharp.tests/FeatureSteps/CodeGeneratorSteps.cs
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
using capnpc_csharp.Tests.Properties;
|
||||||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Reflection;
|
||||||
|
using TechTalk.SpecFlow;
|
||||||
|
|
||||||
|
namespace capnpc_csharp.Tests
|
||||||
|
{
|
||||||
|
[Binding]
|
||||||
|
public class CodeGeneratorSteps
|
||||||
|
{
|
||||||
|
Stream _inputStream;
|
||||||
|
string _referenceOutputContent;
|
||||||
|
string _exceptedOutputFileName;
|
||||||
|
string _actualGeneratedContent;
|
||||||
|
bool _success;
|
||||||
|
Exception _generateException;
|
||||||
|
|
||||||
|
Stream LoadResource(string name)
|
||||||
|
{
|
||||||
|
var assembly = Assembly.GetExecutingAssembly();
|
||||||
|
string[] names = assembly.GetManifestResourceNames();
|
||||||
|
string urn = Array.Find(names, n => n.EndsWith(name, StringComparison.OrdinalIgnoreCase));
|
||||||
|
Assert.IsNotNull(urn, $"Test specification error: {name} does not exist");
|
||||||
|
return assembly.GetManifestResourceStream(urn);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Given(@"I have a binary code generator request ""(.*)""")]
|
||||||
|
[Given(@"I have a binary code generator request (.*)")]
|
||||||
|
public void GivenIHaveABinaryCodeGeneratorRequest(string binaryRequestFileName)
|
||||||
|
{
|
||||||
|
_inputStream = LoadResource(binaryRequestFileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Given(@"my reference output is ""(.*)""")]
|
||||||
|
public void GivenMyReferenceOutputIs(string expectedOutputFileName)
|
||||||
|
{
|
||||||
|
_exceptedOutputFileName = expectedOutputFileName;
|
||||||
|
using (var stream = LoadResource(expectedOutputFileName))
|
||||||
|
using (var reader = new StreamReader(stream))
|
||||||
|
{
|
||||||
|
_referenceOutputContent = reader.ReadToEnd();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[When(@"I invoke capnpc-csharp")]
|
||||||
|
public void WhenIInvokeCapnpc_Csharp()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (_inputStream)
|
||||||
|
{
|
||||||
|
string tempDir = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName());
|
||||||
|
Directory.CreateDirectory(tempDir);
|
||||||
|
Environment.CurrentDirectory = tempDir;
|
||||||
|
|
||||||
|
CapnpC.Program.GenerateFromStream(_inputStream);
|
||||||
|
|
||||||
|
string outPath = Path.Combine(tempDir, _exceptedOutputFileName);
|
||||||
|
_actualGeneratedContent = File.ReadAllText(outPath);
|
||||||
|
_success = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception exception)
|
||||||
|
{
|
||||||
|
_generateException = exception;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Then(@"the generated output must match the reference")]
|
||||||
|
public void ThenTheGeneratedOutputMustMatchTheReference()
|
||||||
|
{
|
||||||
|
Assert.IsTrue(_success, $"Code generation failed: {_generateException?.Message}");
|
||||||
|
Assert.AreEqual(_referenceOutputContent, _actualGeneratedContent);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Then(@"the invocation must fail")]
|
||||||
|
public void ThenTheInvocationMustFail()
|
||||||
|
{
|
||||||
|
Assert.IsFalse(_success, "Code generation was supposed to fail, but it didn't");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
969
capnpc-csharp.tests/No Resources/test.capnp
Normal file
969
capnpc-csharp.tests/No Resources/test.capnp
Normal file
@ -0,0 +1,969 @@
|
|||||||
|
# Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
|
||||||
|
# Licensed under the MIT License:
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
# THE SOFTWARE.
|
||||||
|
|
||||||
|
@0xd508eebdc2dc42b8;
|
||||||
|
|
||||||
|
using Cxx = import "c++.capnp";
|
||||||
|
|
||||||
|
# Use a namespace likely to cause trouble if the generated code doesn't use fully-qualified
|
||||||
|
# names for stuff in the capnproto namespace.
|
||||||
|
$Cxx.namespace("capnproto_test::capnp::test");
|
||||||
|
|
||||||
|
enum TestEnum {
|
||||||
|
foo @0;
|
||||||
|
bar @1;
|
||||||
|
baz @2;
|
||||||
|
qux @3;
|
||||||
|
quux @4;
|
||||||
|
corge @5;
|
||||||
|
grault @6;
|
||||||
|
garply @7;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestAllTypes {
|
||||||
|
voidField @0 : Void;
|
||||||
|
boolField @1 : Bool;
|
||||||
|
int8Field @2 : Int8;
|
||||||
|
int16Field @3 : Int16;
|
||||||
|
int32Field @4 : Int32;
|
||||||
|
int64Field @5 : Int64;
|
||||||
|
uInt8Field @6 : UInt8;
|
||||||
|
uInt16Field @7 : UInt16;
|
||||||
|
uInt32Field @8 : UInt32;
|
||||||
|
uInt64Field @9 : UInt64;
|
||||||
|
float32Field @10 : Float32;
|
||||||
|
float64Field @11 : Float64;
|
||||||
|
textField @12 : Text;
|
||||||
|
dataField @13 : Data;
|
||||||
|
structField @14 : TestAllTypes;
|
||||||
|
enumField @15 : TestEnum;
|
||||||
|
interfaceField @16 : Void; # TODO
|
||||||
|
|
||||||
|
voidList @17 : List(Void);
|
||||||
|
boolList @18 : List(Bool);
|
||||||
|
int8List @19 : List(Int8);
|
||||||
|
int16List @20 : List(Int16);
|
||||||
|
int32List @21 : List(Int32);
|
||||||
|
int64List @22 : List(Int64);
|
||||||
|
uInt8List @23 : List(UInt8);
|
||||||
|
uInt16List @24 : List(UInt16);
|
||||||
|
uInt32List @25 : List(UInt32);
|
||||||
|
uInt64List @26 : List(UInt64);
|
||||||
|
float32List @27 : List(Float32);
|
||||||
|
float64List @28 : List(Float64);
|
||||||
|
textList @29 : List(Text);
|
||||||
|
dataList @30 : List(Data);
|
||||||
|
structList @31 : List(TestAllTypes);
|
||||||
|
enumList @32 : List(TestEnum);
|
||||||
|
interfaceList @33 : List(Void); # TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestDefaults {
|
||||||
|
voidField @0 : Void = void;
|
||||||
|
boolField @1 : Bool = true;
|
||||||
|
int8Field @2 : Int8 = -123;
|
||||||
|
int16Field @3 : Int16 = -12345;
|
||||||
|
int32Field @4 : Int32 = -12345678;
|
||||||
|
int64Field @5 : Int64 = -123456789012345;
|
||||||
|
uInt8Field @6 : UInt8 = 234;
|
||||||
|
uInt16Field @7 : UInt16 = 45678;
|
||||||
|
uInt32Field @8 : UInt32 = 3456789012;
|
||||||
|
uInt64Field @9 : UInt64 = 12345678901234567890;
|
||||||
|
float32Field @10 : Float32 = 1234.5;
|
||||||
|
float64Field @11 : Float64 = -123e45;
|
||||||
|
textField @12 : Text = "foo";
|
||||||
|
dataField @13 : Data = 0x"62 61 72"; # "bar"
|
||||||
|
structField @14 : TestAllTypes = (
|
||||||
|
voidField = void,
|
||||||
|
boolField = true,
|
||||||
|
int8Field = -12,
|
||||||
|
int16Field = 3456,
|
||||||
|
int32Field = -78901234,
|
||||||
|
int64Field = 56789012345678,
|
||||||
|
uInt8Field = 90,
|
||||||
|
uInt16Field = 1234,
|
||||||
|
uInt32Field = 56789012,
|
||||||
|
uInt64Field = 345678901234567890,
|
||||||
|
float32Field = -1.25e-10,
|
||||||
|
float64Field = 345,
|
||||||
|
textField = "baz",
|
||||||
|
dataField = "qux",
|
||||||
|
structField = (
|
||||||
|
textField = "nested",
|
||||||
|
structField = (textField = "really nested")),
|
||||||
|
enumField = baz,
|
||||||
|
# interfaceField can't have a default
|
||||||
|
|
||||||
|
voidList = [void, void, void],
|
||||||
|
boolList = [false, true, false, true, true],
|
||||||
|
int8List = [12, -34, -0x80, 0x7f],
|
||||||
|
int16List = [1234, -5678, -0x8000, 0x7fff],
|
||||||
|
int32List = [12345678, -90123456, -0x80000000, 0x7fffffff],
|
||||||
|
int64List = [123456789012345, -678901234567890, -0x8000000000000000, 0x7fffffffffffffff],
|
||||||
|
uInt8List = [12, 34, 0, 0xff],
|
||||||
|
uInt16List = [1234, 5678, 0, 0xffff],
|
||||||
|
uInt32List = [12345678, 90123456, 0, 0xffffffff],
|
||||||
|
uInt64List = [123456789012345, 678901234567890, 0, 0xffffffffffffffff],
|
||||||
|
float32List = [0, 1234567, 1e37, -1e37, 1e-37, -1e-37],
|
||||||
|
float64List = [0, 123456789012345, 1e306, -1e306, 1e-306, -1e-306],
|
||||||
|
textList = ["quux", "corge", "grault"],
|
||||||
|
dataList = ["garply", "waldo", "fred"],
|
||||||
|
structList = [
|
||||||
|
(textField = "x " "structlist"
|
||||||
|
" 1"),
|
||||||
|
(textField = "x structlist 2"),
|
||||||
|
(textField = "x structlist 3")],
|
||||||
|
enumList = [qux, bar, grault]
|
||||||
|
# interfaceList can't have a default
|
||||||
|
);
|
||||||
|
enumField @15 : TestEnum = corge;
|
||||||
|
interfaceField @16 : Void; # TODO
|
||||||
|
|
||||||
|
voidList @17 : List(Void) = [void, void, void, void, void, void];
|
||||||
|
boolList @18 : List(Bool) = [true, false, false, true];
|
||||||
|
int8List @19 : List(Int8) = [111, -111];
|
||||||
|
int16List @20 : List(Int16) = [11111, -11111];
|
||||||
|
int32List @21 : List(Int32) = [111111111, -111111111];
|
||||||
|
int64List @22 : List(Int64) = [1111111111111111111, -1111111111111111111];
|
||||||
|
uInt8List @23 : List(UInt8) = [111, 222] ;
|
||||||
|
uInt16List @24 : List(UInt16) = [33333, 44444];
|
||||||
|
uInt32List @25 : List(UInt32) = [3333333333];
|
||||||
|
uInt64List @26 : List(UInt64) = [11111111111111111111];
|
||||||
|
float32List @27 : List(Float32) = [5555.5, inf, -inf, nan];
|
||||||
|
float64List @28 : List(Float64) = [7777.75, inf, -inf, nan];
|
||||||
|
textList @29 : List(Text) = ["plugh", "xyzzy", "thud"];
|
||||||
|
dataList @30 : List(Data) = ["oops", "exhausted", "rfc3092"];
|
||||||
|
structList @31 : List(TestAllTypes) = [
|
||||||
|
(textField = "structlist 1"),
|
||||||
|
(textField = "structlist 2"),
|
||||||
|
(textField = "structlist 3")];
|
||||||
|
enumList @32 : List(TestEnum) = [foo, garply];
|
||||||
|
interfaceList @33 : List(Void); # TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestAnyPointer {
|
||||||
|
anyPointerField @0 :AnyPointer;
|
||||||
|
|
||||||
|
# Do not add any other fields here! Some tests rely on anyPointerField being the last pointer
|
||||||
|
# in the struct.
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestAnyOthers {
|
||||||
|
anyStructField @0 :AnyStruct;
|
||||||
|
anyListField @1 :AnyList;
|
||||||
|
capabilityField @2 :Capability;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestOutOfOrder {
|
||||||
|
foo @3 :Text;
|
||||||
|
bar @2 :Text;
|
||||||
|
baz @8 :Text;
|
||||||
|
qux @0 :Text;
|
||||||
|
quux @6 :Text;
|
||||||
|
corge @4 :Text;
|
||||||
|
grault @1 :Text;
|
||||||
|
garply @7 :Text;
|
||||||
|
waldo @5 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestUnion {
|
||||||
|
union0 @0! :union {
|
||||||
|
# Pack union 0 under ideal conditions: there is no unused padding space prior to it.
|
||||||
|
u0f0s0 @4: Void;
|
||||||
|
u0f0s1 @5: Bool;
|
||||||
|
u0f0s8 @6: Int8;
|
||||||
|
u0f0s16 @7: Int16;
|
||||||
|
u0f0s32 @8: Int32;
|
||||||
|
u0f0s64 @9: Int64;
|
||||||
|
u0f0sp @10: Text;
|
||||||
|
|
||||||
|
# Pack more stuff into union0 -- should go in same space.
|
||||||
|
u0f1s0 @11: Void;
|
||||||
|
u0f1s1 @12: Bool;
|
||||||
|
u0f1s8 @13: Int8;
|
||||||
|
u0f1s16 @14: Int16;
|
||||||
|
u0f1s32 @15: Int32;
|
||||||
|
u0f1s64 @16: Int64;
|
||||||
|
u0f1sp @17: Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Pack one bit in order to make pathological situation for union1.
|
||||||
|
bit0 @18: Bool;
|
||||||
|
|
||||||
|
union1 @1! :union {
|
||||||
|
# Pack pathologically bad case. Each field takes up new space.
|
||||||
|
u1f0s0 @19: Void;
|
||||||
|
u1f0s1 @20: Bool;
|
||||||
|
u1f1s1 @21: Bool;
|
||||||
|
u1f0s8 @22: Int8;
|
||||||
|
u1f1s8 @23: Int8;
|
||||||
|
u1f0s16 @24: Int16;
|
||||||
|
u1f1s16 @25: Int16;
|
||||||
|
u1f0s32 @26: Int32;
|
||||||
|
u1f1s32 @27: Int32;
|
||||||
|
u1f0s64 @28: Int64;
|
||||||
|
u1f1s64 @29: Int64;
|
||||||
|
u1f0sp @30: Text;
|
||||||
|
u1f1sp @31: Text;
|
||||||
|
|
||||||
|
# Pack more stuff into union1 -- each should go into the same space as corresponding u1f0s*.
|
||||||
|
u1f2s0 @32: Void;
|
||||||
|
u1f2s1 @33: Bool;
|
||||||
|
u1f2s8 @34: Int8;
|
||||||
|
u1f2s16 @35: Int16;
|
||||||
|
u1f2s32 @36: Int32;
|
||||||
|
u1f2s64 @37: Int64;
|
||||||
|
u1f2sp @38: Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Fill in the rest of that bitfield from earlier.
|
||||||
|
bit2 @39: Bool;
|
||||||
|
bit3 @40: Bool;
|
||||||
|
bit4 @41: Bool;
|
||||||
|
bit5 @42: Bool;
|
||||||
|
bit6 @43: Bool;
|
||||||
|
bit7 @44: Bool;
|
||||||
|
|
||||||
|
# Interleave two unions to be really annoying.
|
||||||
|
# Also declare in reverse order to make sure union discriminant values are sorted by field number
|
||||||
|
# and not by declaration order.
|
||||||
|
union2 @2! :union {
|
||||||
|
u2f0s64 @54: Int64;
|
||||||
|
u2f0s32 @52: Int32;
|
||||||
|
u2f0s16 @50: Int16;
|
||||||
|
u2f0s8 @47: Int8;
|
||||||
|
u2f0s1 @45: Bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
union3 @3! :union {
|
||||||
|
u3f0s64 @55: Int64;
|
||||||
|
u3f0s32 @53: Int32;
|
||||||
|
u3f0s16 @51: Int16;
|
||||||
|
u3f0s8 @48: Int8;
|
||||||
|
u3f0s1 @46: Bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
byte0 @49: UInt8;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestUnnamedUnion {
|
||||||
|
before @0 :Text;
|
||||||
|
|
||||||
|
union {
|
||||||
|
foo @1 :UInt16;
|
||||||
|
bar @3 :UInt32;
|
||||||
|
}
|
||||||
|
|
||||||
|
middle @2 :UInt16;
|
||||||
|
|
||||||
|
after @4 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestUnionInUnion {
|
||||||
|
# There is no reason to ever do this.
|
||||||
|
outer :union {
|
||||||
|
inner :union {
|
||||||
|
foo @0 :Int32;
|
||||||
|
bar @1 :Int32;
|
||||||
|
}
|
||||||
|
baz @2 :Int32;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestGroups {
|
||||||
|
groups :union {
|
||||||
|
foo :group {
|
||||||
|
corge @0 :Int32;
|
||||||
|
grault @2 :Int64;
|
||||||
|
garply @8 :Text;
|
||||||
|
}
|
||||||
|
bar :group {
|
||||||
|
corge @3 :Int32;
|
||||||
|
grault @4 :Text;
|
||||||
|
garply @5 :Int64;
|
||||||
|
}
|
||||||
|
baz :group {
|
||||||
|
corge @1 :Int32;
|
||||||
|
grault @6 :Text;
|
||||||
|
garply @7 :Text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestInterleavedGroups {
|
||||||
|
group1 :group {
|
||||||
|
foo @0 :UInt32;
|
||||||
|
bar @2 :UInt64;
|
||||||
|
union {
|
||||||
|
qux @4 :UInt16;
|
||||||
|
corge :group {
|
||||||
|
grault @6 :UInt64;
|
||||||
|
garply @8 :UInt16;
|
||||||
|
plugh @14 :Text;
|
||||||
|
xyzzy @16 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
fred @12 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
waldo @10 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
group2 :group {
|
||||||
|
foo @1 :UInt32;
|
||||||
|
bar @3 :UInt64;
|
||||||
|
union {
|
||||||
|
qux @5 :UInt16;
|
||||||
|
corge :group {
|
||||||
|
grault @7 :UInt64;
|
||||||
|
garply @9 :UInt16;
|
||||||
|
plugh @15 :Text;
|
||||||
|
xyzzy @17 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
fred @13 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
waldo @11 :Text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestUnionDefaults {
|
||||||
|
s16s8s64s8Set @0 :TestUnion =
|
||||||
|
(union0 = (u0f0s16 = 321), union1 = (u1f0s8 = 123), union2 = (u2f0s64 = 12345678901234567),
|
||||||
|
union3 = (u3f0s8 = 55));
|
||||||
|
s0sps1s32Set @1 :TestUnion =
|
||||||
|
(union0 = (u0f1s0 = void), union1 = (u1f0sp = "foo"), union2 = (u2f0s1 = true),
|
||||||
|
union3 = (u3f0s32 = 12345678));
|
||||||
|
|
||||||
|
unnamed1 @2 :TestUnnamedUnion = (foo = 123);
|
||||||
|
unnamed2 @3 :TestUnnamedUnion = (bar = 321, before = "foo", after = "bar");
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestNestedTypes {
|
||||||
|
enum NestedEnum {
|
||||||
|
foo @0;
|
||||||
|
bar @1;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct NestedStruct {
|
||||||
|
enum NestedEnum {
|
||||||
|
baz @0;
|
||||||
|
qux @1;
|
||||||
|
quux @2;
|
||||||
|
}
|
||||||
|
|
||||||
|
outerNestedEnum @0 :TestNestedTypes.NestedEnum = bar;
|
||||||
|
innerNestedEnum @1 :NestedEnum = quux;
|
||||||
|
}
|
||||||
|
|
||||||
|
nestedStruct @0 :NestedStruct;
|
||||||
|
|
||||||
|
outerNestedEnum @1 :NestedEnum = bar;
|
||||||
|
innerNestedEnum @2 :NestedStruct.NestedEnum = quux;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestUsing {
|
||||||
|
using OuterNestedEnum = TestNestedTypes.NestedEnum;
|
||||||
|
using TestNestedTypes.NestedStruct.NestedEnum;
|
||||||
|
|
||||||
|
outerNestedEnum @1 :OuterNestedEnum = bar;
|
||||||
|
innerNestedEnum @0 :NestedEnum = quux;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestLists {
|
||||||
|
# Small structs, when encoded as list, will be encoded as primitive lists rather than struct
|
||||||
|
# lists, to save space.
|
||||||
|
struct Struct0 { f @0 :Void; }
|
||||||
|
struct Struct1 { f @0 :Bool; }
|
||||||
|
struct Struct8 { f @0 :UInt8; }
|
||||||
|
struct Struct16 { f @0 :UInt16; }
|
||||||
|
struct Struct32 { f @0 :UInt32; }
|
||||||
|
struct Struct64 { f @0 :UInt64; }
|
||||||
|
struct StructP { f @0 :Text; }
|
||||||
|
|
||||||
|
# Versions of the above which cannot be encoded as primitive lists.
|
||||||
|
struct Struct0c { f @0 :Void; pad @1 :Text; }
|
||||||
|
struct Struct1c { f @0 :Bool; pad @1 :Text; }
|
||||||
|
struct Struct8c { f @0 :UInt8; pad @1 :Text; }
|
||||||
|
struct Struct16c { f @0 :UInt16; pad @1 :Text; }
|
||||||
|
struct Struct32c { f @0 :UInt32; pad @1 :Text; }
|
||||||
|
struct Struct64c { f @0 :UInt64; pad @1 :Text; }
|
||||||
|
struct StructPc { f @0 :Text; pad @1 :UInt64; }
|
||||||
|
|
||||||
|
list0 @0 :List(Struct0);
|
||||||
|
list1 @1 :List(Struct1);
|
||||||
|
list8 @2 :List(Struct8);
|
||||||
|
list16 @3 :List(Struct16);
|
||||||
|
list32 @4 :List(Struct32);
|
||||||
|
list64 @5 :List(Struct64);
|
||||||
|
listP @6 :List(StructP);
|
||||||
|
|
||||||
|
int32ListList @7 :List(List(Int32));
|
||||||
|
textListList @8 :List(List(Text));
|
||||||
|
structListList @9 :List(List(TestAllTypes));
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestFieldZeroIsBit {
|
||||||
|
bit @0 :Bool;
|
||||||
|
secondBit @1 :Bool = true;
|
||||||
|
thirdField @2 :UInt8 = 123;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestListDefaults {
|
||||||
|
lists @0 :TestLists = (
|
||||||
|
list0 = [(f = void), (f = void)],
|
||||||
|
list1 = [(f = true), (f = false), (f = true), (f = true)],
|
||||||
|
list8 = [(f = 123), (f = 45)],
|
||||||
|
list16 = [(f = 12345), (f = 6789)],
|
||||||
|
list32 = [(f = 123456789), (f = 234567890)],
|
||||||
|
list64 = [(f = 1234567890123456), (f = 2345678901234567)],
|
||||||
|
listP = [(f = "foo"), (f = "bar")],
|
||||||
|
int32ListList = [[1, 2, 3], [4, 5], [12341234]],
|
||||||
|
textListList = [["foo", "bar"], ["baz"], ["qux", "corge"]],
|
||||||
|
structListList = [[(int32Field = 123), (int32Field = 456)], [(int32Field = 789)]]);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestLateUnion {
|
||||||
|
# Test what happens if the unions are not the first ordinals in the struct. At one point this
|
||||||
|
# was broken for the dynamic API.
|
||||||
|
|
||||||
|
foo @0 :Int32;
|
||||||
|
bar @1 :Text;
|
||||||
|
baz @2 :Int16;
|
||||||
|
|
||||||
|
theUnion @3! :union {
|
||||||
|
qux @4 :Text;
|
||||||
|
corge @5 :List(Int32);
|
||||||
|
grault @6 :Float32;
|
||||||
|
}
|
||||||
|
|
||||||
|
anotherUnion @7! :union {
|
||||||
|
qux @8 :Text;
|
||||||
|
corge @9 :List(Int32);
|
||||||
|
grault @10 :Float32;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestOldVersion {
|
||||||
|
# A subset of TestNewVersion.
|
||||||
|
old1 @0 :Int64;
|
||||||
|
old2 @1 :Text;
|
||||||
|
old3 @2 :TestOldVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestNewVersion {
|
||||||
|
# A superset of TestOldVersion.
|
||||||
|
old1 @0 :Int64;
|
||||||
|
old2 @1 :Text;
|
||||||
|
old3 @2 :TestNewVersion;
|
||||||
|
new1 @3 :Int64 = 987;
|
||||||
|
new2 @4 :Text = "baz";
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestOldUnionVersion {
|
||||||
|
union {
|
||||||
|
a @0 :Void;
|
||||||
|
b @1 :UInt64;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestNewUnionVersion {
|
||||||
|
union {
|
||||||
|
a :union {
|
||||||
|
a0 @0 :Void;
|
||||||
|
a1 @2 :UInt64;
|
||||||
|
}
|
||||||
|
b @1 :UInt64;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestStructUnion {
|
||||||
|
un @0! :union {
|
||||||
|
struct @1 :SomeStruct;
|
||||||
|
object @2 :TestAnyPointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct SomeStruct {
|
||||||
|
someText @0 :Text;
|
||||||
|
moreText @1 :Text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestPrintInlineStructs {
|
||||||
|
someText @0 :Text;
|
||||||
|
|
||||||
|
structList @1 :List(InlineStruct);
|
||||||
|
struct InlineStruct {
|
||||||
|
int32Field @0 :Int32;
|
||||||
|
textField @1 :Text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestWholeFloatDefault {
|
||||||
|
# At one point, these failed to compile in C++ because it would produce literals like "123f",
|
||||||
|
# which is not valid; it needs to be "123.0f".
|
||||||
|
field @0 :Float32 = 123;
|
||||||
|
bigField @1 :Float32 = 2e30;
|
||||||
|
const constant :Float32 = 456;
|
||||||
|
const bigConstant :Float32 = 4e30;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestGenerics(Foo, Bar) {
|
||||||
|
foo @0 :Foo;
|
||||||
|
rev @1 :TestGenerics(Bar, Foo);
|
||||||
|
|
||||||
|
union {
|
||||||
|
uv @2:Void;
|
||||||
|
ug :group {
|
||||||
|
ugfoo @3:Int32;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
list @4 :List(Inner);
|
||||||
|
# At one time this failed to compile with MSVC due to poor expression SFINAE support.
|
||||||
|
|
||||||
|
struct Inner {
|
||||||
|
foo @0 :Foo;
|
||||||
|
bar @1 :Bar;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Inner2(Baz) {
|
||||||
|
bar @0 :Bar;
|
||||||
|
baz @1 :Baz;
|
||||||
|
innerBound @2 :Inner;
|
||||||
|
innerUnbound @3 :TestGenerics.Inner;
|
||||||
|
|
||||||
|
struct DeepNest(Qux) {
|
||||||
|
foo @0 :Foo;
|
||||||
|
bar @1 :Bar;
|
||||||
|
baz @2 :Baz;
|
||||||
|
qux @3 :Qux;
|
||||||
|
|
||||||
|
interface DeepNestInterface(Quux) {
|
||||||
|
# At one time this failed to compile.
|
||||||
|
call @0 () -> ();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Interface(Qux) {
|
||||||
|
call @0 Inner2(Text) -> (qux :Qux, gen :TestGenerics(TestAllTypes, TestAnyPointer));
|
||||||
|
}
|
||||||
|
|
||||||
|
annotation ann(struct) :Foo;
|
||||||
|
|
||||||
|
using AliasFoo = Foo;
|
||||||
|
using AliasInner = Inner;
|
||||||
|
using AliasInner2 = Inner2;
|
||||||
|
using AliasInner2Text = Inner2(Text);
|
||||||
|
using AliasRev = TestGenerics(Bar, Foo);
|
||||||
|
|
||||||
|
struct UseAliases {
|
||||||
|
foo @0 :AliasFoo;
|
||||||
|
inner @1 :AliasInner;
|
||||||
|
inner2 @2 :AliasInner2;
|
||||||
|
inner2Bind @3 :AliasInner2(Text);
|
||||||
|
inner2Text @4 :AliasInner2Text;
|
||||||
|
revFoo @5 :AliasRev.AliasFoo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestGenericsWrapper(Foo, Bar) {
|
||||||
|
value @0 :TestGenerics(Foo, Bar);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestGenericsWrapper2 {
|
||||||
|
value @0 :TestGenericsWrapper(Text, TestAllTypes);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestImplicitMethodParams {
|
||||||
|
call @0 [T, U] (foo :T, bar :U) -> TestGenerics(T, U);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestImplicitMethodParamsInGeneric(V) {
|
||||||
|
call @0 [T, U] (foo :T, bar :U) -> TestGenerics(T, U);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestGenericsUnion(Foo, Bar) {
|
||||||
|
# At one point this failed to compile.
|
||||||
|
|
||||||
|
union {
|
||||||
|
foo @0 :Foo;
|
||||||
|
bar @1 :Bar;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestUseGenerics $TestGenerics(Text, Data).ann("foo") {
|
||||||
|
basic @0 :TestGenerics(TestAllTypes, TestAnyPointer);
|
||||||
|
inner @1 :TestGenerics(TestAllTypes, TestAnyPointer).Inner;
|
||||||
|
inner2 @2 :TestGenerics(TestAllTypes, TestAnyPointer).Inner2(Text);
|
||||||
|
unspecified @3 :TestGenerics;
|
||||||
|
unspecifiedInner @4 :TestGenerics.Inner2(Text);
|
||||||
|
wrapper @8 :TestGenericsWrapper(TestAllTypes, TestAnyPointer);
|
||||||
|
cap @18 :TestGenerics(TestInterface, Text);
|
||||||
|
genericCap @19 :TestGenerics(TestAllTypes, List(UInt32)).Interface(Data);
|
||||||
|
|
||||||
|
default @5 :TestGenerics(TestAllTypes, Text) =
|
||||||
|
(foo = (int16Field = 123), rev = (foo = "text", rev = (foo = (int16Field = 321))));
|
||||||
|
defaultInner @6 :TestGenerics(TestAllTypes, Text).Inner =
|
||||||
|
(foo = (int16Field = 123), bar = "text");
|
||||||
|
defaultUser @7 :TestUseGenerics = (basic = (foo = (int16Field = 123)));
|
||||||
|
defaultWrapper @9 :TestGenericsWrapper(Text, TestAllTypes) =
|
||||||
|
(value = (foo = "text", rev = (foo = (int16Field = 321))));
|
||||||
|
defaultWrapper2 @10 :TestGenericsWrapper2 =
|
||||||
|
(value = (value = (foo = "text", rev = (foo = (int16Field = 321)))));
|
||||||
|
|
||||||
|
aliasFoo @11 :TestGenerics(TestAllTypes, TestAnyPointer).AliasFoo = (int16Field = 123);
|
||||||
|
aliasInner @12 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner
|
||||||
|
= (foo = (int16Field = 123));
|
||||||
|
aliasInner2 @13 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner2
|
||||||
|
= (innerBound = (foo = (int16Field = 123)));
|
||||||
|
aliasInner2Bind @14 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner2(List(UInt32))
|
||||||
|
= (baz = [12, 34], innerBound = (foo = (int16Field = 123)));
|
||||||
|
aliasInner2Text @15 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner2Text
|
||||||
|
= (baz = "text", innerBound = (foo = (int16Field = 123)));
|
||||||
|
aliasRev @16 :TestGenerics(TestAnyPointer, Text).AliasRev.AliasFoo = "text";
|
||||||
|
|
||||||
|
useAliases @17 :TestGenerics(TestAllTypes, List(UInt32)).UseAliases = (
|
||||||
|
foo = (int16Field = 123),
|
||||||
|
inner = (foo = (int16Field = 123)),
|
||||||
|
inner2 = (innerBound = (foo = (int16Field = 123))),
|
||||||
|
inner2Bind = (baz = "text", innerBound = (foo = (int16Field = 123))),
|
||||||
|
inner2Text = (baz = "text", innerBound = (foo = (int16Field = 123))),
|
||||||
|
revFoo = [12, 34, 56]);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestEmptyStruct {}
|
||||||
|
|
||||||
|
struct TestConstants {
|
||||||
|
const voidConst :Void = void;
|
||||||
|
const boolConst :Bool = true;
|
||||||
|
const int8Const :Int8 = -123;
|
||||||
|
const int16Const :Int16 = -12345;
|
||||||
|
const int32Const :Int32 = -12345678;
|
||||||
|
const int64Const :Int64 = -123456789012345;
|
||||||
|
const uint8Const :UInt8 = 234;
|
||||||
|
const uint16Const :UInt16 = 45678;
|
||||||
|
const uint32Const :UInt32 = 3456789012;
|
||||||
|
const uint64Const :UInt64 = 12345678901234567890;
|
||||||
|
const float32Const :Float32 = 1234.5;
|
||||||
|
const float64Const :Float64 = -123e45;
|
||||||
|
const textConst :Text = "foo";
|
||||||
|
const dataConst :Data = "bar";
|
||||||
|
const structConst :TestAllTypes = (
|
||||||
|
voidField = void,
|
||||||
|
boolField = true,
|
||||||
|
int8Field = -12,
|
||||||
|
int16Field = 3456,
|
||||||
|
int32Field = -78901234,
|
||||||
|
int64Field = 56789012345678,
|
||||||
|
uInt8Field = 90,
|
||||||
|
uInt16Field = 1234,
|
||||||
|
uInt32Field = 56789012,
|
||||||
|
uInt64Field = 345678901234567890,
|
||||||
|
float32Field = -1.25e-10,
|
||||||
|
float64Field = 345,
|
||||||
|
textField = "baz",
|
||||||
|
dataField = "qux",
|
||||||
|
structField = (
|
||||||
|
textField = "nested",
|
||||||
|
structField = (textField = "really nested")),
|
||||||
|
enumField = baz,
|
||||||
|
# interfaceField can't have a default
|
||||||
|
|
||||||
|
voidList = [void, void, void],
|
||||||
|
boolList = [false, true, false, true, true],
|
||||||
|
int8List = [12, -34, -0x80, 0x7f],
|
||||||
|
int16List = [1234, -5678, -0x8000, 0x7fff],
|
||||||
|
int32List = [12345678, -90123456, -0x80000000, 0x7fffffff],
|
||||||
|
int64List = [123456789012345, -678901234567890, -0x8000000000000000, 0x7fffffffffffffff],
|
||||||
|
uInt8List = [12, 34, 0, 0xff],
|
||||||
|
uInt16List = [1234, 5678, 0, 0xffff],
|
||||||
|
uInt32List = [12345678, 90123456, 0, 0xffffffff],
|
||||||
|
uInt64List = [123456789012345, 678901234567890, 0, 0xffffffffffffffff],
|
||||||
|
float32List = [0, 1234567, 1e37, -1e37, 1e-37, -1e-37],
|
||||||
|
float64List = [0, 123456789012345, 1e306, -1e306, 1e-306, -1e-306],
|
||||||
|
textList = ["quux", "corge", "grault"],
|
||||||
|
dataList = ["garply", "waldo", "fred"],
|
||||||
|
structList = [
|
||||||
|
(textField = "x " "structlist"
|
||||||
|
" 1"),
|
||||||
|
(textField = "x structlist 2"),
|
||||||
|
(textField = "x structlist 3")],
|
||||||
|
enumList = [qux, bar, grault]
|
||||||
|
# interfaceList can't have a default
|
||||||
|
);
|
||||||
|
const enumConst :TestEnum = corge;
|
||||||
|
|
||||||
|
const voidListConst :List(Void) = [void, void, void, void, void, void];
|
||||||
|
const boolListConst :List(Bool) = [true, false, false, true];
|
||||||
|
const int8ListConst :List(Int8) = [111, -111];
|
||||||
|
const int16ListConst :List(Int16) = [11111, -11111];
|
||||||
|
const int32ListConst :List(Int32) = [111111111, -111111111];
|
||||||
|
const int64ListConst :List(Int64) = [1111111111111111111, -1111111111111111111];
|
||||||
|
const uint8ListConst :List(UInt8) = [111, 222] ;
|
||||||
|
const uint16ListConst :List(UInt16) = [33333, 44444];
|
||||||
|
const uint32ListConst :List(UInt32) = [3333333333];
|
||||||
|
const uint64ListConst :List(UInt64) = [11111111111111111111];
|
||||||
|
const float32ListConst :List(Float32) = [5555.5, inf, -inf, nan];
|
||||||
|
const float64ListConst :List(Float64) = [7777.75, inf, -inf, nan];
|
||||||
|
const textListConst :List(Text) = ["plugh", "xyzzy", "thud"];
|
||||||
|
const dataListConst :List(Data) = ["oops", "exhausted", "rfc3092"];
|
||||||
|
const structListConst :List(TestAllTypes) = [
|
||||||
|
(textField = "structlist 1"),
|
||||||
|
(textField = "structlist 2"),
|
||||||
|
(textField = "structlist 3")];
|
||||||
|
const enumListConst :List(TestEnum) = [foo, garply];
|
||||||
|
}
|
||||||
|
|
||||||
|
const globalInt :UInt32 = 12345;
|
||||||
|
const globalText :Text = "foobar";
|
||||||
|
const globalStruct :TestAllTypes = (int32Field = 54321);
|
||||||
|
const globalPrintableStruct :TestPrintInlineStructs = (someText = "foo");
|
||||||
|
const derivedConstant :TestAllTypes = (
|
||||||
|
uInt32Field = .globalInt,
|
||||||
|
textField = TestConstants.textConst,
|
||||||
|
structField = TestConstants.structConst,
|
||||||
|
int16List = TestConstants.int16ListConst,
|
||||||
|
structList = TestConstants.structListConst);
|
||||||
|
|
||||||
|
const genericConstant :TestGenerics(TestAllTypes, Text) =
|
||||||
|
(foo = (int16Field = 123), rev = (foo = "text", rev = (foo = (int16Field = 321))));
|
||||||
|
|
||||||
|
const embeddedData :Data = embed "testdata/packed";
|
||||||
|
const embeddedText :Text = embed "testdata/short.txt";
|
||||||
|
const embeddedStruct :TestAllTypes = embed "testdata/binary";
|
||||||
|
|
||||||
|
const nonAsciiText :Text = "♫ é ✓";
|
||||||
|
|
||||||
|
struct TestAnyPointerConstants {
|
||||||
|
anyKindAsStruct @0 :AnyPointer;
|
||||||
|
anyStructAsStruct @1 :AnyStruct;
|
||||||
|
anyKindAsList @2 :AnyPointer;
|
||||||
|
anyListAsList @3 :AnyList;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
const anyPointerConstants :TestAnyPointerConstants = (
|
||||||
|
anyKindAsStruct = TestConstants.structConst,
|
||||||
|
anyStructAsStruct = TestConstants.structConst,
|
||||||
|
anyKindAsList = TestConstants.int32ListConst,
|
||||||
|
anyListAsList = TestConstants.int32ListConst,
|
||||||
|
);
|
||||||
|
|
||||||
|
interface TestInterface {
|
||||||
|
foo @0 (i :UInt32, j :Bool) -> (x :Text);
|
||||||
|
bar @1 () -> ();
|
||||||
|
baz @2 (s: TestAllTypes);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestExtends extends(TestInterface) {
|
||||||
|
qux @0 ();
|
||||||
|
corge @1 TestAllTypes -> ();
|
||||||
|
grault @2 () -> TestAllTypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestExtends2 extends(TestExtends) {}
|
||||||
|
|
||||||
|
interface TestPipeline {
|
||||||
|
getCap @0 (n: UInt32, inCap :TestInterface) -> (s: Text, outBox :Box);
|
||||||
|
testPointers @1 (cap :TestInterface, obj :AnyPointer, list :List(TestInterface)) -> ();
|
||||||
|
getAnyCap @2 (n: UInt32, inCap :Capability) -> (s: Text, outBox :AnyBox);
|
||||||
|
|
||||||
|
struct Box {
|
||||||
|
cap @0 :TestInterface;
|
||||||
|
}
|
||||||
|
struct AnyBox {
|
||||||
|
cap @0 :Capability;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestCallOrder {
|
||||||
|
getCallSequence @0 (expected: UInt32) -> (n: UInt32);
|
||||||
|
# First call returns 0, next returns 1, ...
|
||||||
|
#
|
||||||
|
# The input `expected` is ignored but useful for disambiguating debug logs.
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestTailCallee {
|
||||||
|
struct TailResult {
|
||||||
|
i @0 :UInt32;
|
||||||
|
t @1 :Text;
|
||||||
|
c @2 :TestCallOrder;
|
||||||
|
}
|
||||||
|
|
||||||
|
foo @0 (i :Int32, t :Text) -> TailResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestTailCaller {
|
||||||
|
foo @0 (i :Int32, callee :TestTailCallee) -> TestTailCallee.TailResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestHandle {}
|
||||||
|
|
||||||
|
interface TestMoreStuff extends(TestCallOrder) {
|
||||||
|
# Catch-all type that contains lots of testing methods.
|
||||||
|
|
||||||
|
callFoo @0 (cap :TestInterface) -> (s: Text);
|
||||||
|
# Call `cap.foo()`, check the result, and return "bar".
|
||||||
|
|
||||||
|
callFooWhenResolved @1 (cap :TestInterface) -> (s: Text);
|
||||||
|
# Like callFoo but waits for `cap` to resolve first.
|
||||||
|
|
||||||
|
neverReturn @2 (cap :TestInterface) -> (capCopy :TestInterface);
|
||||||
|
# Doesn't return. You should cancel it.
|
||||||
|
|
||||||
|
hold @3 (cap :TestInterface) -> ();
|
||||||
|
# Returns immediately but holds on to the capability.
|
||||||
|
|
||||||
|
callHeld @4 () -> (s: Text);
|
||||||
|
# Calls the capability previously held using `hold` (and keeps holding it).
|
||||||
|
|
||||||
|
getHeld @5 () -> (cap :TestInterface);
|
||||||
|
# Returns the capability previously held using `hold` (and keeps holding it).
|
||||||
|
|
||||||
|
echo @6 (cap :TestCallOrder) -> (cap :TestCallOrder);
|
||||||
|
# Just returns the input cap.
|
||||||
|
|
||||||
|
expectCancel @7 (cap :TestInterface) -> ();
|
||||||
|
# evalLater()-loops forever, holding `cap`. Must be canceled.
|
||||||
|
|
||||||
|
methodWithDefaults @8 (a :Text, b :UInt32 = 123, c :Text = "foo") -> (d :Text, e :Text = "bar");
|
||||||
|
|
||||||
|
methodWithNullDefault @12 (a :Text, b :TestInterface = null);
|
||||||
|
|
||||||
|
getHandle @9 () -> (handle :TestHandle);
|
||||||
|
# Get a new handle. Tests have an out-of-band way to check the current number of live handles, so
|
||||||
|
# this can be used to test garbage collection.
|
||||||
|
|
||||||
|
getNull @10 () -> (nullCap :TestMoreStuff);
|
||||||
|
# Always returns a null capability.
|
||||||
|
|
||||||
|
getEnormousString @11 () -> (str :Text);
|
||||||
|
# Attempts to return an 100MB string. Should always fail.
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestMembrane {
|
||||||
|
makeThing @0 () -> (thing :Thing);
|
||||||
|
callPassThrough @1 (thing :Thing, tailCall :Bool) -> Result;
|
||||||
|
callIntercept @2 (thing :Thing, tailCall :Bool) -> Result;
|
||||||
|
loopback @3 (thing :Thing) -> (thing :Thing);
|
||||||
|
|
||||||
|
waitForever @4 ();
|
||||||
|
|
||||||
|
interface Thing {
|
||||||
|
passThrough @0 () -> Result;
|
||||||
|
intercept @1 () -> Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Result {
|
||||||
|
text @0 :Text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestContainMembrane {
|
||||||
|
cap @0 :TestMembrane.Thing;
|
||||||
|
list @1 :List(TestMembrane.Thing);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestTransferCap {
|
||||||
|
list @0 :List(Element);
|
||||||
|
struct Element {
|
||||||
|
text @0 :Text;
|
||||||
|
cap @1 :TestInterface;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestKeywordMethods {
|
||||||
|
delete @0 ();
|
||||||
|
class @1 ();
|
||||||
|
void @2 ();
|
||||||
|
return @3 ();
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestAuthenticatedBootstrap(VatId) {
|
||||||
|
getCallerId @0 () -> (caller :VatId);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestSturdyRef {
|
||||||
|
hostId @0 :TestSturdyRefHostId;
|
||||||
|
objectId @1 :AnyPointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestSturdyRefHostId {
|
||||||
|
host @0 :Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestSturdyRefObjectId {
|
||||||
|
tag @0 :Tag;
|
||||||
|
enum Tag {
|
||||||
|
testInterface @0;
|
||||||
|
testExtends @1;
|
||||||
|
testPipeline @2;
|
||||||
|
testTailCallee @3;
|
||||||
|
testTailCaller @4;
|
||||||
|
testMoreStuff @5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TestProvisionId {}
|
||||||
|
struct TestRecipientId {}
|
||||||
|
struct TestThirdPartyCapId {}
|
||||||
|
struct TestJoinResult {}
|
||||||
|
|
||||||
|
struct TestNameAnnotation $Cxx.name("RenamedStruct") {
|
||||||
|
union {
|
||||||
|
badFieldName @0 :Bool $Cxx.name("goodFieldName");
|
||||||
|
bar @1 :Int8;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum BadlyNamedEnum $Cxx.name("RenamedEnum") {
|
||||||
|
foo @0;
|
||||||
|
bar @1;
|
||||||
|
baz @2 $Cxx.name("qux");
|
||||||
|
}
|
||||||
|
|
||||||
|
anotherBadFieldName @2 :BadlyNamedEnum $Cxx.name("anotherGoodFieldName");
|
||||||
|
|
||||||
|
struct NestedStruct $Cxx.name("RenamedNestedStruct") {
|
||||||
|
badNestedFieldName @0 :Bool $Cxx.name("goodNestedFieldName");
|
||||||
|
anotherBadNestedFieldName @1 :NestedStruct $Cxx.name("anotherGoodNestedFieldName");
|
||||||
|
|
||||||
|
enum DeeplyNestedEnum $Cxx.name("RenamedDeeplyNestedEnum") {
|
||||||
|
quux @0;
|
||||||
|
corge @1;
|
||||||
|
grault @2 $Cxx.name("garply");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
badlyNamedUnion :union $Cxx.name("renamedUnion") {
|
||||||
|
badlyNamedGroup :group $Cxx.name("renamedGroup") {
|
||||||
|
foo @3 :Void;
|
||||||
|
bar @4 :Void;
|
||||||
|
}
|
||||||
|
baz @5 :NestedStruct $Cxx.name("qux");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestNameAnnotationInterface $Cxx.name("RenamedInterface") {
|
||||||
|
badlyNamedMethod @0 (badlyNamedParam :UInt8 $Cxx.name("renamedParam")) $Cxx.name("renamedMethod");
|
||||||
|
}
|
40
capnpc-csharp.tests/Properties/Resources.Designer.cs
generated
40
capnpc-csharp.tests/Properties/Resources.Designer.cs
generated
@ -1,10 +1,10 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
// Runtime Version:4.0.30319.42000
|
// Laufzeitversion:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
// the code is regenerated.
|
// der Code erneut generiert wird.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -13,12 +13,12 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
// Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
||||||
// class via a tool like ResGen or Visual Studio.
|
// -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
||||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
// Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
||||||
// with the /str option, or rebuild your VS project.
|
// mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
@ -33,7 +33,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the cached ResourceManager instance used by this class.
|
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
@ -47,8 +47,8 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Overrides the current thread's CurrentUICulture property for all
|
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||||
/// resource lookups using this strongly typed resource class.
|
/// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Globalization.CultureInfo Culture {
|
internal static global::System.Globalization.CultureInfo Culture {
|
||||||
@ -61,7 +61,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] schema_with_offsets_capnp {
|
internal static byte[] schema_with_offsets_capnp {
|
||||||
get {
|
get {
|
||||||
@ -71,7 +71,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] UnitTest1_capnp {
|
internal static byte[] UnitTest1_capnp {
|
||||||
get {
|
get {
|
||||||
@ -81,7 +81,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] UnitTest10_capnp {
|
internal static byte[] UnitTest10_capnp {
|
||||||
get {
|
get {
|
||||||
@ -91,7 +91,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] UnitTest11_capnp {
|
internal static byte[] UnitTest11_capnp {
|
||||||
get {
|
get {
|
||||||
@ -101,7 +101,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] UnitTest2_capnp {
|
internal static byte[] UnitTest2_capnp {
|
||||||
get {
|
get {
|
||||||
@ -111,7 +111,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] UnitTest20_capnp {
|
internal static byte[] UnitTest20_capnp {
|
||||||
get {
|
get {
|
||||||
@ -121,7 +121,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] UnitTest3_capnp {
|
internal static byte[] UnitTest3_capnp {
|
||||||
get {
|
get {
|
||||||
@ -131,7 +131,7 @@ namespace capnpc_csharp.Tests.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Byte[].
|
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static byte[] UnitTest4_capnp {
|
internal static byte[] UnitTest4_capnp {
|
||||||
get {
|
get {
|
||||||
|
BIN
capnpc-csharp.tests/Resources/test.capnp.bin
Normal file
BIN
capnpc-csharp.tests/Resources/test.capnp.bin
Normal file
Binary file not shown.
@ -8,9 +8,12 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
||||||
|
<PackageReference Include="SpecFlow" Version="3.0.225" />
|
||||||
|
<PackageReference Include="SpecFlow.MsTest" Version="3.0.225" />
|
||||||
|
<PackageReference Include="SpecFlow.Tools.MsBuild.Generation" Version="3.0.225" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -19,9 +22,24 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Remove="*.cs" />
|
<Compile Remove="*.cs" />
|
||||||
|
<Compile Remove="Embedded Resources\test.cs" />
|
||||||
|
<Compile Remove="Resources\test.cs" />
|
||||||
|
<None Remove="Embedded Resources\null.bin" />
|
||||||
|
<None Remove="Embedded Resources\test.capnp" />
|
||||||
|
<None Remove="Embedded Resources\test.capnp.bin" />
|
||||||
<Compile Include="UnitTests.cs" />
|
<Compile Include="UnitTests.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="Embedded Resources\test.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Embedded Resources\null.bin" />
|
||||||
|
<EmbeddedResource Include="Embedded Resources\test.capnp.bin" />
|
||||||
|
<EmbeddedResource Include="Embedded Resources\test.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Update="Properties\Resources.Designer.cs">
|
<Compile Update="Properties\Resources.Designer.cs">
|
||||||
<DesignTime>True</DesignTime>
|
<DesignTime>True</DesignTime>
|
||||||
@ -37,4 +55,12 @@
|
|||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<SpecFlowFeatureFiles Update="CodeGenerator.feature">
|
||||||
|
<Generator>SpecFlowSingleFileGenerator</Generator>
|
||||||
|
<LastGenOutput>CodeGenerator.feature.cs</LastGenOutput>
|
||||||
|
<Generator Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"></Generator>
|
||||||
|
</SpecFlowFeatureFiles>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -66,8 +66,6 @@ namespace CapnpC.Model
|
|||||||
|
|
||||||
declaringType = (declaringType as TypeDefinition)?.DeclaringElement as IHasGenericParameters;
|
declaringType = (declaringType as TypeDefinition)?.DeclaringElement as IHasGenericParameters;
|
||||||
}
|
}
|
||||||
|
|
||||||
ElementType?.InheritFreeParameters(declaringType); // BUG: this is always null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Type SubstituteGenerics(Type type)
|
Type SubstituteGenerics(Type type)
|
||||||
|
@ -7,8 +7,24 @@ using System.Runtime.CompilerServices;
|
|||||||
|
|
||||||
namespace CapnpC
|
namespace CapnpC
|
||||||
{
|
{
|
||||||
class Program
|
internal class Program
|
||||||
{
|
{
|
||||||
|
internal static void GenerateFromStream(Stream input)
|
||||||
|
{
|
||||||
|
WireFrame segments;
|
||||||
|
|
||||||
|
using (input)
|
||||||
|
{
|
||||||
|
segments = Framing.ReadSegments(input);
|
||||||
|
}
|
||||||
|
|
||||||
|
var dec = DeserializerState.CreateRoot(segments);
|
||||||
|
var reader = Schema.CodeGeneratorRequest.Reader.Create(dec);
|
||||||
|
var model = Model.SchemaModel.Create(reader);
|
||||||
|
var codeGen = new Generator.CodeGenerator(model, new Generator.GeneratorOptions());
|
||||||
|
codeGen.Generate();
|
||||||
|
}
|
||||||
|
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
Stream input;
|
Stream input;
|
||||||
@ -27,18 +43,7 @@ namespace CapnpC
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
WireFrame segments;
|
GenerateFromStream(input);
|
||||||
|
|
||||||
using (input)
|
|
||||||
{
|
|
||||||
segments = Framing.ReadSegments(input);
|
|
||||||
}
|
|
||||||
|
|
||||||
var dec = DeserializerState.CreateRoot(segments);
|
|
||||||
var reader = Schema.CodeGeneratorRequest.Reader.Create(dec);
|
|
||||||
var model = Model.SchemaModel.Create(reader);
|
|
||||||
var codeGen = new Generator.CodeGenerator(model, new Generator.GeneratorOptions());
|
|
||||||
codeGen.Generate();
|
|
||||||
}
|
}
|
||||||
catch (Exception exception)
|
catch (Exception exception)
|
||||||
{
|
{
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.10.0" />
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.2.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
0
test.capnp.bin
Normal file
0
test.capnp.bin
Normal file
Loading…
x
Reference in New Issue
Block a user