blob: b4793befb430cd9e8d840da28f4cc054ed66181c [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.
*/
#ifndef WEEX_PROJECT_SCRIPT_SIDE_IN_MULTI_PROCESS_H
#define WEEX_PROJECT_SCRIPT_SIDE_IN_MULTI_PROCESS_H
#include "core/bridge/script_bridge.h"
class IPCSender;
namespace WeexCore {
namespace bridge {
namespace script {
class ScriptSideInMultiProcess : public ScriptBridge::ScriptSide {
public:
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;
ScriptSideInMultiProcess();
virtual ~ScriptSideInMultiProcess();
inline void set_sender(IPCSender *sender) { sender_ = sender; }
private:
IPCSender *sender_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(ScriptSideInMultiProcess);
};
} // namespace script
} // namespace bridge
} // namespace WeexCore
#endif // WEEX_PROJECT_SCRIPT_SIDE_IN_MULTI_PROCESS_H