Skip to content

Commit fdef3aa

Browse files
authoredNov 29, 2022
Add a method to retrieve state code from configuration reader (#116)
1 parent e8c4b2e commit fdef3aa

File tree

9 files changed

+375
-310
lines changed

9 files changed

+375
-310
lines changed
 

‎.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
build_reactiveapi:
4343
docker:
44-
- image: microsoft/dotnet:2.2-sdk
44+
- image: mcr.microsoft.com/dotnet/sdk:2.1
4545
steps:
4646
- attach_workspace:
4747
at: /home/circleci/project
@@ -103,7 +103,7 @@ jobs:
103103
104104
deploy_nuget:
105105
docker:
106-
- image: microsoft/dotnet:2.2-sdk
106+
- image: mcr.microsoft.com/dotnet/sdk:2.1
107107
<<: *docker_auth
108108
steps:
109109
- attach_workspace:

‎ReactiveXComponent/Configuration/IXCConfiguration.cs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public interface IXCConfiguration
1212
WebSocketEndpoint GetWebSocketEndpoint();
1313
int GetStateMachineCode(string component, string stateMachine);
1414
int GetComponentCode(string component);
15+
int GetStateCode(string component, string stateMachine, string state);
1516
int GetPublisherEventCode(string evnt);
1617
string GetPublisherTopic(string component, string stateMachine);
1718
string GetPublisherTopic(long componentCode, long stateMachineCode);

‎ReactiveXComponent/Configuration/XCApiTags.cs

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public static class XCApiTags
1616
public const string ComponentCode = "componentCode";
1717
public const string StateMachineCode = "stateMachineCode";
1818
public const string StateMachine = "stateMachine";
19+
public const string State = "State";
1920
public const string Topic = "topic";
2021
public const string Subscribe = "subscribe";
2122
public const string EventType = "eventType";

‎ReactiveXComponent/Configuration/XCConfiguration.cs

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ public int GetStateMachineCode(string component, string stateMachine)
5353
return _parser.GetStateMachineCode(component, stateMachine);
5454
}
5555

56+
public int GetStateCode(string component, string stateMachine, string state)
57+
{
58+
return _parser.GetStateCode(component, stateMachine, state);
59+
}
60+
5661
public int GetComponentCode(string component)
5762
{
5863
return _parser.GetComponentCode(component);

‎ReactiveXComponent/Parser/IXCApiConfigParser.cs

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ public interface IXCApiConfigParser
1212
WebSocketEndpoint GetWebSocketEndpoint();
1313
int GetComponentCode(string component);
1414
int GetStateMachineCode(string component, string stateMachine);
15+
int GetStateCode(string component, string stateMachine, string state);
16+
1517
int GetPublisherEventCode(string eventName);
1618
string GetPublisherTopic(string component, string stateMachine);
1719
string GetPublisherTopic(long componentCode, long stateMachineCode);

‎ReactiveXComponent/Parser/XCApiConfigParser.cs

+351-304
Large diffs are not rendered by default.

‎ReactiveXComponentTest/Configuration/ConfigurationTests.cs

+8
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,14 @@ public void GetStateMachineCodeTest()
104104
var stateMachineCode = _webSocketConfiguration.GetStateMachineCode("HelloWorld", "HelloWorldManager");
105105

106106
Check.That(stateMachineCode).IsEqualTo(-829536631);
107+
}
108+
109+
[Test]
110+
public void GetStateCodeTest()
111+
{
112+
var stateCode = _webSocketConfiguration.GetStateCode("HelloWorld", "HelloWorldManager", "EntryPoint");
113+
114+
Check.That(stateCode).IsEqualTo(0);
107115
}
108116

109117
[Test]

‎docker/integration_tests/dockerScripts/AppsContainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet:sdk
1+
FROM mcr.microsoft.com/dotnet/sdk:2.1
22
USER root
33

44
RUN apt-get update && apt-get install -y unzip iputils-ping telnet net-tools dos2unix && rm -rf /var/lib/apt/lists/* /tmp/*

‎docker/integration_tests/dockerScripts/XCContainer/Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
FROM xcomponent/mono:1.0.0
1+
FROM xcomponent/mono:1.1.0
22
USER root
3-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
3+
RUN rm -rf /etc/apt/sources.list.d && mkdir /etc/apt/sources.list.d && touch /etc/apt/sources.list.d/nodesource.list
4+
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
45
RUN apt-get update && apt-get install -y \
56
iputils-ping \
67
telnet \
78
net-tools \
89
dos2unix \
910
unzip \
1011
nodejs \
11-
&& rm -rf /var/lib/apt/lists/* /tmp/*
12+
&& rm -rf /var/lib/apt/lists/* /tmp/*
1213
COPY XCRuntime.zip ./
1314
RUN rm -rf XCRuntime
1415
RUN unzip /XCRuntime.zip -d XCRuntime

0 commit comments

Comments
 (0)