Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
typon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tom Niget
typon
Commits
dd0c0583
Commit
dd0c0583
authored
May 30, 2022
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename Future into Async
parent
0cfd93bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
28 deletions
+28
-28
rt/include/typon/core/async.hpp
rt/include/typon/core/async.hpp
+25
-25
rt/include/typon/core/fork.hpp
rt/include/typon/core/fork.hpp
+2
-2
rt/include/typon/typon.hpp
rt/include/typon/typon.hpp
+1
-1
No files found.
rt/include/typon/core/
future
.hpp
→
rt/include/typon/core/
async
.hpp
View file @
dd0c0583
#ifndef TYPON_CORE_
FUTURE
_HPP_INCLUDED
#define TYPON_CORE_
FUTURE
_HPP_INCLUDED
#ifndef TYPON_CORE_
ASYNC
_HPP_INCLUDED
#define TYPON_CORE_
ASYNC
_HPP_INCLUDED
#include <coroutine>
#include <memory>
...
...
@@ -15,7 +15,7 @@ namespace typon
{
template
<
typename
T
>
struct
Future
struct
Async
{
using
value_type
=
T
;
...
...
@@ -26,7 +26,7 @@ namespace typon
};
template
<
typename
Promise
>
Future
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
Async
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
{
if
(
ready
)
{
...
...
@@ -39,7 +39,7 @@ namespace typon
}
}
Future
(
Future
&&
other
)
noexcept
(
std
::
is_nothrow_move_constructible_v
<
T
>
)
Async
(
Async
&&
other
)
noexcept
(
std
::
is_nothrow_move_constructible_v
<
T
>
)
{
_result
=
other
.
_result
;
if
(
!
_result
)
...
...
@@ -48,12 +48,12 @@ namespace typon
}
}
Future
&
operator
=
(
Future
&&
other
)
Async
&
operator
=
(
Async
&&
other
)
noexcept
(
std
::
is_nothrow_move_constructible_v
<
T
>
)
{
if
(
this
!=
&
other
)
{
Future
old
{
std
::
move
(
*
this
)
};
Async
old
{
std
::
move
(
*
this
)
};
_result
=
other
.
_result
;
if
(
!
_result
)
{
...
...
@@ -63,7 +63,7 @@ namespace typon
return
*
this
;
}
~
Future
()
~
Async
()
{
if
(
!
_result
)
{
...
...
@@ -84,7 +84,7 @@ namespace typon
template
<
typename
T
>
requires
requires
{
sizeof
(
T
);
}
&&
(
sizeof
(
T
)
>
2
*
sizeof
(
void
*
))
struct
Future
<
T
>
struct
Async
<
T
>
{
using
value_type
=
T
;
...
...
@@ -92,7 +92,7 @@ namespace typon
std
::
coroutine_handle
<>
_coroutine
;
template
<
typename
Promise
>
Future
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
Async
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
{
_result
=
&
(
coroutine
.
promise
());
if
(
ready
)
...
...
@@ -105,22 +105,22 @@ namespace typon
}
}
Future
(
const
Future
&
)
=
delete
;
Future
&
operator
=
(
const
Future
&
)
=
delete
;
Async
(
const
Async
&
)
=
delete
;
Async
&
operator
=
(
const
Async
&
)
=
delete
;
Future
(
Future
&&
other
)
noexcept
Async
(
Async
&&
other
)
noexcept
:
_result
(
other
.
_result
)
,
_coroutine
(
std
::
exchange
(
other
.
_coroutine
,
nullptr
))
{}
Future
&
operator
=
(
Future
&&
other
)
noexcept
Async
&
operator
=
(
Async
&&
other
)
noexcept
{
std
::
swap
(
_coroutine
,
other
.
_coroutine
);
std
::
swap
(
_result
,
other
.
_result
);
return
*
this
;
}
~
Future
()
~
Async
()
{
if
(
_coroutine
)
{
...
...
@@ -137,7 +137,7 @@ namespace typon
template
<
typename
T
>
requires
std
::
is_trivially_copyable_v
<
T
>
struct
Future
<
T
>
struct
Async
<
T
>
{
using
value_type
=
T
;
...
...
@@ -148,7 +148,7 @@ namespace typon
};
template
<
typename
Promise
>
Future
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
Async
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
{
if
(
ready
)
{
...
...
@@ -161,10 +161,10 @@ namespace typon
}
}
Future
(
Future
&&
other
)
=
default
;
Future
&
operator
=
(
Future
&&
other
)
=
default
;
Async
(
Async
&&
other
)
=
default
;
Async
&
operator
=
(
Async
&&
other
)
=
default
;
~
Future
()
~
Async
()
{
if
(
!
_result
)
{
...
...
@@ -184,7 +184,7 @@ namespace typon
template
<
typename
T
>
struct
Future
<
T
&>
struct
Async
<
T
&>
{
using
value_type
=
T
&
;
...
...
@@ -192,7 +192,7 @@ namespace typon
T
*
_value
;
template
<
typename
Promise
>
Future
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
Async
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
{
if
(
ready
)
{
...
...
@@ -217,14 +217,14 @@ namespace typon
template
<
>
struct
Future
<
void
>
struct
Async
<
void
>
{
using
value_type
=
void
;
Result
<
void
>
*
_result
=
nullptr
;
template
<
typename
Promise
>
Future
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
Async
(
std
::
coroutine_handle
<
Promise
>
coroutine
,
bool
ready
)
{
if
(
ready
)
{
...
...
@@ -249,4 +249,4 @@ namespace typon
}
#endif // TYPON_
FUTURE
_HPP_INCLUDED
#endif // TYPON_
ASYNC
_HPP_INCLUDED
rt/include/typon/core/fork.hpp
View file @
dd0c0583
...
...
@@ -4,8 +4,8 @@
#include <coroutine>
#include <cstdint>
#include <typon/core/async.hpp>
#include <typon/core/continuation.hpp>
#include <typon/core/future.hpp>
#include <typon/core/result.hpp>
#include <typon/core/scheduler.hpp>
...
...
@@ -102,7 +102,7 @@ namespace typon
{
continuation
.
children
().
insert
(
_coroutine
);
}
return
Future
<
T
>
(
_coroutine
,
!
stolen
);
return
Async
<
T
>
(
_coroutine
,
!
stolen
);
}
};
...
...
rt/include/typon/typon.hpp
View file @
dd0c0583
...
...
@@ -3,8 +3,8 @@
#include <utility>
#include <typon/core/async.hpp>
#include <typon/core/fork.hpp>
#include <typon/core/future.hpp>
#include <typon/core/join.hpp>
#include <typon/core/root.hpp>
#include <typon/core/task.hpp>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment