Skip to content

Commit f3e6020

Browse files
author
Clemens Vasters
committed
added support for version 0.3
Signed-off-by: Clemens Vasters <[email protected]>
1 parent b9f1095 commit f3e6020

20 files changed

+274
-102
lines changed

.vscode/launch.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
// Use IntelliSense to find out which attributes exist for C# debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": ".NET Core Launch (console)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/test/CloudNative.CloudEvents.UnitTests/bin/Debug/netcoreapp2.1/CloudNative.CloudEvents.UnitTests.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/test/CloudNative.CloudEvents.UnitTests",
16+
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
17+
"console": "internalConsole",
18+
"stopAtEntry": false,
19+
"internalConsoleOptions": "openOnSessionStart"
20+
},
21+
{
22+
"name": ".NET Core Attach",
23+
"type": "coreclr",
24+
"request": "attach",
25+
"processId": "${command:pickProcess}"
26+
}
27+
,]
28+
}

.vscode/tasks.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/test/CloudNative.CloudEvents.UnitTests/CloudNative.CloudEvents.UnitTests.csproj"
11+
],
12+
"problemMatcher": "$msCompile"
13+
}
14+
]
15+
}

CloudEvents.sln.DotSettings

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:Boolean x:Key="/Default/UserDictionary/Words/=datacontentencoding/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

samples/HttpSend/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async Task OnExecuteAsync()
3232
{
3333
var cloudEvent = new CloudEvent(this.Type, new Uri(this.Source))
3434
{
35-
ContentType = new ContentType(MediaTypeNames.Application.Json),
35+
DataContentType = new ContentType(MediaTypeNames.Application.Json),
3636
Data = JsonConvert.SerializeObject("hey there!")
3737
};
3838

src/CloudNative.CloudEvents.Amqp/AmqpClientExtensions.cs

+5-3
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,10 @@ public static CloudEvent ToCloudEvent(this Message message,
6868
? CloudEventsSpecVersion.V0_1
6969
: message.ApplicationProperties.Map.ContainsKey(SpecVersionAmqpHeader2)
7070
? (message.ApplicationProperties.Map[SpecVersionAmqpHeader2] as string == "0.2"
71-
? CloudEventsSpecVersion.V0_2
72-
: CloudEventsSpecVersion.Default)
71+
? CloudEventsSpecVersion.V0_2 :
72+
(message.ApplicationProperties.Map[SpecVersionAmqpHeader2] as string == "0.3"
73+
? CloudEventsSpecVersion.V0_3
74+
: CloudEventsSpecVersion.Default))
7375
: CloudEventsSpecVersion.Default, extensions);
7476
var attributes = cloudEvent.GetAttributes();
7577
foreach (var prop in message.ApplicationProperties.Map)
@@ -96,7 +98,7 @@ public static CloudEvent ToCloudEvent(this Message message,
9698
}
9799
}
98100

99-
cloudEvent.ContentType = message.Properties.ContentType != null
101+
cloudEvent.DataContentType = message.Properties.ContentType != null
100102
? new ContentType(message.Properties.ContentType)
101103
: null;
102104
cloudEvent.Data = message.Body;

src/CloudNative.CloudEvents.Amqp/AmqpCloudEventMessage.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public AmqpCloudEventMessage(CloudEvent cloudEvent, ContentMode contentMode, ICl
4747
this.BodySection = new AmqpValue() { Value = cloudEvent.Data };
4848
}
4949

