source: libcfa/src/containers/result.cfa@ f9b68d6

ADT ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since f9b68d6 was fd54fef, checked in by Michael Brooks <mlbrooks@…>, 5 years ago

Converting the project to use the new syntax for otype, dtype and ttytpe.

Changed prelude (gen), libcfa and test suite to use it. Added a simple deprecation rule of the old syntax to the parser; we might wish to support both syntaxes "officially," like with an extra CLI switch, but this measure should serve as a simple reminder for our team to try the new syntax.

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[79308c8e]1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// result.c -- Contains the expected value or an error value.
8//
9// Author : Andrew Beach
[58daf53]10// Created On : Wed May 24 15:40:00 2017
[91c389a]11// Last Modified By : Peter A. Buhr
[ee06e41b]12// Last Modified On : Sun Feb 17 11:24:04 2019
13// Update Count : 3
[79308c8e]14//
15
[58b6d1b]16#include <containers/result.hfa>
[91c389a]17#include <assert.h>
[79308c8e]18
19
[fd54fef]20forall(T, E)
[242a902]21void ?{}(result(T, E) & this) {
22 this.has_value = false;
23 (this.error){};
[79308c8e]24}
25
[fd54fef]26forall(T, E)
[242a902]27void ?{}(result(T, E) & this, one_t, T value) {
28 this.has_value = true;
29 (this.value){value};
[79308c8e]30}
31
[fd54fef]32forall(T, E)
[242a902]33void ?{}(result(T, E) & this, zero_t, E error) {
34 this.has_value = false;
35 (this.error){error};
[79308c8e]36}
37
[fd54fef]38forall(T, E)
[242a902]39void ?{}(result(T, E) & this, result(T, E) other) {
40 this.has_value = other.has_value;
[79308c8e]41 if (other.has_value) {
[242a902]42 (this.value){other.value};
[79308c8e]43 } else {
[242a902]44 (this.error){other.error};
[58daf53]45 }
46}
47
[fd54fef]48forall(T, E)
[242a902]49result(T, E) ?=?(result(T, E) & this, result(T, E) that) {
[ee06e41b]50 if (this.has_value && that.has_value) {
[242a902]51 this.value = that.value;
52 } else if (this.has_value) {
53 ^(this.value){};
54 this.has_value = false;
55 (this.error){that.error};
[58daf53]56 } else if (that.has_value) {
[242a902]57 ^(this.error){};
58 this.has_value = true;
59 (this.value){that.value};
[58daf53]60 } else {
[242a902]61 this.error = that.error;
[79308c8e]62 }
63}
64
[fd54fef]65forall(T, E)
[242a902]66void ^?{}(result(T, E) & this) {
67 if (this.has_value) {
68 ^(this.value){};
[79308c8e]69 } else {
[242a902]70 ^(this.error){};
[79308c8e]71 }
72}
73
[fd54fef]74forall(T, E)
[64fc0ba]75bool ?!=?(result(T, E) this, zero_t) {
[20877d2]76 return this.has_value;
[79308c8e]77}
78
[fd54fef]79forall(T, E)
[79308c8e]80result(T, E) result_value(T value) {
[64fc0ba]81 return (result(T, E)){1, value};
[79308c8e]82}
83
[fd54fef]84forall(T, E)
[79308c8e]85result(T, E) result_error(E error) {
[64fc0ba]86 return (result(T, E)){0, error};
[79308c8e]87}
88
[fd54fef]89forall(T, E)
[64fc0ba]90bool has_value(result(T, E) * this) {
[79308c8e]91 return this->has_value;
92}
93
[fd54fef]94forall(T, E)
[79308c8e]95T get(result(T, E) * this) {
[64fc0ba]96 assertf(this->has_value, "attempt to get from result without value");
[79308c8e]97 return this->value;
98}
99
[fd54fef]100forall(T, E)
[79308c8e]101E get_error(result(T, E) * this) {
[20877d2]102 assertf(!this->has_value, "attempt to get from result without error");
[79308c8e]103 return this->error;
104}
[58daf53]105
[fd54fef]106forall(T, E)
[58daf53]107void set(result(T, E) * this, T value) {
108 if (this->has_value) {
109 this->value = value;
110 } else {
[242a902]111 ^(this->error){};
[58daf53]112 this->has_value = true;
[242a902]113 (this->value){value};
[58daf53]114 }
115}
116
[fd54fef]117forall(T, E)
[58daf53]118void set_error(result(T, E) * this, E error) {
119 if (this->has_value) {
[242a902]120 ^(this->value){};
[58daf53]121 this->has_value = false;
[242a902]122 (this->error){error};
[58daf53]123 } else {
124 this->error = error;
125 }
126}
Note: See TracBrowser for help on using the repository browser.