forked from jamescourtney/FlatSharp
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathUnionsExample.cs
More file actions
87 lines (74 loc) · 2.81 KB
/
Copy pathUnionsExample.cs
File metadata and controls
87 lines (74 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
* Copyright 2020 James Courtney
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Samples.Unions;
/// <summary>
/// This example shows how to use FlatSharp with unions. FlatBuffer unions are
/// discriminated unions, which means exactly one of the fields may be set.
///
/// FlatSharp suppo
/// </summary>
public class UnionsExample : IFlatSharpSample
{
public bool HasConsoleOutput => false;
public void Run()
{
Cat simon = new Cat { Breed = CatBreed.Bengal, Name = "Simon" };
Dog george = new Dog { Breed = DogBreed.Corgi, Name = "George" };
Fish brick = new Fish { Kind = FishKind.Puffer, Name = "Brick" };
// A person can only have one pet. It can be a cat, dog, or fish.
// This person has a dog named George. They've also known Simon the cat
// and Brick the fish
Person person = new Person
{
Pet = new Pet(george),
PreviousPets = new[] { new Pet(simon), new Pet(brick) }
};
Pet pet = person.Pet.Value;
// Each union has an internal enum with the general cases.
if (pet.Kind == Pet.ItemKind.Doggo)
{
Dog dog = pet.Doggo;
string? lowerName = dog.Name?.ToLowerInvariant();
}
Assert.True(!pet.TryGet(out Cat? cat), "This pet is a dog, so this method will return false");
// Accessing .Cat directly will throw because this is a Dog.
Assert.Throws<InvalidOperationException>(() => Console.WriteLine(pet.Cat.Name));
// Finally, each union can accept a visitor. Using structs as visitors
// will allow you to benefit from devirtualization if performance is a concern.
string? name = pet.Accept<PetNameVisitor, string?>(new PetNameVisitor());
Console.WriteLine($"Pet name: {name}");
}
// Pet.Visitor<string?> implements IFlatBufferUnionVisitor<string?, Dog, Cat, Fish, string>
public struct PetNameVisitor : Pet.Visitor<string?>
{
public string? Visit(Dog item)
{
return item.Name;
}
public string? Visit(Cat item)
{
return item.Name;
}
public string? Visit(Fish item)
{
return item.Name;
}
public string? Visit(string item)
{
return item;
}
}
}