50-
this.Properties = new Properties() { ContentType = cloudEvent.ContentType?.MediaType };
50+
this.Properties = new Properties() { ContentType = cloudEvent.DataContentType?.MediaType };
5151
this.ApplicationProperties = new ApplicationProperties();
5252
MapHeaders(cloudEvent);
5353
}
@@ -57,7 +57,7 @@ void MapHeaders(CloudEvent cloudEvent)
5757
foreach (var attribute in cloudEvent.GetAttributes())
5858
{
5959
if (!attribute.Key.Equals(CloudEventAttributes.DataAttributeName(cloudEvent.SpecVersion)) &&
60-
!attribute.Key.Equals(CloudEventAttributes.ContentTypeAttributeName(cloudEvent.SpecVersion)))
60+
!attribute.Key.Equals(CloudEventAttributes.DataContentTypeAttributeName(cloudEvent.SpecVersion)))
6161
{
6262
if (attribute.Value is Uri)
6363
{

src/CloudNative.CloudEvents/CloudEvent.cs

+48-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class CloudEvent
2626
/// <param name="time">'time' of the CloudEvent</param>
2727
/// <param name="extensions">Extensions to be added to this CloudEvents</param>
2828
public CloudEvent(string type, Uri source, string id = null, DateTime? time = null,
29-
params ICloudEventExtension[] extensions) : this(CloudEventsSpecVersion.V0_2, type, source, id, time, extensions)
29+
params ICloudEventExtension[] extensions) : this(CloudEventsSpecVersion.Default, type, source, id, time, extensions)
3030
{
3131
}
3232

@@ -48,6 +48,22 @@ public CloudEvent(CloudEventsSpecVersion specVersion, string type, Uri source, s
4848
Time = time ?? DateTime.UtcNow;
4949
}
5050

51+
/// <summary>
52+
/// Create a new CloudEvent instance.
53+
/// </summary>
54+
/// <param name="specVersion">CloudEvents specification version</param>
55+
/// <param name="type">'type' of the CloudEvent</param>
56+
/// <param name="source">'source' of the CloudEvent</param>
57+
/// <param name="subject">'subject' of the CloudEvent</param>
58+
/// <param name="id">'id' of the CloudEvent</param>
59+
/// <param name="time">'time' of the CloudEvent</param>
60+
/// <param name="extensions">Extensions to be added to this CloudEvents</param>
61+
public CloudEvent(CloudEventsSpecVersion specVersion, string type, Uri source, string subject, string id = null, DateTime? time = null,
62+
params ICloudEventExtension[] extensions) : this(specVersion, type, source, id, time, extensions)
63+
{
64+
Subject = subject;
65+
}
66+
5167
/// <summary>
5268
/// Create a new CloudEvent instance
5369
/// </summary>
@@ -68,15 +84,32 @@ internal CloudEvent(CloudEventsSpecVersion specVersion, IEnumerable<ICloudEventE
6884
}
6985

7086
/// <summary>
71-
/// CloudEvent 'contenttype' attribute. Content type of the 'data' attribute value.
87+
/// CloudEvent 'datacontenttype' attribute. Content type of the 'data' attribute value.
7288
/// This attribute enables the data attribute to carry any type of content, whereby
7389
/// format and encoding might differ from that of the chosen event format.
7490
/// </summary>
75-
/// <see cref="https://github.com/cloudevents/spec/blob/master/spec.md#contenttype"/>
91+
/// <see cref="https://github.com/cloudevents/spec/blob/master/spec.md#datacontenttype"/>
92+
public ContentType DataContentType
93+
{
94+
get => attributes[CloudEventAttributes.DataContentTypeAttributeName(attributes.SpecVersion)] as ContentType;
95+
set => attributes[CloudEventAttributes.DataContentTypeAttributeName(attributes.SpecVersion)] = value;
96+
}
97+
98+
/// <summary>
99+
/// CloudEvent 'datacontentencoding' attribute.
100+
/// </summary>
101+
/// <see cref="https://github.com/cloudevents/spec/blob/master/spec.md#datacontentencoding"/>
102+
public string DataContentEncoding
103+
{
104+
get => attributes[CloudEventAttributes.DataContentEncodingAttributeName(attributes.SpecVersion)] as string;
105+
set => attributes[CloudEventAttributes.DataContentEncodingAttributeName(attributes.SpecVersion)] = value;
106+
}
107+
108+
[Obsolete("Cloud events 0.1 and 0.2 name replaced by 'DataContentType1'. Will be removed in an upcoming release.")]
76109
public ContentType ContentType
77110
{
78-
get => attributes[CloudEventAttributes.ContentTypeAttributeName(attributes.SpecVersion)] as ContentType;
79-
set => attributes[CloudEventAttributes.ContentTypeAttributeName(attributes.SpecVersion)] = value;
111+
get => DataContentType;
112+
set => DataContentType = value;
80113
}
81114

82115
/// <summary>
@@ -119,6 +152,16 @@ public Uri SchemaUrl
119152
set => attributes[CloudEventAttributes.SchemaUrlAttributeName(attributes.SpecVersion)] = value;
120153
}
121154

155+
/// <summary>
156+
/// CloudEvents 'subject' attribute.
157+
/// </summary>
158+
/// <see cref="https://github.com/cloudevents/spec/blob/master/spec.md#subject"/>
159+
public string Subject
160+
{
161+
get => attributes[CloudEventAttributes.SubjectAttributeName(attributes.SpecVersion)] as string;
162+
set => attributes[CloudEventAttributes.SubjectAttributeName(attributes.SpecVersion)] = value;
163+
}
164+
122165
/// <summary>
123166
/// CloudEvents 'source' attribute. This describes the event producer. Often this
124167
/// will include information such as the type of the event source, the

src/CloudNative.CloudEvents/CloudEventAttributes.cs

