Merge pull request #420 from Barenboim/master

WFContainerTask->WFMailboxTask
This commit is contained in:
xiehan
2021-06-17 01:46:26 +08:00
committed by GitHub
2 changed files with 49 additions and 98 deletions

View File

@@ -1,98 +0,0 @@
/*
Copyright (c) 2020 Sogou, Inc.
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.
Author: Xie Han (xiehan@sogou-inc.com)
*/
#ifndef _WFCONTAINERTASK_H_
#define _WFCONTAINERTASK_H_
#include <string.h>
#include <functional>
#include <atomic>
#include <type_traits>
#include "WFTask.h"
template<typename T>
class WFContainerTask : public WFCounterTask
{
public:
void push(const T& value)
{
*this->cur++ = value;
this->WFCounterTask::count();
}
void push(T&& value)
{
*this->cur++ = std::move(value);
this->WFCounterTask::count();
}
T& operator[] (unsigned int n) { return this->value[n]; }
void push_empty()
{
T *cur = this->cur++;
if (std::is_pod<T>::value)
memset(cur, 0, sizeof (T));
this->WFCounterTask::count();
}
public:
void set_callback(std::function<void (WFContainerTask<T> *)> cb)
{
this->callback = std::move(cb);
}
protected:
virtual void count()
{
this->WFContainerTask::push_empty();
}
protected:
T *values;
std::atomic<T *> cur;
std::function<void (WFContainerTask<T> *)> callback;
private:
static void wrapper(WFCounterTask *task)
{
WFContainerTask<T> *container = static_cast<WFContainerTask *>(task);
container->callback(container);
}
public:
WFContainerTask(unsigned int size,
std::function<void (WFContainerTask<T> *)>&& cb) :
WFCounterTask(size, WFContainerTask<T>::wrapper),
callback(std::move(cb))
{
this->values = new T[size];
this->cur = this->values;
}
protected:
virtual ~WFContainerTask()
{
delete []this->values;
}
};
#endif

View File

@@ -556,6 +556,55 @@ protected:
virtual ~WFCounterTask() { }
};
class WFMailboxTask : public WFCounterTask
{
public:
void send(void *mail)
{
*this->next++ = mail;
this->count();
}
void *get_mail(size_t index) { return this->mailbox[index]; }
void **get_mailbox(size_t *count)
{
*count = this->next - this->mailbox;
return this->mailbox;
}
public:
void set_callback(std::function<void (WFMailboxTask *)> cb)
{
this->callback = std::move(cb);
}
protected:
void **mailbox;
std::atomic<void **> next;
std::function<void (WFMailboxTask *)> callback;
private:
static void callback_wrapper(WFCounterTask *task)
{
WFMailboxTask *mbt = (WFMailboxTask *)task;
mbt->callback(mbt);
}
public:
WFMailboxTask(void *mailbox[], size_t size,
std::function<void (WFMailboxTask *)>&& cb) :
WFCounterTask(size, WFMailboxTask::callback_wrapper),
next(mailbox),
callback(std::move(cb))
{
this->mailbox = mailbox;
}
protected:
virtual ~WFMailboxTask() { }
};
class WFGoTask : public ExecRequest
{
public: