ref: 8c21bb0411c9180520f65a113a9237c4235c6d2a
dir: /js-load.c/
#include "js.h"
#include "js-parse.h"
static int jsP_loadstring(js_State *J, const char *filename, const char *source)
{
return jsP_parse(J, filename, source);
}
int js_loadstring(js_State *J, const char *source)
{
return jsP_loadstring(J, "(string)", source);
}
int js_loadfile(js_State *J, const char *filename)
{
FILE *f;
char *s;
int n, t;
f = fopen(filename, "r");
if (!f)
return js_error(J, "cannot open file: '%s'", filename);
fseek(f, 0, SEEK_END);
n = ftell(f);
fseek(f, 0, SEEK_SET);
s = malloc(n + 1); /* add space for string terminator */
if (!s) {
fclose(f);
return js_error(J, "cannot allocate storage for file contents: '%s'", filename);
}
t = fread(s, 1, n, f);
if (t != n) {
free(s);
fclose(f);
return js_error(J, "cannot read data from file: '%s'", filename);
}
s[n] = 0; /* zero-terminate string containing file data */
t = jsP_loadstring(J, filename, s);
free(s);
fclose(f);
return t;
}