+62-11
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ internal CloudEventAttributes(CloudEventsSpecVersion specVersion, IEnumerable<IC
2525
{
2626
this.extensions = extensions;
2727
this.specVersion = specVersion;
28-
dict[SpecVersionAttributeName(specVersion)] = specVersion == CloudEventsSpecVersion.V0_1 ? "0.1" : "0.2";
28+
dict[SpecVersionAttributeName(specVersion)] =
29+
specVersion == CloudEventsSpecVersion.V0_1 ? "0.1" :
30+
specVersion == CloudEventsSpecVersion.V0_2 ? "0.2" : "0.3";
2931
}
3032

3133
int ICollection<KeyValuePair<string, object>>.Count => dict.Count;
@@ -42,9 +44,12 @@ public CloudEventsSpecVersion SpecVersion
4244
{
4345
object val;
4446
if (dict.TryGetValue(SpecVersionAttributeName(CloudEventsSpecVersion.V0_1), out val) ||
45-
dict.TryGetValue(SpecVersionAttributeName(CloudEventsSpecVersion.V0_2), out val))
47+
dict.TryGetValue(SpecVersionAttributeName(CloudEventsSpecVersion.V0_2), out val) ||
48+
dict.TryGetValue(SpecVersionAttributeName(CloudEventsSpecVersion.V0_3), out val))
4649
{
47-
return (val as string) == "0.1" ? CloudEventsSpecVersion.V0_1 : CloudEventsSpecVersion.V0_2;
50+
return (val as string) == "0.1" ? CloudEventsSpecVersion.V0_1 :
51+
(val as string) == "0.2" ? CloudEventsSpecVersion.V0_2 :
52+
CloudEventsSpecVersion.V0_3;
4853
}
4954

5055
return CloudEventsSpecVersion.Default;
@@ -60,27 +65,40 @@ public CloudEventsSpecVersion SpecVersion
6065
return;
6166
}
6267
}
63-
else if ( dict.TryGetValue(SpecVersionAttributeName(CloudEventsSpecVersion.V0_2), out val))
68+
else if (dict.TryGetValue(SpecVersionAttributeName(CloudEventsSpecVersion.V0_2), out val))
6469
{
6570
if (value == CloudEventsSpecVersion.V0_2 && (val as string) == "0.2")
6671
{
6772
return;
6873
}
6974
}
75+
else if (dict.TryGetValue(SpecVersionAttributeName(CloudEventsSpecVersion.V0_3), out val))
76+
{
77+
if (value == CloudEventsSpecVersion.V0_3 && (val as string) == "0.3")
78+
{
79+
return;
80+
}
81+
}
7082

7183
// transform to new version
7284
var copy = new Dictionary<string, object>(dict);
7385
dict.Clear();
74-
dict[SpecVersionAttributeName(value)] = value == CloudEventsSpecVersion.V0_1 ? "0.1" : "0.2";
86+
dict[SpecVersionAttributeName(value)] =
87+
value == CloudEventsSpecVersion.V0_1 ? "0.1" :
88+
value == CloudEventsSpecVersion.V0_2 ? "0.2" : "0.3";
7589
foreach (var kv in copy)
7690
{
7791
if (SpecVersionAttributeName(currentSpecVersion).Equals(kv.Key))
7892
{
7993
continue;
8094
}
81-
if (ContentTypeAttributeName(currentSpecVersion).Equals(kv.Key))
95+
if (DataContentTypeAttributeName(currentSpecVersion).Equals(kv.Key))
96+
{
97+
dict[DataContentTypeAttributeName(value)] = kv.Value;
98+
}
99+
if (DataContentEncodingAttributeName(currentSpecVersion).Equals(kv.Key))
82100
{
83-
dict[ContentTypeAttributeName(value)] = kv.Value;
101+
dict[DataContentEncodingAttributeName(value)] = kv.Value;
84102
}
85103
else if (DataAttributeName(currentSpecVersion).Equals(kv.Key))
86104
{
@@ -98,6 +116,10 @@ public CloudEventsSpecVersion SpecVersion
98116
{
99117
dict[SourceAttributeName(value)] = kv.Value;
100118
}
119+
else if (SubjectAttributeName(currentSpecVersion).Equals(kv.Key))
120+
{
121+
dict[SubjectAttributeName(value)] = kv.Value;
122+
}
101123
else if (TimeAttributeName(currentSpecVersion).Equals(kv.Key))
102124
{
103125
dict[TimeAttributeName(value)] = kv.Value;
@@ -110,7 +132,7 @@ public CloudEventsSpecVersion SpecVersion
110132
{
111133
dict[kv.Key] = kv.Value;
112134
}
113-
}
135+
}
114136
}
115137
}
116138

@@ -124,9 +146,16 @@ public object this[string key]
124146
}
125147
}
126148

