blob: 83b703f85248d78b1b5d7a762f67fe9894768ab9 [file] [log] [blame]
Steve Block6ded16b2010-05-10 14:33:55 +01001// Copyright 2010 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28// LiveEdit feature implementation. The script should be executed after
29// debug-debugger.js.
30
31// A LiveEdit namespace. It contains functions that modifies JavaScript code
32// according to changes of script source (if possible).
33//
34// When new script source is put in, the difference is calculated textually,
35// in form of list of delete/add/change chunks. The functions that include
36// change chunk(s) get recompiled, or their enclosing functions are
37// recompiled instead.
38// If the function may not be recompiled (e.g. it was completely erased in new
39// version of the script) it remains unchanged, but the code that could
40// create a new instance of this function goes away. An old version of script
41// is created to back up this obsolete function.
42// All unchanged functions have their positions updated accordingly.
43//
44// LiveEdit namespace is declared inside a single function constructor.
45Debug.LiveEdit = new function() {
46
47 // Forward declaration for minifier.
48 var FunctionStatus;
Ben Murdochf87a2032010-10-22 12:50:53 +010049
Steve Block6ded16b2010-05-10 14:33:55 +010050 // Applies the change to the script.
51 // The change is in form of list of chunks encoded in a single array as
52 // a series of triplets (pos1_start, pos1_end, pos2_end)
Steve Block8defd9f2010-07-08 12:39:36 +010053 function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
54 change_log) {
Steve Block6ded16b2010-05-10 14:33:55 +010055
56 var old_source = script.source;
57
58 // Gather compile information about old version of script.
59 var old_compile_info = GatherCompileInfo(old_source, script);
Ben Murdochf87a2032010-10-22 12:50:53 +010060
Steve Block6ded16b2010-05-10 14:33:55 +010061 // Build tree structures for old and new versions of the script.
62 var root_old_node = BuildCodeInfoTree(old_compile_info);
63
64 var pos_translator = new PosTranslator(diff_array);
65
66 // Analyze changes.
67 MarkChangedFunctions(root_old_node, pos_translator.GetChunks());
68
69 // Find all SharedFunctionInfo's that were compiled from this script.
70 FindLiveSharedInfos(root_old_node, script);
Ben Murdochf87a2032010-10-22 12:50:53 +010071
Steve Block6ded16b2010-05-10 14:33:55 +010072 // Gather compile information about new version of script.
73 var new_compile_info;
74 try {
75 new_compile_info = GatherCompileInfo(new_source, script);
76 } catch (e) {
77 throw new Failure("Failed to compile new version of script: " + e);
78 }
79 var root_new_node = BuildCodeInfoTree(new_compile_info);
80
81 // Link recompiled script data with other data.
82 FindCorrespondingFunctions(root_old_node, root_new_node);
Ben Murdochf87a2032010-10-22 12:50:53 +010083
Steve Block6ded16b2010-05-10 14:33:55 +010084 // Prepare to-do lists.
85 var replace_code_list = new Array();
86 var link_to_old_script_list = new Array();
87 var link_to_original_script_list = new Array();
88 var update_positions_list = new Array();
89
90 function HarvestTodo(old_node) {
91 function CollectDamaged(node) {
92 link_to_old_script_list.push(node);
93 for (var i = 0; i < node.children.length; i++) {
94 CollectDamaged(node.children[i]);
95 }
96 }
97
98 // Recursively collects all newly compiled functions that are going into
Steve Block8defd9f2010-07-08 12:39:36 +010099 // business and should have link to the actual script updated.
Steve Block6ded16b2010-05-10 14:33:55 +0100100 function CollectNew(node_list) {
101 for (var i = 0; i < node_list.length; i++) {
102 link_to_original_script_list.push(node_list[i]);
103 CollectNew(node_list[i].children);
104 }
105 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100106
Steve Block6ded16b2010-05-10 14:33:55 +0100107 if (old_node.status == FunctionStatus.DAMAGED) {
108 CollectDamaged(old_node);
109 return;
110 }
111 if (old_node.status == FunctionStatus.UNCHANGED) {
112 update_positions_list.push(old_node);
113 } else if (old_node.status == FunctionStatus.SOURCE_CHANGED) {
114 update_positions_list.push(old_node);
115 } else if (old_node.status == FunctionStatus.CHANGED) {
116 replace_code_list.push(old_node);
117 CollectNew(old_node.unmatched_new_nodes);
118 }
119 for (var i = 0; i < old_node.children.length; i++) {
120 HarvestTodo(old_node.children[i]);
121 }
122 }
123
Steve Block8defd9f2010-07-08 12:39:36 +0100124 var preview_description = {
125 change_tree: DescribeChangeTree(root_old_node),
126 textual_diff: {
127 old_len: old_source.length,
128 new_len: new_source.length,
129 chunks: diff_array
130 },
131 updated: false
132 };
Ben Murdochf87a2032010-10-22 12:50:53 +0100133
Steve Block8defd9f2010-07-08 12:39:36 +0100134 if (preview_only) {
135 return preview_description;
136 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100137
Steve Block6ded16b2010-05-10 14:33:55 +0100138 HarvestTodo(root_old_node);
Ben Murdochf87a2032010-10-22 12:50:53 +0100139
Steve Block6ded16b2010-05-10 14:33:55 +0100140 // Collect shared infos for functions whose code need to be patched.
141 var replaced_function_infos = new Array();
142 for (var i = 0; i < replace_code_list.length; i++) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100143 var info_wrapper = replace_code_list[i].live_shared_info_wrapper;
Steve Block6ded16b2010-05-10 14:33:55 +0100144 if (info_wrapper) {
145 replaced_function_infos.push(info_wrapper);
146 }
147 }
148
Steve Block6ded16b2010-05-10 14:33:55 +0100149 // We haven't changed anything before this line yet.
150 // Committing all changes.
Ben Murdochf87a2032010-10-22 12:50:53 +0100151
Steve Block8defd9f2010-07-08 12:39:36 +0100152 // Check that function being patched is not currently on stack or drop them.
153 var dropped_functions_number =
154 CheckStackActivations(replaced_function_infos, change_log);
Ben Murdochf87a2032010-10-22 12:50:53 +0100155
156 preview_description.stack_modified = dropped_functions_number != 0;
157
158 // Start with breakpoints. Convert their line/column positions and
Steve Block6ded16b2010-05-10 14:33:55 +0100159 // temporary remove.
160 var break_points_restorer = TemporaryRemoveBreakPoints(script, change_log);
161
162 var old_script;
163
164 // Create an old script only if there are function that should be linked
165 // to old version.
166 if (link_to_old_script_list.length == 0) {
167 %LiveEditReplaceScript(script, new_source, null);
168 old_script = void 0;
169 } else {
170 var old_script_name = CreateNameForOldScript(script);
Ben Murdochf87a2032010-10-22 12:50:53 +0100171
Steve Block6ded16b2010-05-10 14:33:55 +0100172 // Update the script text and create a new script representing an old
173 // version of the script.
174 old_script = %LiveEditReplaceScript(script, new_source,
175 old_script_name);
Ben Murdochf87a2032010-10-22 12:50:53 +0100176
Steve Block6ded16b2010-05-10 14:33:55 +0100177 var link_to_old_script_report = new Array();
178 change_log.push( { linked_to_old_script: link_to_old_script_report } );
Ben Murdochf87a2032010-10-22 12:50:53 +0100179
Steve Block6ded16b2010-05-10 14:33:55 +0100180 // We need to link to old script all former nested functions.
181 for (var i = 0; i < link_to_old_script_list.length; i++) {
182 LinkToOldScript(link_to_old_script_list[i], old_script,
183 link_to_old_script_report);
184 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100185
Steve Block8defd9f2010-07-08 12:39:36 +0100186 preview_description.created_script_name = old_script_name;
Steve Block6ded16b2010-05-10 14:33:55 +0100187 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100188
Steve Block6ded16b2010-05-10 14:33:55 +0100189 // Link to an actual script all the functions that we are going to use.
190 for (var i = 0; i < link_to_original_script_list.length; i++) {
191 %LiveEditFunctionSetScript(
192 link_to_original_script_list[i].info.shared_function_info, script);
193 }
194
195 for (var i = 0; i < replace_code_list.length; i++) {
196 PatchFunctionCode(replace_code_list[i], change_log);
197 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100198
Steve Block6ded16b2010-05-10 14:33:55 +0100199 var position_patch_report = new Array();
200 change_log.push( {position_patched: position_patch_report} );
Ben Murdochf87a2032010-10-22 12:50:53 +0100201
Steve Block6ded16b2010-05-10 14:33:55 +0100202 for (var i = 0; i < update_positions_list.length; i++) {
203 // TODO(LiveEdit): take into account wether it's source_changed or
204 // unchanged and whether positions changed at all.
205 PatchPositions(update_positions_list[i], diff_array,
206 position_patch_report);
207 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100208
Steve Block6ded16b2010-05-10 14:33:55 +0100209 break_points_restorer(pos_translator, old_script);
Ben Murdochf87a2032010-10-22 12:50:53 +0100210
Steve Block8defd9f2010-07-08 12:39:36 +0100211 preview_description.updated = true;
212 return preview_description;
Steve Block6ded16b2010-05-10 14:33:55 +0100213 }
214 // Function is public.
215 this.ApplyPatchMultiChunk = ApplyPatchMultiChunk;
216
Ben Murdochf87a2032010-10-22 12:50:53 +0100217
Steve Block6ded16b2010-05-10 14:33:55 +0100218 // Fully compiles source string as a script. Returns Array of
219 // FunctionCompileInfo -- a descriptions of all functions of the script.
220 // Elements of array are ordered by start positions of functions (from top
221 // to bottom) in the source. Fields outer_index and next_sibling_index help
222 // to navigate the nesting structure of functions.
223 //
224 // All functions get compiled linked to script provided as parameter script.
225 // TODO(LiveEdit): consider not using actual scripts as script, because
Ben Murdochf87a2032010-10-22 12:50:53 +0100226 // we have to manually erase all links right after compile.
Steve Block6ded16b2010-05-10 14:33:55 +0100227 function GatherCompileInfo(source, script) {
228 // Get function info, elements are partially sorted (it is a tree of
229 // nested functions serialized as parent followed by serialized children.
230 var raw_compile_info = %LiveEditGatherCompileInfo(script, source);
231
232 // Sort function infos by start position field.
233 var compile_info = new Array();
234 var old_index_map = new Array();
235 for (var i = 0; i < raw_compile_info.length; i++) {
236 var info = new FunctionCompileInfo(raw_compile_info[i]);
237 // Remove all links to the actual script. Breakpoints system and
238 // LiveEdit itself believe that any function in heap that points to a
239 // particular script is a regular function.
240 // For some functions we will restore this link later.
241 %LiveEditFunctionSetScript(info.shared_function_info, void 0);
242 compile_info.push(info);
243 old_index_map.push(i);
244 }
245
246 for (var i = 0; i < compile_info.length; i++) {
247 var k = i;
248 for (var j = i + 1; j < compile_info.length; j++) {
249 if (compile_info[k].start_position > compile_info[j].start_position) {
250 k = j;
251 }
252 }
253 if (k != i) {
254 var temp_info = compile_info[k];
255 var temp_index = old_index_map[k];
256 compile_info[k] = compile_info[i];
257 old_index_map[k] = old_index_map[i];
258 compile_info[i] = temp_info;
259 old_index_map[i] = temp_index;
260 }
261 }
262
263 // After sorting update outer_inder field using old_index_map. Also
264 // set next_sibling_index field.
265 var current_index = 0;
266
267 // The recursive function, that goes over all children of a particular
268 // node (i.e. function info).
269 function ResetIndexes(new_parent_index, old_parent_index) {
270 var previous_sibling = -1;
271 while (current_index < compile_info.length &&
272 compile_info[current_index].outer_index == old_parent_index) {
273 var saved_index = current_index;
274 compile_info[saved_index].outer_index = new_parent_index;
275 if (previous_sibling != -1) {
276 compile_info[previous_sibling].next_sibling_index = saved_index;
277 }
278 previous_sibling = saved_index;
279 current_index++;
280 ResetIndexes(saved_index, old_index_map[saved_index]);
281 }
282 if (previous_sibling != -1) {
283 compile_info[previous_sibling].next_sibling_index = -1;
284 }
285 }
286
287 ResetIndexes(-1, -1);
288 Assert(current_index == compile_info.length);
289
290 return compile_info;
291 }
292
Ben Murdochf87a2032010-10-22 12:50:53 +0100293
Steve Block6ded16b2010-05-10 14:33:55 +0100294 // Replaces function's Code.
295 function PatchFunctionCode(old_node, change_log) {
296 var new_info = old_node.corresponding_node.info;
297 var shared_info_wrapper = old_node.live_shared_info_wrapper;
298 if (shared_info_wrapper) {
299 %LiveEditReplaceFunctionCode(new_info.raw_array,
300 shared_info_wrapper.raw_array);
301
302 // The function got a new code. However, this new code brings all new
303 // instances of SharedFunctionInfo for nested functions. However,
304 // we want the original instances to be used wherever possible.
305 // (This is because old instances and new instances will be both
306 // linked to a script and breakpoints subsystem does not really
307 // expects this; neither does LiveEdit subsystem on next call).
308 for (var i = 0; i < old_node.children.length; i++) {
309 if (old_node.children[i].corresponding_node) {
310 var corresponding_child = old_node.children[i].corresponding_node;
311 var child_shared_info_wrapper =
312 old_node.children[i].live_shared_info_wrapper;
313 if (child_shared_info_wrapper) {
314 %LiveEditReplaceRefToNestedFunction(shared_info_wrapper.info,
315 corresponding_child.info.shared_function_info,
316 child_shared_info_wrapper.info);
317 }
318 }
319 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100320
Steve Block6ded16b2010-05-10 14:33:55 +0100321 change_log.push( {function_patched: new_info.function_name} );
322 } else {
323 change_log.push( {function_patched: new_info.function_name,
324 function_info_not_found: true} );
325 }
326 }
327
Ben Murdochf87a2032010-10-22 12:50:53 +0100328
Steve Block6ded16b2010-05-10 14:33:55 +0100329 // Makes a function associated with another instance of a script (the
330 // one representing its old version). This way the function still
331 // may access its own text.
332 function LinkToOldScript(old_info_node, old_script, report_array) {
333 var shared_info = old_info_node.live_shared_info_wrapper;
334 if (shared_info) {
335 %LiveEditFunctionSetScript(shared_info.info, old_script);
336 report_array.push( { name: shared_info.function_name } );
337 } else {
338 report_array.push(
339 { name: old_info_node.info.function_name, not_found: true } );
340 }
341 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100342
Steve Block6ded16b2010-05-10 14:33:55 +0100343
344 // Returns function that restores breakpoints.
345 function TemporaryRemoveBreakPoints(original_script, change_log) {
346 var script_break_points = GetScriptBreakPoints(original_script);
Ben Murdochf87a2032010-10-22 12:50:53 +0100347
Steve Block6ded16b2010-05-10 14:33:55 +0100348 var break_points_update_report = [];
349 change_log.push( { break_points_update: break_points_update_report } );
350
351 var break_point_old_positions = [];
352 for (var i = 0; i < script_break_points.length; i++) {
353 var break_point = script_break_points[i];
354
355 break_point.clear();
Ben Murdochf87a2032010-10-22 12:50:53 +0100356
357 // TODO(LiveEdit): be careful with resource offset here.
Steve Block6ded16b2010-05-10 14:33:55 +0100358 var break_point_position = Debug.findScriptSourcePosition(original_script,
359 break_point.line(), break_point.column());
Ben Murdochf87a2032010-10-22 12:50:53 +0100360
Steve Block6ded16b2010-05-10 14:33:55 +0100361 var old_position_description = {
362 position: break_point_position,
363 line: break_point.line(),
364 column: break_point.column()
365 }
366 break_point_old_positions.push(old_position_description);
367 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100368
369
Steve Block6ded16b2010-05-10 14:33:55 +0100370 // Restores breakpoints and creates their copies in the "old" copy of
371 // the script.
372 return function (pos_translator, old_script_copy_opt) {
373 // Update breakpoints (change positions and restore them in old version
374 // of script.
375 for (var i = 0; i < script_break_points.length; i++) {
376 var break_point = script_break_points[i];
377 if (old_script_copy_opt) {
378 var clone = break_point.cloneForOtherScript(old_script_copy_opt);
379 clone.set(old_script_copy_opt);
Ben Murdochf87a2032010-10-22 12:50:53 +0100380
Steve Block6ded16b2010-05-10 14:33:55 +0100381 break_points_update_report.push( {
382 type: "copied_to_old",
383 id: break_point.number(),
Ben Murdochf87a2032010-10-22 12:50:53 +0100384 new_id: clone.number(),
Steve Block6ded16b2010-05-10 14:33:55 +0100385 positions: break_point_old_positions[i]
386 } );
387 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100388
Steve Block6ded16b2010-05-10 14:33:55 +0100389 var updated_position = pos_translator.Translate(
390 break_point_old_positions[i].position,
391 PosTranslator.ShiftWithTopInsideChunkHandler);
Ben Murdochf87a2032010-10-22 12:50:53 +0100392
Steve Block6ded16b2010-05-10 14:33:55 +0100393 var new_location =
394 original_script.locationFromPosition(updated_position, false);
395
396 break_point.update_positions(new_location.line, new_location.column);
397
398 var new_position_description = {
399 position: updated_position,
400 line: new_location.line,
401 column: new_location.column
402 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100403
Steve Block6ded16b2010-05-10 14:33:55 +0100404 break_point.set(original_script);
Ben Murdochf87a2032010-10-22 12:50:53 +0100405
Steve Block6ded16b2010-05-10 14:33:55 +0100406 break_points_update_report.push( { type: "position_changed",
407 id: break_point.number(),
408 old_positions: break_point_old_positions[i],
409 new_positions: new_position_description
410 } );
411 }
412 }
413 }
414
Ben Murdochf87a2032010-10-22 12:50:53 +0100415
Steve Block6ded16b2010-05-10 14:33:55 +0100416 function Assert(condition, message) {
417 if (!condition) {
418 if (message) {
419 throw "Assert " + message;
420 } else {
421 throw "Assert";
422 }
423 }
424 }
425
426 function DiffChunk(pos1, pos2, len1, len2) {
427 this.pos1 = pos1;
428 this.pos2 = pos2;
429 this.len1 = len1;
430 this.len2 = len2;
431 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100432
Steve Block6ded16b2010-05-10 14:33:55 +0100433 function PosTranslator(diff_array) {
434 var chunks = new Array();
435 var current_diff = 0;
436 for (var i = 0; i < diff_array.length; i += 3) {
437 var pos1_begin = diff_array[i];
438 var pos2_begin = pos1_begin + current_diff;
439 var pos1_end = diff_array[i + 1];
440 var pos2_end = diff_array[i + 2];
441 chunks.push(new DiffChunk(pos1_begin, pos2_begin, pos1_end - pos1_begin,
442 pos2_end - pos2_begin));
Ben Murdochf87a2032010-10-22 12:50:53 +0100443 current_diff = pos2_end - pos1_end;
Steve Block6ded16b2010-05-10 14:33:55 +0100444 }
445 this.chunks = chunks;
446 }
447 PosTranslator.prototype.GetChunks = function() {
448 return this.chunks;
449 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100450
Steve Block6ded16b2010-05-10 14:33:55 +0100451 PosTranslator.prototype.Translate = function(pos, inside_chunk_handler) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100452 var array = this.chunks;
Steve Block6ded16b2010-05-10 14:33:55 +0100453 if (array.length == 0 || pos < array[0].pos1) {
454 return pos;
455 }
456 var chunk_index1 = 0;
457 var chunk_index2 = array.length - 1;
458
459 while (chunk_index1 < chunk_index2) {
460 var middle_index = Math.floor((chunk_index1 + chunk_index2) / 2);
461 if (pos < array[middle_index + 1].pos1) {
462 chunk_index2 = middle_index;
463 } else {
464 chunk_index1 = middle_index + 1;
465 }
466 }
467 var chunk = array[chunk_index1];
468 if (pos >= chunk.pos1 + chunk.len1) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100469 return pos + chunk.pos2 + chunk.len2 - chunk.pos1 - chunk.len1;
Steve Block6ded16b2010-05-10 14:33:55 +0100470 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100471
Steve Block6ded16b2010-05-10 14:33:55 +0100472 if (!inside_chunk_handler) {
473 inside_chunk_handler = PosTranslator.DefaultInsideChunkHandler;
474 }
475 return inside_chunk_handler(pos, chunk);
476 }
477
478 PosTranslator.DefaultInsideChunkHandler = function(pos, diff_chunk) {
479 Assert(false, "Cannot translate position in changed area");
480 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100481
Steve Block6ded16b2010-05-10 14:33:55 +0100482 PosTranslator.ShiftWithTopInsideChunkHandler =
483 function(pos, diff_chunk) {
484 // We carelessly do not check whether we stay inside the chunk after
485 // translation.
Ben Murdochf87a2032010-10-22 12:50:53 +0100486 return pos - diff_chunk.pos1 + diff_chunk.pos2;
Steve Block6ded16b2010-05-10 14:33:55 +0100487 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100488
Steve Block6ded16b2010-05-10 14:33:55 +0100489 var FunctionStatus = {
490 // No change to function or its inner functions; however its positions
Ben Murdochf87a2032010-10-22 12:50:53 +0100491 // in script may have been shifted.
Steve Block6ded16b2010-05-10 14:33:55 +0100492 UNCHANGED: "unchanged",
493 // The code of a function remains unchanged, but something happened inside
494 // some inner functions.
495 SOURCE_CHANGED: "source changed",
496 // The code of a function is changed or some nested function cannot be
497 // properly patched so this function must be recompiled.
498 CHANGED: "changed",
499 // Function is changed but cannot be patched.
500 DAMAGED: "damaged"
501 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100502
Steve Block6ded16b2010-05-10 14:33:55 +0100503 function CodeInfoTreeNode(code_info, children, array_index) {
504 this.info = code_info;
505 this.children = children;
506 // an index in array of compile_info
Ben Murdochf87a2032010-10-22 12:50:53 +0100507 this.array_index = array_index;
Steve Block6ded16b2010-05-10 14:33:55 +0100508 this.parent = void 0;
Ben Murdochf87a2032010-10-22 12:50:53 +0100509
Steve Block6ded16b2010-05-10 14:33:55 +0100510 this.status = FunctionStatus.UNCHANGED;
511 // Status explanation is used for debugging purposes and will be shown
512 // in user UI if some explanations are needed.
513 this.status_explanation = void 0;
514 this.new_start_pos = void 0;
515 this.new_end_pos = void 0;
516 this.corresponding_node = void 0;
517 this.unmatched_new_nodes = void 0;
Ben Murdochf87a2032010-10-22 12:50:53 +0100518
Steve Block8defd9f2010-07-08 12:39:36 +0100519 // 'Textual' correspondence/matching is weaker than 'pure'
520 // correspondence/matching. We need 'textual' level for visual presentation
521 // in UI, we use 'pure' level for actual code manipulation.
522 // Sometimes only function body is changed (functions in old and new script
523 // textually correspond), but we cannot patch the code, so we see them
Ben Murdochf87a2032010-10-22 12:50:53 +0100524 // as an old function deleted and new function created.
Steve Block8defd9f2010-07-08 12:39:36 +0100525 this.textual_corresponding_node = void 0;
526 this.textually_unmatched_new_nodes = void 0;
Ben Murdochf87a2032010-10-22 12:50:53 +0100527
Steve Block6ded16b2010-05-10 14:33:55 +0100528 this.live_shared_info_wrapper = void 0;
529 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100530
Steve Block6ded16b2010-05-10 14:33:55 +0100531 // From array of function infos that is implicitly a tree creates
532 // an actual tree of functions in script.
533 function BuildCodeInfoTree(code_info_array) {
534 // Throughtout all function we iterate over input array.
535 var index = 0;
536
Ben Murdochf87a2032010-10-22 12:50:53 +0100537 // Recursive function that builds a branch of tree.
Steve Block6ded16b2010-05-10 14:33:55 +0100538 function BuildNode() {
539 var my_index = index;
540 index++;
541 var child_array = new Array();
542 while (index < code_info_array.length &&
543 code_info_array[index].outer_index == my_index) {
544 child_array.push(BuildNode());
545 }
546 var node = new CodeInfoTreeNode(code_info_array[my_index], child_array,
547 my_index);
548 for (var i = 0; i < child_array.length; i++) {
549 child_array[i].parent = node;
550 }
551 return node;
552 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100553
Steve Block6ded16b2010-05-10 14:33:55 +0100554 var root = BuildNode();
555 Assert(index == code_info_array.length);
556 return root;
557 }
558
559 // Applies a list of the textual diff chunks onto the tree of functions.
560 // Determines status of each function (from unchanged to damaged). However
561 // children of unchanged functions are ignored.
562 function MarkChangedFunctions(code_info_tree, chunks) {
563
564 // A convenient interator over diff chunks that also translates
565 // positions from old to new in a current non-changed part of script.
566 var chunk_it = new function() {
567 var chunk_index = 0;
568 var pos_diff = 0;
569 this.current = function() { return chunks[chunk_index]; }
570 this.next = function() {
571 var chunk = chunks[chunk_index];
Ben Murdochf87a2032010-10-22 12:50:53 +0100572 pos_diff = chunk.pos2 + chunk.len2 - (chunk.pos1 + chunk.len1);
Steve Block6ded16b2010-05-10 14:33:55 +0100573 chunk_index++;
574 }
575 this.done = function() { return chunk_index >= chunks.length; }
576 this.TranslatePos = function(pos) { return pos + pos_diff; }
577 };
578
579 // A recursive function that processes internals of a function and all its
580 // inner functions. Iterator chunk_it initially points to a chunk that is
581 // below function start.
582 function ProcessInternals(info_node) {
583 info_node.new_start_pos = chunk_it.TranslatePos(
Ben Murdochf87a2032010-10-22 12:50:53 +0100584 info_node.info.start_position);
Steve Block6ded16b2010-05-10 14:33:55 +0100585 var child_index = 0;
586 var code_changed = false;
587 var source_changed = false;
588 // Simultaneously iterates over child functions and over chunks.
589 while (!chunk_it.done() &&
590 chunk_it.current().pos1 < info_node.info.end_position) {
591 if (child_index < info_node.children.length) {
592 var child = info_node.children[child_index];
Ben Murdochf87a2032010-10-22 12:50:53 +0100593
Steve Block6ded16b2010-05-10 14:33:55 +0100594 if (child.info.end_position <= chunk_it.current().pos1) {
595 ProcessUnchangedChild(child);
596 child_index++;
597 continue;
598 } else if (child.info.start_position >=
599 chunk_it.current().pos1 + chunk_it.current().len1) {
600 code_changed = true;
601 chunk_it.next();
602 continue;
603 } else if (child.info.start_position <= chunk_it.current().pos1 &&
604 child.info.end_position >= chunk_it.current().pos1 +
605 chunk_it.current().len1) {
606 ProcessInternals(child);
607 source_changed = source_changed ||
608 ( child.status != FunctionStatus.UNCHANGED );
609 code_changed = code_changed ||
610 ( child.status == FunctionStatus.DAMAGED );
611 child_index++;
612 continue;
613 } else {
614 code_changed = true;
615 child.status = FunctionStatus.DAMAGED;
616 child.status_explanation =
617 "Text diff overlaps with function boundary";
618 child_index++;
619 continue;
620 }
621 } else {
Ben Murdochf87a2032010-10-22 12:50:53 +0100622 if (chunk_it.current().pos1 + chunk_it.current().len1 <=
Steve Block6ded16b2010-05-10 14:33:55 +0100623 info_node.info.end_position) {
624 info_node.status = FunctionStatus.CHANGED;
625 chunk_it.next();
626 continue;
627 } else {
628 info_node.status = FunctionStatus.DAMAGED;
629 info_node.status_explanation =
630 "Text diff overlaps with function boundary";
631 return;
632 }
633 }
634 Assert("Unreachable", false);
635 }
636 while (child_index < info_node.children.length) {
637 var child = info_node.children[child_index];
638 ProcessUnchangedChild(child);
639 child_index++;
640 }
641 if (code_changed) {
642 info_node.status = FunctionStatus.CHANGED;
643 } else if (source_changed) {
644 info_node.status = FunctionStatus.SOURCE_CHANGED;
645 }
646 info_node.new_end_pos =
Ben Murdochf87a2032010-10-22 12:50:53 +0100647 chunk_it.TranslatePos(info_node.info.end_position);
Steve Block6ded16b2010-05-10 14:33:55 +0100648 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100649
Steve Block6ded16b2010-05-10 14:33:55 +0100650 function ProcessUnchangedChild(node) {
651 node.new_start_pos = chunk_it.TranslatePos(node.info.start_position);
652 node.new_end_pos = chunk_it.TranslatePos(node.info.end_position);
653 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100654
Steve Block6ded16b2010-05-10 14:33:55 +0100655 ProcessInternals(code_info_tree);
656 }
657
658 // For ecah old function (if it is not damaged) tries to find a corresponding
659 // function in new script. Typically it should succeed (non-damaged functions
660 // by definition may only have changes inside their bodies). However there are
661 // reasons for corresponence not to be found; function with unmodified text
662 // in new script may become enclosed into other function; the innocent change
663 // inside function body may in fact be something like "} function B() {" that
664 // splits a function into 2 functions.
665 function FindCorrespondingFunctions(old_code_tree, new_code_tree) {
666
667 // A recursive function that tries to find a correspondence for all
668 // child functions and for their inner functions.
669 function ProcessChildren(old_node, new_node) {
670 var old_children = old_node.children;
671 var new_children = new_node.children;
Ben Murdochf87a2032010-10-22 12:50:53 +0100672
Steve Block6ded16b2010-05-10 14:33:55 +0100673 var unmatched_new_nodes_list = [];
Steve Block8defd9f2010-07-08 12:39:36 +0100674 var textually_unmatched_new_nodes_list = [];
Steve Block6ded16b2010-05-10 14:33:55 +0100675
676 var old_index = 0;
677 var new_index = 0;
678 while (old_index < old_children.length) {
679 if (old_children[old_index].status == FunctionStatus.DAMAGED) {
680 old_index++;
681 } else if (new_index < new_children.length) {
682 if (new_children[new_index].info.start_position <
683 old_children[old_index].new_start_pos) {
684 unmatched_new_nodes_list.push(new_children[new_index]);
Steve Block8defd9f2010-07-08 12:39:36 +0100685 textually_unmatched_new_nodes_list.push(new_children[new_index]);
Steve Block6ded16b2010-05-10 14:33:55 +0100686 new_index++;
687 } else if (new_children[new_index].info.start_position ==
688 old_children[old_index].new_start_pos) {
689 if (new_children[new_index].info.end_position ==
690 old_children[old_index].new_end_pos) {
691 old_children[old_index].corresponding_node =
692 new_children[new_index];
Steve Block8defd9f2010-07-08 12:39:36 +0100693 old_children[old_index].textual_corresponding_node =
694 new_children[new_index];
Steve Block6ded16b2010-05-10 14:33:55 +0100695 if (old_children[old_index].status != FunctionStatus.UNCHANGED) {
696 ProcessChildren(old_children[old_index],
697 new_children[new_index]);
698 if (old_children[old_index].status == FunctionStatus.DAMAGED) {
699 unmatched_new_nodes_list.push(
700 old_children[old_index].corresponding_node);
701 old_children[old_index].corresponding_node = void 0;
702 old_node.status = FunctionStatus.CHANGED;
703 }
704 }
705 } else {
706 old_children[old_index].status = FunctionStatus.DAMAGED;
707 old_children[old_index].status_explanation =
708 "No corresponding function in new script found";
709 old_node.status = FunctionStatus.CHANGED;
710 unmatched_new_nodes_list.push(new_children[new_index]);
Steve Block8defd9f2010-07-08 12:39:36 +0100711 textually_unmatched_new_nodes_list.push(new_children[new_index]);
Steve Block6ded16b2010-05-10 14:33:55 +0100712 }
713 new_index++;
714 old_index++;
715 } else {
716 old_children[old_index].status = FunctionStatus.DAMAGED;
717 old_children[old_index].status_explanation =
718 "No corresponding function in new script found";
719 old_node.status = FunctionStatus.CHANGED;
720 old_index++;
721 }
722 } else {
723 old_children[old_index].status = FunctionStatus.DAMAGED;
724 old_children[old_index].status_explanation =
725 "No corresponding function in new script found";
726 old_node.status = FunctionStatus.CHANGED;
727 old_index++;
728 }
729 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100730
Steve Block6ded16b2010-05-10 14:33:55 +0100731 while (new_index < new_children.length) {
732 unmatched_new_nodes_list.push(new_children[new_index]);
Steve Block8defd9f2010-07-08 12:39:36 +0100733 textually_unmatched_new_nodes_list.push(new_children[new_index]);
Steve Block6ded16b2010-05-10 14:33:55 +0100734 new_index++;
735 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100736
Steve Block6ded16b2010-05-10 14:33:55 +0100737 if (old_node.status == FunctionStatus.CHANGED) {
Steve Block8defd9f2010-07-08 12:39:36 +0100738 var why_wrong_expectations =
739 WhyFunctionExpectationsDiffer(old_node.info, new_node.info);
740 if (why_wrong_expectations) {
Steve Block6ded16b2010-05-10 14:33:55 +0100741 old_node.status = FunctionStatus.DAMAGED;
Steve Block8defd9f2010-07-08 12:39:36 +0100742 old_node.status_explanation = why_wrong_expectations;
Steve Block6ded16b2010-05-10 14:33:55 +0100743 }
744 }
745 old_node.unmatched_new_nodes = unmatched_new_nodes_list;
Steve Block8defd9f2010-07-08 12:39:36 +0100746 old_node.textually_unmatched_new_nodes =
747 textually_unmatched_new_nodes_list;
Steve Block6ded16b2010-05-10 14:33:55 +0100748 }
749
750 ProcessChildren(old_code_tree, new_code_tree);
Ben Murdochf87a2032010-10-22 12:50:53 +0100751
Steve Block6ded16b2010-05-10 14:33:55 +0100752 old_code_tree.corresponding_node = new_code_tree;
Steve Block8defd9f2010-07-08 12:39:36 +0100753 old_code_tree.textual_corresponding_node = new_code_tree;
754
Steve Block6ded16b2010-05-10 14:33:55 +0100755 Assert(old_code_tree.status != FunctionStatus.DAMAGED,
756 "Script became damaged");
757 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100758
Steve Block6ded16b2010-05-10 14:33:55 +0100759 function FindLiveSharedInfos(old_code_tree, script) {
760 var shared_raw_list = %LiveEditFindSharedFunctionInfosForScript(script);
Ben Murdochf87a2032010-10-22 12:50:53 +0100761
Steve Block6ded16b2010-05-10 14:33:55 +0100762 var shared_infos = new Array();
Ben Murdochf87a2032010-10-22 12:50:53 +0100763
Steve Block6ded16b2010-05-10 14:33:55 +0100764 for (var i = 0; i < shared_raw_list.length; i++) {
765 shared_infos.push(new SharedInfoWrapper(shared_raw_list[i]));
766 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100767
Steve Block6ded16b2010-05-10 14:33:55 +0100768 // Finds SharedFunctionInfo that corresponds compile info with index
769 // in old version of the script.
770 function FindFunctionInfo(compile_info) {
771 for (var i = 0; i < shared_infos.length; i++) {
772 var wrapper = shared_infos[i];
773 if (wrapper.start_position == compile_info.start_position &&
774 wrapper.end_position == compile_info.end_position) {
775 return wrapper;
776 }
777 }
778 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100779
Steve Block6ded16b2010-05-10 14:33:55 +0100780 function TraverseTree(node) {
781 var info_wrapper = FindFunctionInfo(node.info);
782 if (info_wrapper) {
783 node.live_shared_info_wrapper = info_wrapper;
784 }
785 for (var i = 0; i < node.children.length; i++) {
786 TraverseTree(node.children[i]);
787 }
788 }
789
790 TraverseTree(old_code_tree);
791 }
792
Ben Murdochf87a2032010-10-22 12:50:53 +0100793
Steve Block6ded16b2010-05-10 14:33:55 +0100794 // An object describing function compilation details. Its index fields
795 // apply to indexes inside array that stores these objects.
796 function FunctionCompileInfo(raw_array) {
797 this.function_name = raw_array[0];
798 this.start_position = raw_array[1];
799 this.end_position = raw_array[2];
800 this.param_num = raw_array[3];
801 this.code = raw_array[4];
Iain Merrick75681382010-08-19 15:07:18 +0100802 this.code_scope_info = raw_array[5];
803 this.scope_info = raw_array[6];
804 this.outer_index = raw_array[7];
805 this.shared_function_info = raw_array[8];
Steve Block6ded16b2010-05-10 14:33:55 +0100806 this.next_sibling_index = null;
807 this.raw_array = raw_array;
808 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100809
Steve Block6ded16b2010-05-10 14:33:55 +0100810 function SharedInfoWrapper(raw_array) {
811 this.function_name = raw_array[0];
812 this.start_position = raw_array[1];
813 this.end_position = raw_array[2];
814 this.info = raw_array[3];
815 this.raw_array = raw_array;
816 }
817
818 // Changes positions (including all statments) in function.
819 function PatchPositions(old_info_node, diff_array, report_array) {
820 var shared_info_wrapper = old_info_node.live_shared_info_wrapper;
821 if (!shared_info_wrapper) {
822 // TODO(LiveEdit): function is not compiled yet or is already collected.
Ben Murdochf87a2032010-10-22 12:50:53 +0100823 report_array.push(
Steve Block6ded16b2010-05-10 14:33:55 +0100824 { name: old_info_node.info.function_name, info_not_found: true } );
825 return;
826 }
827 %LiveEditPatchFunctionPositions(shared_info_wrapper.raw_array,
828 diff_array);
829 report_array.push( { name: old_info_node.info.function_name } );
830 }
831
832 // Adds a suffix to script name to mark that it is old version.
833 function CreateNameForOldScript(script) {
834 // TODO(635): try better than this; support several changes.
835 return script.name + " (old)";
836 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100837
Steve Block6ded16b2010-05-10 14:33:55 +0100838 // Compares a function interface old and new version, whether it
Steve Block8defd9f2010-07-08 12:39:36 +0100839 // changed or not. Returns explanation if they differ.
840 function WhyFunctionExpectationsDiffer(function_info1, function_info2) {
Steve Block6ded16b2010-05-10 14:33:55 +0100841 // Check that function has the same number of parameters (there may exist
842 // an adapter, that won't survive function parameter number change).
843 if (function_info1.param_num != function_info2.param_num) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100844 return "Changed parameter number: " + function_info1.param_num +
Steve Block8defd9f2010-07-08 12:39:36 +0100845 " and " + function_info2.param_num;
Steve Block6ded16b2010-05-10 14:33:55 +0100846 }
847 var scope_info1 = function_info1.scope_info;
848 var scope_info2 = function_info2.scope_info;
Steve Block8defd9f2010-07-08 12:39:36 +0100849
Ben Murdochf87a2032010-10-22 12:50:53 +0100850 var scope_info1_text;
851 var scope_info2_text;
852
Steve Block8defd9f2010-07-08 12:39:36 +0100853 if (scope_info1) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100854 scope_info1_text = scope_info1.toString();
Steve Block8defd9f2010-07-08 12:39:36 +0100855 } else {
856 scope_info1_text = "";
Steve Block6ded16b2010-05-10 14:33:55 +0100857 }
Steve Block8defd9f2010-07-08 12:39:36 +0100858 if (scope_info2) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100859 scope_info2_text = scope_info2.toString();
Steve Block8defd9f2010-07-08 12:39:36 +0100860 } else {
861 scope_info2_text = "";
Steve Block6ded16b2010-05-10 14:33:55 +0100862 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100863
Steve Block8defd9f2010-07-08 12:39:36 +0100864 if (scope_info1_text != scope_info2_text) {
865 return "Incompatible variable maps: [" + scope_info1_text +
Ben Murdochf87a2032010-10-22 12:50:53 +0100866 "] and [" + scope_info2_text + "]";
Steve Block8defd9f2010-07-08 12:39:36 +0100867 }
868 // No differences. Return undefined.
869 return;
Steve Block6ded16b2010-05-10 14:33:55 +0100870 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100871
Steve Block6ded16b2010-05-10 14:33:55 +0100872 // Minifier forward declaration.
873 var FunctionPatchabilityStatus;
Ben Murdochf87a2032010-10-22 12:50:53 +0100874
Steve Block6ded16b2010-05-10 14:33:55 +0100875 // For array of wrapped shared function infos checks that none of them
876 // have activations on stack (of any thread). Throws a Failure exception
877 // if this proves to be false.
878 function CheckStackActivations(shared_wrapper_list, change_log) {
879 var shared_list = new Array();
880 for (var i = 0; i < shared_wrapper_list.length; i++) {
881 shared_list[i] = shared_wrapper_list[i].info;
882 }
883 var result = %LiveEditCheckAndDropActivations(shared_list, true);
884 if (result[shared_list.length]) {
885 // Extra array element may contain error message.
886 throw new Failure(result[shared_list.length]);
887 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100888
Steve Block6ded16b2010-05-10 14:33:55 +0100889 var problems = new Array();
890 var dropped = new Array();
891 for (var i = 0; i < shared_list.length; i++) {
892 var shared = shared_wrapper_list[i];
893 if (result[i] == FunctionPatchabilityStatus.REPLACED_ON_ACTIVE_STACK) {
894 dropped.push({ name: shared.function_name } );
895 } else if (result[i] != FunctionPatchabilityStatus.AVAILABLE_FOR_PATCH) {
896 var description = {
897 name: shared.function_name,
Ben Murdochf87a2032010-10-22 12:50:53 +0100898 start_pos: shared.start_position,
Steve Block6ded16b2010-05-10 14:33:55 +0100899 end_pos: shared.end_position,
900 replace_problem:
901 FunctionPatchabilityStatus.SymbolName(result[i])
902 };
903 problems.push(description);
904 }
905 }
906 if (dropped.length > 0) {
907 change_log.push({ dropped_from_stack: dropped });
908 }
909 if (problems.length > 0) {
910 change_log.push( { functions_on_stack: problems } );
911 throw new Failure("Blocked by functions on stack");
912 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100913
Steve Block8defd9f2010-07-08 12:39:36 +0100914 return dropped.length;
Steve Block6ded16b2010-05-10 14:33:55 +0100915 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100916
Steve Block6ded16b2010-05-10 14:33:55 +0100917 // A copy of the FunctionPatchabilityStatus enum from liveedit.h
918 var FunctionPatchabilityStatus = {
919 AVAILABLE_FOR_PATCH: 1,
920 BLOCKED_ON_ACTIVE_STACK: 2,
921 BLOCKED_ON_OTHER_STACK: 3,
922 BLOCKED_UNDER_NATIVE_CODE: 4,
923 REPLACED_ON_ACTIVE_STACK: 5
924 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100925
Steve Block6ded16b2010-05-10 14:33:55 +0100926 FunctionPatchabilityStatus.SymbolName = function(code) {
927 var enum = FunctionPatchabilityStatus;
928 for (name in enum) {
929 if (enum[name] == code) {
930 return name;
931 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100932 }
Steve Block6ded16b2010-05-10 14:33:55 +0100933 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100934
935
Steve Block6ded16b2010-05-10 14:33:55 +0100936 // A logical failure in liveedit process. This means that change_log
937 // is valid and consistent description of what happened.
938 function Failure(message) {
939 this.message = message;
940 }
941 // Function (constructor) is public.
942 this.Failure = Failure;
Ben Murdochf87a2032010-10-22 12:50:53 +0100943
Steve Block6ded16b2010-05-10 14:33:55 +0100944 Failure.prototype.toString = function() {
945 return "LiveEdit Failure: " + this.message;
946 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100947
Steve Block6ded16b2010-05-10 14:33:55 +0100948 // A testing entry.
949 function GetPcFromSourcePos(func, source_pos) {
950 return %GetFunctionCodePositionFromSource(func, source_pos);
951 }
952 // Function is public.
953 this.GetPcFromSourcePos = GetPcFromSourcePos;
954
955 // LiveEdit main entry point: changes a script text to a new string.
Steve Block8defd9f2010-07-08 12:39:36 +0100956 function SetScriptSource(script, new_source, preview_only, change_log) {
Steve Block6ded16b2010-05-10 14:33:55 +0100957 var old_source = script.source;
958 var diff = CompareStringsLinewise(old_source, new_source);
Steve Block8defd9f2010-07-08 12:39:36 +0100959 return ApplyPatchMultiChunk(script, diff, new_source, preview_only,
960 change_log);
Steve Block6ded16b2010-05-10 14:33:55 +0100961 }
962 // Function is public.
963 this.SetScriptSource = SetScriptSource;
Ben Murdochf87a2032010-10-22 12:50:53 +0100964
Steve Block6ded16b2010-05-10 14:33:55 +0100965 function CompareStringsLinewise(s1, s2) {
966 return %LiveEditCompareStringsLinewise(s1, s2);
967 }
968
969 // Applies the change to the script.
970 // The change is always a substring (change_pos, change_pos + change_len)
971 // being replaced with a completely different string new_str.
972 // This API is a legacy and is obsolete.
973 //
974 // @param {Script} script that is being changed
975 // @param {Array} change_log a list that collects engineer-readable
976 // description of what happened.
977 function ApplySingleChunkPatch(script, change_pos, change_len, new_str,
978 change_log) {
979 var old_source = script.source;
Ben Murdochf87a2032010-10-22 12:50:53 +0100980
Steve Block6ded16b2010-05-10 14:33:55 +0100981 // Prepare new source string.
982 var new_source = old_source.substring(0, change_pos) +
983 new_str + old_source.substring(change_pos + change_len);
Ben Murdochf87a2032010-10-22 12:50:53 +0100984
Steve Block6ded16b2010-05-10 14:33:55 +0100985 return ApplyPatchMultiChunk(script,
986 [ change_pos, change_pos + change_len, change_pos + new_str.length],
Steve Block8defd9f2010-07-08 12:39:36 +0100987 new_source, false, change_log);
988 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100989
Steve Block8defd9f2010-07-08 12:39:36 +0100990 // Creates JSON description for a change tree.
991 function DescribeChangeTree(old_code_tree) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100992
Steve Block8defd9f2010-07-08 12:39:36 +0100993 function ProcessOldNode(node) {
994 var child_infos = [];
995 for (var i = 0; i < node.children.length; i++) {
996 var child = node.children[i];
997 if (child.status != FunctionStatus.UNCHANGED) {
998 child_infos.push(ProcessOldNode(child));
999 }
1000 }
1001 var new_child_infos = [];
1002 if (node.textually_unmatched_new_nodes) {
1003 for (var i = 0; i < node.textually_unmatched_new_nodes.length; i++) {
1004 var child = node.textually_unmatched_new_nodes[i];
1005 new_child_infos.push(ProcessNewNode(child));
1006 }
1007 }
1008 var res = {
1009 name: node.info.function_name,
1010 positions: DescribePositions(node),
1011 status: node.status,
1012 children: child_infos,
Ben Murdochf87a2032010-10-22 12:50:53 +01001013 new_children: new_child_infos
Steve Block8defd9f2010-07-08 12:39:36 +01001014 };
1015 if (node.status_explanation) {
1016 res.status_explanation = node.status_explanation;
1017 }
1018 if (node.textual_corresponding_node) {
1019 res.new_positions = DescribePositions(node.textual_corresponding_node);
1020 }
1021 return res;
1022 }
Ben Murdochf87a2032010-10-22 12:50:53 +01001023
Steve Block8defd9f2010-07-08 12:39:36 +01001024 function ProcessNewNode(node) {
1025 var child_infos = [];
1026 // Do not list ancestors.
1027 if (false) {
1028 for (var i = 0; i < node.children.length; i++) {
1029 child_infos.push(ProcessNewNode(node.children[i]));
1030 }
1031 }
1032 var res = {
1033 name: node.info.function_name,
1034 positions: DescribePositions(node),
1035 children: child_infos,
1036 };
1037 return res;
1038 }
Ben Murdochf87a2032010-10-22 12:50:53 +01001039
Steve Block8defd9f2010-07-08 12:39:36 +01001040 function DescribePositions(node) {
1041 return {
1042 start_position: node.info.start_position,
1043 end_position: node.info.end_position
1044 };
1045 }
Ben Murdochf87a2032010-10-22 12:50:53 +01001046
Steve Block8defd9f2010-07-08 12:39:36 +01001047 return ProcessOldNode(old_code_tree);
Steve Block6ded16b2010-05-10 14:33:55 +01001048 }
1049
Ben Murdochf87a2032010-10-22 12:50:53 +01001050
Steve Block6ded16b2010-05-10 14:33:55 +01001051 // Functions are public for tests.
1052 this.TestApi = {
1053 PosTranslator: PosTranslator,
1054 CompareStringsLinewise: CompareStringsLinewise,
1055 ApplySingleChunkPatch: ApplySingleChunkPatch
1056 }
1057}