File: aegisub.cpp

package info (click to toggle)
aegisub 3.2.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,852 kB
  • sloc: cpp: 56,932; ansic: 16,422; asm: 3,618; sh: 3,582; makefile: 407; python: 350; perl: 274; cs: 205; xml: 196; objc: 47
file content (94 lines) | stat: -rw-r--r-- 2,542 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright (c) 2014, Thomas Goyne <plorkyeran@aegisub.org>
//
// Permission to use, copy, modify, and distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
//
// Aegisub Project http://www.aegisub.org/

#include <libaegisub/lua/modules.h>
#include <libaegisub/lua/script_reader.h>
#include <libaegisub/lua/utils.h>

#include <libaegisub/dispatch.h>
#include <libaegisub/log.h>

#include <cstdio>
#include <cstdlib>

using namespace agi::lua;

namespace {
void check(lua_State *L, int status) {
	if (status && !lua_isnil(L, -1)) {
		fprintf(stderr, "%s\n", get_string_or_default(L, -1).c_str());
		exit(status);
	}
}

int close_and_exit(lua_State *L) {
	int status = lua_tointeger(L, 1);
	lua_close(L);
	exit(status);
}
}

int main(int argc, char **argv) {
	if (argc < 2) {
		fprintf(stderr, "usage: aegisub-lua <script> [args]\n");
		return 1;
	}

	agi::dispatch::Init([](agi::dispatch::Thunk f) { });
	agi::log::log = new agi::log::LogSink;

	// Init lua state
	lua_State *L = lua_open();
	if (!L) {
		fprintf(stderr, "Failed to create Lua state\n");
		return 1;
	}

	preload_modules(L);
	Install(L, {"include"});

	// Patch os.exit to close the lua state first since busted calls it when
	// it's done
	lua_getglobal(L, "os");
	lua_pushcfunction(L, close_and_exit);
	lua_setfield(L, -2, "exit");
	lua_pop(L, 1);

	// Build arg table for scripts
	lua_createtable(L, argc - 1, 0);
	for (int i = 1; i < argc; ++i) {
		lua_pushstring(L, argv[i]);
		lua_rawseti(L, -2, i - 1);
	}
	lua_setglobal(L, "arg");

	// Stack needs to be error handler -> function -> args
	lua_pushcfunction(L, add_stack_trace);

	try {
		check(L, !LoadFile(L, argv[1]));
	} catch (agi::Exception const& e) {
		fprintf(stderr, "%s\n", e.GetMessage().c_str());
	}

	for (int i = 2; i < argc; ++i)
		lua_pushstring(L, argv[i]);

	int base = lua_gettop(L) - argc + 1;
	check(L, lua_pcall(L, argc - 2, LUA_MULTRET, base));
	lua_close(L);
}