mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
d27f20d696
popen-noshell from http://code.google.com/p/popen-noshell/)
98 lines
2.1 KiB
C
98 lines
2.1 KiB
C
/*
|
|
KindlePDFViewer
|
|
Copyright (C) 2011 Hans-Werner Hilse <hilse@web.de>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <err.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
#include <lauxlib.h>
|
|
|
|
#include "blitbuffer.h"
|
|
#include "drawcontext.h"
|
|
#include "pdf.h"
|
|
#include "mupdfimg.h"
|
|
#include "djvu.h"
|
|
#include "cre.h"
|
|
#include "einkfb.h"
|
|
#include "input.h"
|
|
#include "ft.h"
|
|
#include "util.h"
|
|
|
|
#include "lfs.h"
|
|
|
|
lua_State *L;
|
|
|
|
int main(int argc, char **argv) {
|
|
int i;
|
|
|
|
if(argc < 2) {
|
|
fprintf(stderr, "needs config file as first argument.\n");
|
|
return -1;
|
|
}
|
|
|
|
/* set up Lua state */
|
|
L = lua_open();
|
|
if(L) {
|
|
luaL_openlibs(L);
|
|
|
|
luaopen_blitbuffer(L);
|
|
luaopen_drawcontext(L);
|
|
luaopen_einkfb(L);
|
|
luaopen_pdf(L);
|
|
luaopen_djvu(L);
|
|
luaopen_cre(L);
|
|
luaopen_input(L);
|
|
luaopen_util(L);
|
|
luaopen_ft(L);
|
|
luaopen_mupdfimg(L);
|
|
|
|
luaopen_lfs(L);
|
|
|
|
lua_newtable(L);
|
|
for(i=2; i < argc; i++) {
|
|
lua_pushstring(L, argv[i]);
|
|
lua_rawseti(L, -2, i-1);
|
|
}
|
|
lua_setglobal(L, "ARGV");
|
|
|
|
if(luaL_dofile(L, argv[1])) {
|
|
fprintf(stderr, "lua config error: %s\n", lua_tostring(L, -1));
|
|
lua_close(L);
|
|
L=NULL;
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
/* Make popen_noshell & valgrind happy */
|
|
if (fflush(stdout) != 0)
|
|
err(EXIT_FAILURE, "fflush(stdout)");
|
|
if (fflush(stderr) != 0)
|
|
err(EXIT_FAILURE, "fflush(stderr)");
|
|
close(STDIN_FILENO);
|
|
close(STDOUT_FILENO);
|
|
close(STDERR_FILENO);
|
|
|
|
return 0;
|
|
}
|
|
|