blob: 2b7ecd1a175426f277999976566bee72247d1f26 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
//
// Created by Darin on 2018/7/22.
//
#ifndef WEEXV8_SCRIPT_SIDE_IN_QUEUE_H
#define WEEXV8_SCRIPT_SIDE_IN_QUEUE_H
#include "core/bridge/script_bridge.h"
#ifdef USE_JS_RUNTIME
#include "js_runtime/weex/task/weex_task_queue.h"
#else
#include "android/jsengine/task/weex_task_queue.h"
#endif
namespace weex {
namespace bridge {
namespace js {
class ScriptSideInQueue : public WeexCore::ScriptBridge::ScriptSide {
private:
WeexTaskQueue *weexTaskQueue_;
WeexTaskQueue *weexTaskQueue_bk_;
public:
explicit ScriptSideInQueue() : weexTaskQueue_(nullptr),
weexTaskQueue_bk_(nullptr) {};
explicit ScriptSideInQueue(WeexTaskQueue *taskQueue) : weexTaskQueue_bk_(
nullptr) { weexTaskQueue_ = taskQueue; }
public:
void setTaskQueue(WeexTaskQueue *taskQueue) { weexTaskQueue_ = taskQueue; }
int InitFramework(const char *script,
std::vector<INIT_FRAMEWORK_PARAMS *> &params) override;
int InitAppFramework(const char *instanceId, const char *appFramework,
std::vector<INIT_FRAMEWORK_PARAMS *> &params) override;
int CreateAppContext(const char *instanceId, const char *jsBundle) override;
std::unique_ptr<WeexJSResult> ExecJSOnAppWithResult(const char *instanceId,
const char *jsBundle) override;
int CallJSOnAppContext(const char *instanceId, const char *func,
std::vector<VALUE_WITH_TYPE *> &params) override;
int DestroyAppContext(const char *instanceId) override;
int ExecJsService(const char *source) override;
int ExecTimeCallback(const char *source) override;
int ExecJS(const char *instanceId, const char *nameSpace, const char *func,
std::vector<VALUE_WITH_TYPE *> &params) override;
std::unique_ptr<WeexJSResult>
ExecJSWithResult(const char *instanceId, const char *nameSpace,
const char *func,
std::vector<VALUE_WITH_TYPE *> &params) override;
void ExecJSWithCallback(const char *instanceId, const char *nameSpace,
const char *func,
std::vector<VALUE_WITH_TYPE *> &params,
long callback_id) override;
int CreateInstance(const char *instanceId, const char *func,
const char *script, const char *opts, const char *initData,
const char *extendsApi,
std::vector<INIT_FRAMEWORK_PARAMS *> &params) override;
std::unique_ptr<WeexJSResult>
ExecJSOnInstance(const char *instanceId, const char *script,int type) override;
int DestroyInstance(const char *instanceId) override;
int UpdateGlobalConfig(const char *config) override;
int UpdateInitFrameworkParams(const std::string& key, const std::string& value, const std::string& desc) override;
void SetLogType(const int logLevel, const bool isPerf) override;
private:
std::vector<std::string> usingBackThreadId;
void useBackUpWeexRuntime(std::string id);
bool shouldUseBackUpWeexRuntime(std::string id);
void deleteBackUpRuntimeInstance(std::string id);
WeexTaskQueue *taskQueue(const char *id, bool log);
};
} // namespace js
} // namespace bridge
} // namespace weex
#endif //WEEXV8_SCRIPT_SIDE_IN_QUEUE_H