Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
8f5bb09d
Commit
8f5bb09d
authored
May 06, 2018
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement FunctionParam, a zero-alloc, non-template way of accepting a lambda.
parent
63e28343
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
103 additions
and
0 deletions
+103
-0
function-test.c++
c++/src/kj/function-test.c++
+46
-0
function.h
c++/src/kj/function.h
+57
-0
No files found.
c++/src/kj/function-test.c++
View file @
8f5bb09d
...
...
@@ -117,5 +117,51 @@ TEST(ConstFunction, Method) {
EXPECT_EQ
(
9
+
2
+
5
,
f
(
2
,
9
));
}
int
testFunctionParam
(
FunctionParam
<
int
(
char
,
bool
)
>
func
,
char
c
,
bool
b
)
{
return
func
(
c
,
b
);
}
int
testFunctionParamRecursive
(
FunctionParam
<
int
(
char
,
bool
)
>
func
,
char
c
,
bool
b
)
{
return
testFunctionParam
(
func
,
c
,
b
);
}
KJ_TEST
(
"FunctionParam"
)
{
{
int
i
=
123
;
int
result
=
testFunctionParam
([
i
](
char
c
,
bool
b
)
{
KJ_EXPECT
(
c
==
'x'
);
KJ_EXPECT
(
b
);
KJ_EXPECT
(
i
==
123
);
return
456
;
},
'x'
,
true
);
KJ_EXPECT
(
result
==
456
);
}
{
int
i
=
123
;
auto
func
=
[
i
](
char
c
,
bool
b
)
{
KJ_EXPECT
(
c
==
'x'
);
KJ_EXPECT
(
b
);
KJ_EXPECT
(
i
==
123
);
return
456
;
};
int
result
=
testFunctionParam
(
func
,
'x'
,
true
);
KJ_EXPECT
(
result
==
456
);
}
{
int
i
=
123
;
int
result
=
testFunctionParamRecursive
([
i
](
char
c
,
bool
b
)
{
KJ_EXPECT
(
c
==
'x'
);
KJ_EXPECT
(
b
);
KJ_EXPECT
(
i
==
123
);
return
456
;
},
'x'
,
true
);
KJ_EXPECT
(
result
==
456
);
}
}
}
// namespace
}
// namespace kj
c++/src/kj/function.h
View file @
8f5bb09d
...
...
@@ -89,6 +89,15 @@ template <typename Signature>
class
ConstFunction
;
// Like Function, but wraps a "const" (i.e. thread-safe) call.
template
<
typename
Signature
>
class
FunctionParam
;
// Like Function, but used specifically as a call parameter type. Does not do any heap allocation.
//
// This type MUST NOT be used for anything other than a parameter type to a function or method.
// This is because if FunctionParam binds to a temporary, it assumes that the temporary will
// outlive the FunctionParam instance. This is true when FunctionParam is used as a parameter type,
// but not if it is used as a local variable nor a class member variable.
template
<
typename
Return
,
typename
...
Params
>
class
Function
<
Return
(
Params
...)
>
{
public
:
...
...
@@ -195,6 +204,54 @@ private:
Own
<
Iface
>
impl
;
};
template
<
typename
Return
,
typename
...
Params
>
class
FunctionParam
<
Return
(
Params
...)
>
{
public
:
template
<
typename
Func
>
FunctionParam
(
Func
&&
func
)
{
typedef
Wrapper
<
Decay
<
Func
>>
WrapperType
;
// All instances of Wrapper<Func> are two pointers in size: a vtable, and a Func&. So if we
// allocate space for two pointers, we can construct a Wrapper<Func> in it!
static_assert
(
sizeof
(
WrapperType
)
==
sizeof
(
space
));
// Even if `func` is an rvalue reference, it's OK to use it as an lvalue here, because
// FunctionParam is used strictly for parameters. If we captured a temporary, we know that
// temporary will not be destroyed until after the function call completes.
ctor
(
*
reinterpret_cast
<
WrapperType
*>
(
space
),
func
);
}
FunctionParam
(
const
FunctionParam
&
other
)
=
default
;
FunctionParam
(
FunctionParam
&
other
)
=
default
;
FunctionParam
(
FunctionParam
&&
other
)
=
default
;
// Magically, a plain copy works.
inline
Return
operator
()(
Params
...
params
)
{
return
(
*
reinterpret_cast
<
WrapperBase
*>
(
space
))(
kj
::
fwd
<
Params
>
(
params
)...);
}
private
:
void
*
space
[
2
];
class
WrapperBase
{
public
:
virtual
Return
operator
()(
Params
...
params
)
=
0
;
};
template
<
typename
Func
>
class
Wrapper
:
public
WrapperBase
{
public
:
Wrapper
(
Func
&
func
)
:
func
(
func
)
{}
inline
Return
operator
()(
Params
...
params
)
override
{
return
func
(
kj
::
fwd
<
Params
>
(
params
)...);
}
private
:
Func
&
func
;
};
};
#if 1
namespace
_
{
// private
...
...
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