2017-05-26 04:48:44 +08:00
|
|
|
/*
|
|
|
|
* actorcompiler.h
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* 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
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-08-26 23:47:50 +08:00
|
|
|
#ifdef POST_ACTOR_COMPILER
|
|
|
|
#ifndef FLOW_DEFINED_WAIT_AND_WAIT_NEXT
|
|
|
|
#define FLOW_DEFINED_WAIT_AND_WAIT_NEXT
|
|
|
|
|
|
|
|
// These should all be re-written by the actor compiler. We don't want to
|
|
|
|
// accidentally call them from something that's not an actor. `wait` is such a
|
|
|
|
// common identifier that `wait` calls outside ACTORs might accidentally
|
|
|
|
// compile.
|
|
|
|
template <class T>
|
|
|
|
T wait(const Future<T>&) = delete;
|
|
|
|
void wait(const Never&) = delete;
|
|
|
|
template <class T>
|
|
|
|
T waitNext(const FutureStream<T>&) = delete;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-05-26 04:48:44 +08:00
|
|
|
#ifndef POST_ACTOR_COMPILER
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
template <typename T>
|
|
|
|
struct Future;
|
2018-08-11 05:03:24 +08:00
|
|
|
struct Never;
|
2021-03-11 02:06:03 +08:00
|
|
|
template <typename T>
|
|
|
|
struct FutureStream;
|
2017-05-26 04:48:44 +08:00
|
|
|
|
|
|
|
// These are for intellisense to do proper type inferring, etc. They are no included at build time.
|
|
|
|
#ifndef NO_INTELLISENSE
|
|
|
|
#define ACTOR
|
|
|
|
#define DESCR
|
|
|
|
#define state
|
|
|
|
#define UNCANCELLABLE
|
2021-03-11 02:06:03 +08:00
|
|
|
#define choose if (1)
|
|
|
|
#define when(...) for (__VA_ARGS__;;)
|
|
|
|
template <class T>
|
|
|
|
T wait(const Future<T>&);
|
2018-08-11 05:03:24 +08:00
|
|
|
void wait(const Never&);
|
2021-03-11 02:06:03 +08:00
|
|
|
template <class T>
|
|
|
|
T waitNext(const FutureStream<T>&);
|
2017-05-26 04:48:44 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
#define loop while (true)
|
2017-05-26 04:48:44 +08:00
|
|
|
|
2019-02-20 05:21:33 +08:00
|
|
|
#ifdef NO_INTELLISENSE
|
|
|
|
#define THIS this
|
|
|
|
#define THIS_ADDR uintptr_t(this)
|
|
|
|
#else
|
|
|
|
#define THIS nullptr
|
|
|
|
#define THIS_ADDR uintptr_t(nullptr)
|
|
|
|
#endif
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
#pragma warning(disable : 4355) // 'this' : used in base member initializer list
|