-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In photon context, event engine based module need reset after fork, if exec will not be called after fork. This is implicitly done by pthread_atfork hook. Signed-off-by: yuchen.cc <yuchen.cc@alibaba-inc.com>
- Loading branch information
Showing
11 changed files
with
451 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
Copyright 2022 The Photon Authors | ||
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 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
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. | ||
*/ | ||
|
||
#include "resettable_ee.h" | ||
#include <photon/common/alog.h> | ||
#include <pthread.h> | ||
|
||
namespace photon { | ||
|
||
static thread_local bool registed = false; | ||
|
||
static intrusive_list<ResettableEventEngine> &ree_list() { | ||
static thread_local intrusive_list<ResettableEventEngine> list; | ||
return list; | ||
} | ||
|
||
void fork_hook_event_engine() { | ||
if (!registed || ree_list().empty()) | ||
return; | ||
LOG_INFO("reset event engine at fork"); | ||
for (auto ree : ree_list()) { | ||
LOG_DEBUG("reset event engine ", VALUE(ree)); | ||
ree->reset(); | ||
} | ||
} | ||
|
||
ResettableEventEngine::ResettableEventEngine() { | ||
if (!registed) { | ||
pthread_atfork(nullptr, nullptr, &fork_hook_event_engine); | ||
registed = true; | ||
} | ||
LOG_DEBUG("push ", VALUE(this)); | ||
ree_list().push_back(this); | ||
} | ||
|
||
ResettableEventEngine::~ResettableEventEngine() { | ||
LOG_DEBUG("erase ", VALUE(this)); | ||
ree_list().erase(this); | ||
} | ||
|
||
} // namespace photon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
Copyright 2022 The Photon Authors | ||
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 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
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. | ||
*/ | ||
|
||
#pragma once | ||
#include <photon/thread/list.h> | ||
|
||
namespace photon { | ||
|
||
class ResettableEventEngine : public intrusive_list_node<ResettableEventEngine> { | ||
public: | ||
ResettableEventEngine(); | ||
virtual ~ResettableEventEngine(); | ||
|
||
virtual int reset() = 0; | ||
}; | ||
|
||
} // namespace photon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.