2016-06-01 20:50:34 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* @providesModule symbolicateStackTrace
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const getDevServer = require('getDevServer');
|
2016-10-11 17:08:54 +00:00
|
|
|
|
2016-09-19 17:46:49 +00:00
|
|
|
const {SourceCode} = require('NativeModules');
|
2016-10-11 17:08:54 +00:00
|
|
|
const {fetch} = require('fetch');
|
2016-06-01 20:50:34 +00:00
|
|
|
|
|
|
|
import type {StackFrame} from 'parseErrorStack';
|
|
|
|
|
|
|
|
async function symbolicateStackTrace(stack: Array<StackFrame>): Promise<Array<StackFrame>> {
|
|
|
|
const devServer = getDevServer();
|
|
|
|
if (!devServer.bundleLoadedFromServer) {
|
|
|
|
throw new Error('Bundle was not loaded from the packager');
|
|
|
|
}
|
2016-09-19 17:46:49 +00:00
|
|
|
if (SourceCode.scriptURL) {
|
|
|
|
for (let i = 0; i < stack.length; ++i) {
|
|
|
|
// If the sources exist on disk rather than appearing to come from the packager,
|
|
|
|
// replace the location with the packager URL until we reach an internal source
|
|
|
|
// which does not have a path (no slashes), indicating a switch from within
|
|
|
|
// the application to a surrounding debugging environment.
|
|
|
|
if (/^http/.test(stack[i].file) || !/[\\/]/.test(stack[i].file)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
stack[i].file = SourceCode.scriptURL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-01 20:50:34 +00:00
|
|
|
const response = await fetch(devServer.url + 'symbolicate', {
|
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify({stack}),
|
|
|
|
});
|
|
|
|
const json = await response.json();
|
|
|
|
return json.stack;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = symbolicateStackTrace;
|