[9d3a4cc] | 1 | \chapter{C Enumeration in \texorpdfstring{\CFA}{Cforall}} |
---|
[dd78dbc] | 2 | |
---|
[c4aca65] | 3 | \CFA supports legacy C enumeration using the same syntax for backward compatibility. |
---|
[a57ad8a] | 4 | A C-style enumeration in \CFA is called a \newterm{C Enum}. |
---|
| 5 | The semantics of the C Enum is mostly consistent with C with some restrictions. |
---|
[94643698] | 6 | The following sections detail all of my new contributions to enumerations in C. |
---|
[a57ad8a] | 7 | |
---|
[dd78dbc] | 8 | |
---|
[0c51c8b4] | 9 | \section{Visibility} |
---|
| 10 | \label{s:CVisibility} |
---|
[dd78dbc] | 11 | |
---|
| 12 | In C, unscoped enumerators present a \newterm{naming problem} when multiple enumeration types appear in the same scope with duplicate enumerator names. |
---|
[a57ad8a] | 13 | \begin{cfa} |
---|
| 14 | enum E1 { First, Second, Third, Fourth }; |
---|
| 15 | enum E2 { @Fourth@, @Third@, @Second@, @First@ }; $\C{// same enumerator names}$ |
---|
| 16 | \end{cfa} |
---|
[c1c0efdb] | 17 | There is no mechanism in C to resolve these naming conflicts other than renaming one of the duplicates, which may be impossible if the conflict comes from system include-files. |
---|
[dd78dbc] | 18 | |
---|
[29c8675] | 19 | The \CFA type-system allows extensive overloading, including enumerators. For example, enumerator First from E1 can exist at the scope as First from E2. |
---|
[a57ad8a] | 20 | Hence, most ambiguities among C enumerators are implicitly resolved by the \CFA type system, possibly without any programmer knowledge of the conflict. |
---|
[c1c0efdb] | 21 | In addition, C Enum qualification is added, exactly like aggregate field-qualification, to disambiguate. |
---|
[a57ad8a] | 22 | \VRef[Figure]{f:EnumeratorVisibility} shows how resolution, qualification, and casting are used to disambiguate situations for enumerations @E1@ and @E2@. |
---|
[dd78dbc] | 23 | |
---|
[29c8675] | 24 | Aside, name shadowing in \CFA only happens when a name has been redefined with the exact same type. Because an enumeration define its type and enumerators in one definition, |
---|
| 25 | and enumeration cannot be changed afterward, shadowing an enumerator is not possible (it is impossible to have another @First@ with same type @E1@.). |
---|
| 26 | |
---|
[dd78dbc] | 27 | \begin{figure} |
---|
| 28 | \begin{cfa} |
---|
[c141c09] | 29 | E1 f() { return Third; } $\C{// overload functions with different return types}$ |
---|
[dd78dbc] | 30 | E2 f() { return Fourth; } |
---|
| 31 | void g( E1 e ); |
---|
| 32 | void h( E2 e ); |
---|
| 33 | void foo() { $\C{// different resolutions and dealing with ambiguities}$ |
---|
| 34 | E1 e1 = First; E2 e2 = First; $\C{// initialization}$ |
---|
| 35 | e1 = Second; e2 = Second; $\C{// assignment}$ |
---|
| 36 | e1 = f(); e2 = f(); $\C{// function return}$ |
---|
| 37 | g( First ); h( First ); $\C{// function argument}$ |
---|
| 38 | int i = @E1.@First + @E2.@First; $\C{// disambiguate with qualification}$ |
---|
| 39 | int j = @(E1)@First + @(E2)@First; $\C{// disambiguate with cast}$ |
---|
| 40 | } |
---|
| 41 | \end{cfa} |
---|
| 42 | \caption{Enumerator Visibility and Disambiguating} |
---|
| 43 | \label{f:EnumeratorVisibility} |
---|
| 44 | \end{figure} |
---|
| 45 | |
---|
| 46 | |
---|
[0c51c8b4] | 47 | \section{Scoping} |
---|
[dd78dbc] | 48 | |
---|
[a57ad8a] | 49 | A C Enum can be scoped, using @'!'@, so the enumerator constants are not projected into the enclosing scope. |
---|
[dd78dbc] | 50 | \begin{cfa} |
---|
| 51 | enum Week @!@ { Mon, Tue, Wed, Thu = 10, Fri, Sat, Sun }; |
---|
| 52 | enum RGB @!@ { Red, Green, Blue }; |
---|
| 53 | \end{cfa} |
---|
| 54 | Now the enumerators \emph{must} be qualified with the associated enumeration type. |
---|
| 55 | \begin{cfa} |
---|
| 56 | Week week = @Week.@Mon; |
---|
| 57 | week = @Week.@Sat; |
---|
| 58 | RGB rgb = @RGB.@Red; |
---|
| 59 | rgb = @RGB.@Blue; |
---|
| 60 | \end{cfa} |
---|
[94643698] | 61 | % with feature unimplemented |
---|
[29c8675] | 62 | It is possible to introduce enumerators from a scoped enumeration to a block scope using the \CFA @with@ auto-qualification clause/statement (see also \CC \lstinline[language=c++]{using enum} in Section~\ref{s:C++RelatedWork}). |
---|
[dd78dbc] | 63 | \begin{cfa} |
---|
| 64 | with ( @Week@, @RGB@ ) { $\C{// type names}$ |
---|
| 65 | week = @Sun@; $\C{// no qualification}$ |
---|
| 66 | rgb = @Green@; |
---|
| 67 | } |
---|
| 68 | \end{cfa} |
---|
[0c51c8b4] | 69 | As in Section~\ref{s:CVisibility}, opening multiple scoped enumerations in a @with@ can result in duplicate enumeration names, but \CFA implicit type resolution and explicit qualification/casting handle this localized scenario. |
---|
[dd78dbc] | 70 | |
---|
| 71 | \section{Type Safety} |
---|
[c1c0efdb] | 72 | \label{s:TypeSafety} |
---|
[dd78dbc] | 73 | |
---|
[c141c09] | 74 | As in Section~\ref{s:Usage}, C's implicit bidirectional conversion between enumeration and integral type raises a safety concern. |
---|
[a57ad8a] | 75 | In \CFA, the conversion is changed to unidirectional: an enumeration can be implicitly converted into an integral type, with an associated @safe@ conversion cost. |
---|
[c4aca65] | 76 | However, an integral type cannot be implicitly converted into a C enumeration because the conversion cost is set to @infinity@. |
---|
[dd78dbc] | 77 | \begin{cfa} |
---|
[a57ad8a] | 78 | enum Bird { Penguin, Robin, Eagle }; |
---|
[dd78dbc] | 79 | enum Fish { Shark, Salmon, Whale }; |
---|
| 80 | |
---|
[94643698] | 81 | int i = Robin; $\C{// allow, implicitly converts to 1}$ |
---|
| 82 | enum Bird @bird = 1;@ $\C{// disallow }$ |
---|
| 83 | enum Bird @bird = Shark;@ $\C{// disallow }$ |
---|
[a57ad8a] | 84 | \end{cfa} |
---|
| 85 | It is now up to the programmer to insert an explicit cast to force the assignment. |
---|
| 86 | \begin{cfa} |
---|
| 87 | enum Bird bird = @(Bird)@1; |
---|
[94643698] | 88 | enum Bird bird = @(Bird)@Shark |
---|
[a57ad8a] | 89 | \end{cfa} |
---|
| 90 | |
---|
[508cff0] | 91 | Note, \CC has the same safe restriction and provides the same workaround cast: |
---|
| 92 | \begin{cquote} |
---|
| 93 | \begin{description}[leftmargin=*,topsep=0pt,itemsep=0pt,parsep=0pt] |
---|
[a57ad8a] | 94 | \item[Change:] \CC objects of enumeration type can only be assigned values of the same enumeration type. |
---|
| 95 | In C, objects of enumeration type can be assigned values of any integral type. |
---|
| 96 | Example: |
---|
| 97 | \begin{cfa} |
---|
| 98 | enum color { red, blue, green }; |
---|
| 99 | color c = 1; $\C{// valid C, invalid \CC}$ |
---|
[c141c09] | 100 | \end{cfa} |
---|
[a57ad8a] | 101 | \item[Rationale:] The type-safe nature of \CC. |
---|
| 102 | \item[Effect on original feature:] Deletion of semantically well-defined feature. |
---|
| 103 | \item[Difficulty of converting:] Syntactic transformation. (The type error produced by the assignment can be |
---|
| 104 | automatically corrected by applying an explicit cast.) |
---|
| 105 | \item[How widely used:] Common. |
---|
| 106 | \end{description} |
---|
[508cff0] | 107 | \hfill ISO/IEC 14882:1998 (\CC Programming Language Standard)~\cite[C.1.5.7.2.5]{ANSI98:C++} |
---|
| 108 | \end{cquote} |
---|