1 |
/* |
/* |
2 |
instrument.c - file and directory instrumentation routines |
instrument.c - file and directory instrumentation routines |
3 |
Copyright (C) 2007, 2008 siliconforks.com |
Copyright (C) 2007, 2008, 2009 siliconforks.com |
4 |
|
|
5 |
This program is free software; you can redistribute it and/or modify |
This program is free software; you can redistribute it and/or modify |
6 |
it under the terms of the GNU General Public License as published by |
it under the terms of the GNU General Public License as published by |
17 |
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
18 |
*/ |
*/ |
19 |
|
|
20 |
|
#include <config.h> |
21 |
|
|
22 |
#include "instrument.h" |
#include "instrument.h" |
23 |
|
|
24 |
#include <assert.h> |
#include <assert.h> |
29 |
#include <sys/stat.h> |
#include <sys/stat.h> |
30 |
#include <sys/types.h> |
#include <sys/types.h> |
31 |
|
|
32 |
|
#include "encoding.h" |
33 |
|
#include "global.h" |
34 |
#include "instrument-js.h" |
#include "instrument-js.h" |
35 |
#include "resource-manager.h" |
#include "resource-manager.h" |
36 |
#include "util.h" |
#include "util.h" |
54 |
return FILE_TYPE_HTML; |
return FILE_TYPE_HTML; |
55 |
} |
} |
56 |
else { |
else { |
57 |
return FILE_TYPE_UNKNOWN; |
return FILE_TYPE_OTHER; |
58 |
} |
} |
59 |
} |
} |
60 |
|
|
85 |
if (instrumenting) { |
if (instrumenting) { |
86 |
enum FileType file_type = get_file_type(source_file); |
enum FileType file_type = get_file_type(source_file); |
87 |
switch (file_type) { |
switch (file_type) { |
88 |
case FILE_TYPE_UNKNOWN: |
case FILE_TYPE_OTHER: |
89 |
case FILE_TYPE_HTML: |
case FILE_TYPE_HTML: |
90 |
copy_file(source_file, destination_file); |
copy_file(source_file, destination_file); |
91 |
break; |
break; |
92 |
case FILE_TYPE_JS: |
case FILE_TYPE_JS: |
93 |
{ |
{ |
94 |
FILE * input = xfopen(source_file, "r"); |
FILE * input = xfopen(source_file, "rb"); |
95 |
FILE * output = xfopen(destination_file, "w"); |
FILE * output = xfopen(destination_file, "wb"); |
96 |
|
|
97 |
Stream * input_stream = Stream_new(0); |
Stream * input_stream = Stream_new(0); |
98 |
Stream * output_stream = Stream_new(0); |
Stream * output_stream = Stream_new(0); |
99 |
|
|
100 |
Stream_write_file_contents(input_stream, input); |
Stream_write_file_contents(input_stream, input); |
101 |
|
|
102 |
jscoverage_instrument_js(id, input_stream, output_stream); |
size_t num_characters = input_stream->length; |
103 |
|
uint16_t * characters = NULL; |
104 |
|
int result = jscoverage_bytes_to_characters(jscoverage_encoding, input_stream->data, input_stream->length, &characters, &num_characters); |
105 |
|
if (result == JSCOVERAGE_ERROR_ENCODING_NOT_SUPPORTED) { |
106 |
|
fatal("encoding %s not supported", jscoverage_encoding); |
107 |
|
} |
108 |
|
else if (result == JSCOVERAGE_ERROR_INVALID_BYTE_SEQUENCE) { |
109 |
|
fatal("error decoding %s in file %s", jscoverage_encoding, id); |
110 |
|
} |
111 |
|
jscoverage_instrument_js(id, characters, num_characters, output_stream); |
112 |
|
free(characters); |
113 |
|
|
114 |
if (fwrite(output_stream->data, 1, output_stream->length, output) != output_stream->length) { |
if (fwrite(output_stream->data, 1, output_stream->length, output) != output_stream->length) { |
115 |
fatal("cannot write to file: %s", destination_file); |
fatal("cannot write to file: %s", destination_file); |
162 |
fatal("not a directory: %s", destination); |
fatal("not a directory: %s", destination); |
163 |
} |
} |
164 |
if (! directory_is_empty(destination)) { |
if (! directory_is_empty(destination)) { |
165 |
char * jscoverage_html = make_path(destination, "jscoverage.html"); |
char * expected_file = NULL; |
166 |
if (stat(jscoverage_html, &buf) == -1) { |
if (jscoverage_mode == JSCOVERAGE_MOZILLA) { |
167 |
|
char * modules_directory = make_path(destination, "modules"); |
168 |
|
expected_file = make_path(modules_directory, "jscoverage.jsm"); |
169 |
|
free(modules_directory); |
170 |
|
} |
171 |
|
else { |
172 |
|
expected_file = make_path(destination, "jscoverage.html"); |
173 |
|
} |
174 |
|
if (stat(expected_file, &buf) == -1) { |
175 |
fatal("refusing to overwrite directory: %s", destination); |
fatal("refusing to overwrite directory: %s", destination); |
176 |
} |
} |
177 |
free(jscoverage_html); |
free(expected_file); |
178 |
} |
} |
179 |
} |
} |
180 |
else if (errno == ENOENT) { |
else if (errno == ENOENT) { |
185 |
} |
} |
186 |
|
|
187 |
/* copy the resources */ |
/* copy the resources */ |
188 |
jscoverage_copy_resources(destination); |
if (jscoverage_mode == JSCOVERAGE_MOZILLA) { |
189 |
|
char * chrome_directory = make_path(destination, "chrome"); |
190 |
|
char * jscoverage_chrome_directory = make_path(chrome_directory, "jscoverage"); |
191 |
|
mkdirs(jscoverage_chrome_directory); |
192 |
|
copy_resource("jscoverage.manifest", chrome_directory); |
193 |
|
copy_resource("jscoverage.html", jscoverage_chrome_directory); |
194 |
|
copy_resource("jscoverage.css", jscoverage_chrome_directory); |
195 |
|
copy_resource("jscoverage.js", jscoverage_chrome_directory); |
196 |
|
copy_resource("jscoverage-throbber.gif", jscoverage_chrome_directory); |
197 |
|
copy_resource("jscoverage-highlight.css", jscoverage_chrome_directory); |
198 |
|
copy_resource("jscoverage.xul", jscoverage_chrome_directory); |
199 |
|
copy_resource("jscoverage-overlay.js", jscoverage_chrome_directory); |
200 |
|
free(jscoverage_chrome_directory); |
201 |
|
free(chrome_directory); |
202 |
|
|
203 |
|
char * modules_directory = make_path(destination, "modules"); |
204 |
|
mkdirs(modules_directory); |
205 |
|
copy_resource("jscoverage.jsm", modules_directory); |
206 |
|
free(modules_directory); |
207 |
|
} |
208 |
|
else { |
209 |
|
jscoverage_copy_resources(destination); |
210 |
|
} |
211 |
|
|
212 |
/* finally: copy the directory */ |
/* finally: copy the directory */ |
213 |
struct DirListEntry * list = make_recursive_dir_list(source); |
struct DirListEntry * list = make_recursive_dir_list(source); |
246 |
free(s); |
free(s); |
247 |
free(d); |
free(d); |
248 |
} |
} |
|
free_dir_list(list); |
|
|
} |
|
249 |
|
|
250 |
void jscoverage_copy_resources(const char * destination_directory) { |
free_dir_list(list); |
|
copy_resource("jscoverage.html", destination_directory); |
|
|
copy_resource("jscoverage.css", destination_directory); |
|
|
copy_resource("jscoverage.js", destination_directory); |
|
|
copy_resource("jscoverage-throbber.gif", destination_directory); |
|
|
copy_resource("jscoverage-sh_main.js", destination_directory); |
|
|
copy_resource("jscoverage-sh_javascript.js", destination_directory); |
|
|
copy_resource("jscoverage-sh_nedit.css", destination_directory); |
|
251 |
} |
} |