@hippy/debug-server-next
Version:
Debug server for hippy.
57 lines (56 loc) • 2.36 kB
JavaScript
;
/*
* Tencent is pleased to support the open source community by making
* Hippy available.
*
* Copyright (C) 2017-2019 THL A29 Limited, a Tencent company.
* All rights reserved.
*
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.traceMiddleWareManager = void 0;
const tslib_1 = require("tslib");
const types_1 = require("@hippy/devtools-protocol/dist/types");
const log_1 = require("@debug-server-next/utils/log");
const global_id_1 = require("@debug-server-next/utils/global-id");
const trace_adapter_1 = tslib_1.__importDefault(require("./adapter/trace-adapter"));
const log = new log_1.Logger('trace-middleware');
exports.traceMiddleWareManager = {
downwardMiddleWareListMap: {
[types_1.IOS100Event.ScriptProfilerTrackingComplete]: ({ msg, sendToDevtools }) => {
const eventRes = msg;
log.verbose(`onPerformanceProfileCompleteEvent, msg = ${eventRes}`);
const traceAdapter = new trace_adapter_1.default();
const v8json = traceAdapter.jsc2v8(eventRes.params);
return sendToDevtools({
method: types_1.ChromeEvent.TracingDataCollected,
params: {
value: v8json,
},
});
},
},
upwardMiddleWareListMap: {
[types_1.ChromeCommand.TracingStart]: ({ sendToApp }) => sendToApp({
id: global_id_1.requestId.create(),
method: types_1.IOS100Command.ScriptProfilerStartTracking,
params: { includeSamples: true },
}),
[types_1.ChromeCommand.TracingEnd]: ({ sendToApp }) => sendToApp({
id: global_id_1.requestId.create(),
method: types_1.IOS100Command.ScriptProfilerStopTracking,
params: {},
}),
},
};