| /* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| |
| |
| #include "ts_lua_remap.h" |
| |
| |
| typedef enum { |
| TS_LUA_REMAP_NO_REMAP = 0, |
| TS_LUA_REMAP_DID_REMAP, |
| TS_LUA_REMAP_NO_REMAP_STOP, |
| TS_LUA_REMAP_DID_REMAP_STOP, |
| TS_LUA_REMAP_ERROR = -1, |
| } TSLuaRemapStatus; |
| |
| int ts_lua_remap_status_id[] = { |
| TS_LUA_REMAP_NO_REMAP, |
| TS_LUA_REMAP_DID_REMAP, |
| TS_LUA_REMAP_NO_REMAP_STOP, |
| TS_LUA_REMAP_DID_REMAP_STOP, |
| TS_LUA_REMAP_ERROR, |
| }; |
| |
| char * ts_lua_remap_status_string[] = { |
| "TS_LUA_REMAP_NO_REMAP", |
| "TS_LUA_REMAP_DID_REMAP", |
| "TS_LUA_REMAP_NO_REMAP_STOP", |
| "TS_LUA_REMAP_DID_REMAP_STOP", |
| "TS_LUA_REMAP_ERROR", |
| }; |
| |
| |
| static void ts_lua_inject_remap_variables(lua_State *L); |
| |
| |
| void |
| ts_lua_inject_remap_api(lua_State *L) |
| { |
| ts_lua_inject_remap_variables(L); |
| } |
| |
| static void |
| ts_lua_inject_remap_variables(lua_State *L) |
| { |
| int i; |
| |
| for (i = 0; i < sizeof(ts_lua_remap_status_string)/sizeof(char*); i++) { |
| lua_pushinteger(L, ts_lua_remap_status_id[i]); |
| lua_setglobal(L, ts_lua_remap_status_string[i]); |
| } |
| } |
| |