blob: bd7faa0c8a349f2df205b7c5d764d996f7ae3bb0 [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_SO_H
#define WEEX_PROJECT_SCRIPT_SIDE_IN_MULTI_SO_H
#include "core/bridge/script_bridge.h"
namespace WeexCore {
namespace bridge {
namespace script {
class ScriptSideInMultiSo : 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 ;
ScriptSideInMultiSo();
virtual ~ScriptSideInMultiSo();
inline void set_script_side_functions(FunctionsExposedByJS *functions) {
script_side_functions_ = functions;
}
private:
FunctionsExposedByJS *script_side_functions_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(ScriptSideInMultiSo);
};
} // namespace script
} // namespace bridge
} // namespace WeexCore
#endif // WEEX_PROJECT_SCRIPT_SIDE_IN_MULTI_SO_H