127-
public static string ContentTypeAttributeName(CloudEventsSpecVersion version = CloudEventsSpecVersion.Default)
149+
public static string DataContentTypeAttributeName(CloudEventsSpecVersion version = CloudEventsSpecVersion.Default)
128150
{
129-
return version == CloudEventsSpecVersion.V0_1 ? "contentType" : "contenttype";
151+
return version == CloudEventsSpecVersion.V0_1 ? "contentType" :
152+
version == CloudEventsSpecVersion.V0_2 ? "contenttype" :
153+
"datacontenttype";
154+
}
155+
156+
public static string DataContentEncodingAttributeName(CloudEventsSpecVersion version = CloudEventsSpecVersion.Default)
157+
{
158+
return "datacontentencoding";
130159
}
131160

132161
public static string DataAttributeName(CloudEventsSpecVersion version = CloudEventsSpecVersion.Default)
@@ -149,6 +178,11 @@ public static string SourceAttributeName(CloudEventsSpecVersion version = CloudE
149178
return "source";
150179
}
151180

181+
public static string SubjectAttributeName(CloudEventsSpecVersion version = CloudEventsSpecVersion.Default)
182+
{
183+
return "subject";
184+
}
185+
152186
public static string SpecVersionAttributeName(CloudEventsSpecVersion version = CloudEventsSpecVersion.Default)
153187
{
154188
return version == CloudEventsSpecVersion.V0_1 ? "cloudEventsVersion" : "specversion";
@@ -288,6 +322,15 @@ internal virtual bool ValidateAndNormalize(string key, ref object value)
288322

289323
throw new InvalidOperationException(Strings.ErrorSchemaUrlIsNotAUri);
290324
}
325+
else if (key.Equals(SubjectAttributeName(this.SpecVersion)))
326+
{
327+
if (value is null || value is string)
328+
{
329+
return true;
330+
}
331+
332+
throw new InvalidOperationException(Strings.ErrorSchemaUrlIsNotAUri);
333+
}
291334
else if (key.Equals(SchemaUrlAttributeName(this.SpecVersion)))
292335
{
293336
if (value is null || value is Uri)
@@ -306,7 +349,7 @@ internal virtual bool ValidateAndNormalize(string key, ref object value)
306349

307350
throw new InvalidOperationException(Strings.ErrorSchemaUrlIsNotAUri);
308351
}
309-
else if (key.Equals(ContentTypeAttributeName(this.SpecVersion)))
352+
else if (key.Equals(DataContentTypeAttributeName(this.SpecVersion)))
310353
{
311354
if (value is null || value is ContentType)
312355
{
@@ -328,6 +371,14 @@ internal virtual bool ValidateAndNormalize(string key, ref object value)
328371

329372
throw new InvalidOperationException(Strings.ErrorContentTypeIsNotRFC2046);
330373
}
374+
else if (key.Equals(DataContentEncodingAttributeName(this.SpecVersion)))
375+
{
376+
if (value is null || value is string)
377+
{
378+
return true;
379+
}
380+
throw new InvalidOperationException(Strings.ErrorDataContentEncodingIsNotAString);
381+
}
331382
else if (key.Equals(DataAttributeName(this.SpecVersion)))
332383
{
333384
return true;

src/CloudNative.CloudEvents/CloudEventContent.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public CloudEventContent(CloudEvent cloudEvent, ContentMode contentMode, ICloudE
5555
cloudEvent.Data, cloudEvent.Extensions.Values));
5656
}
5757

58-
Headers.ContentType = new MediaTypeHeaderValue(cloudEvent.ContentType?.MediaType);
58+
Headers.ContentType = new MediaTypeHeaderValue(cloudEvent.DataContentType?.MediaType);
5959
MapHeaders(cloudEvent);
6060
}
6161

@@ -80,7 +80,7 @@ void MapHeaders(CloudEvent cloudEvent)
8080
foreach (var attribute in cloudEvent.GetAttributes())
8181
{
8282
if (!(attribute.Key.Equals(CloudEventAttributes.DataAttributeName(cloudEvent.SpecVersion)) ||
83-
attribute.Key.Equals(CloudEventAttributes.ContentTypeAttributeName(cloudEvent.SpecVersion))))
83+
attribute.Key.Equals(CloudEventAttributes.DataContentTypeAttributeName(cloudEvent.SpecVersion))))
8484
{
8585
if (attribute.Value is string)
8686
{

src/CloudNative.CloudEvents/CloudEventsSpecVersion.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public enum CloudEventsSpecVersion
88
{
99
V0_1,
1010
V0_2,
11-
Default = V0_2
11+
V0_3,
12+
Default = V0_3
1213
}
1314
}

0 commit comments

Comments
 (0)