Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
d04470fb
Commit
d04470fb
authored
11 years ago
by
Dmitry Simonenko
Browse files
Options
Downloads
Patches
Plain Diff
lua-plus-dict: added errinj related files.
parent
45bb6a9d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/lua/errinj.h
+36
-0
36 additions, 0 deletions
include/lua/errinj.h
src/lua/errinj.cc
+91
-0
91 additions, 0 deletions
src/lua/errinj.cc
with
127 additions
and
0 deletions
include/lua/errinj.h
0 → 100644
+
36
−
0
View file @
d04470fb
#ifndef INCLUDES_TARANTOOL_LUA_ERRINJ_H
#define INCLUDES_TARANTOOL_LUA_ERRINJ_H
/*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
struct
lua_State
;
void
tarantool_lua_errinj_init
(
struct
lua_State
*
L
);
#endif
/* INCLUDES_TARANTOOL_LUA_ERRINJ_H */
This diff is collapsed.
Click to expand it.
src/lua/errinj.cc
0 → 100644
+
91
−
0
View file @
d04470fb
/*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include
"lua/errinj.h"
extern
"C"
{
#include
<lua.h>
#include
<lauxlib.h>
#include
<lualib.h>
}
/* extern "C" */
#include
<say.h>
#include
<string.h>
#include
<errinj.h>
#include
<recovery.h>
#include
"tarantool.h"
#include
"box/box.h"
static
int
lbox_errinj_set
(
struct
lua_State
*
L
)
{
char
*
name
=
(
char
*
)
luaL_checkstring
(
L
,
1
);
bool
state
=
lua_toboolean
(
L
,
2
);
if
(
errinj_set_byname
(
name
,
state
))
{
lua_pushfstring
(
L
,
"error: can't find error injection '%s'"
,
name
);
return
1
;
}
lua_pushstring
(
L
,
"ok"
);
return
1
;
}
static
inline
int
lbox_errinj_cb
(
struct
errinj
*
e
,
void
*
cb_ctx
)
{
struct
lua_State
*
L
=
(
struct
lua_State
*
)
cb_ctx
;
lua_pushstring
(
L
,
e
->
name
);
lua_newtable
(
L
);
lua_pushstring
(
L
,
"state"
);
lua_pushboolean
(
L
,
e
->
state
);
lua_settable
(
L
,
-
3
);
lua_settable
(
L
,
-
3
);
return
0
;
}
static
int
lbox_errinj_info
(
struct
lua_State
*
L
)
{
lua_newtable
(
L
);
errinj_foreach
(
lbox_errinj_cb
,
L
);
return
1
;
}
static
const
struct
luaL_reg
errinjlib
[]
=
{
{
"info"
,
lbox_errinj_info
},
{
"set"
,
lbox_errinj_set
},
{
NULL
,
NULL
}
};
/** Initialize box.errinj package. */
void
tarantool_lua_errinj_init
(
struct
lua_State
*
L
)
{
luaL_register
(
L
,
"box.errinj"
,
errinjlib
);
lua_pop
(
L
,
1
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment