Ardour
9.0-pre0-350-gf17a656217
Iterator.h
Go to the documentation of this file.
1
//------------------------------------------------------------------------------
2
/*
3
https://github.com/vinniefalco/LuaBridge
4
5
Copyright 2012, Vinnie Falco <vinnie.falco@gmail.com>
6
7
License: The MIT License (http://www.opensource.org/licenses/mit-license.php)
8
9
Permission is hereby granted, free of charge, to any person obtaining a copy
10
of this software and associated documentation files (the "Software"), to deal
11
in the Software without restriction, including without limitation the rights
12
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
copies of the Software, and to permit persons to whom the Software is
14
furnished to do so, subject to the following conditions:
15
16
The above copyright notice and this permission notice shall be included in all
17
copies or substantial portions of the Software.
18
19
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
SOFTWARE.
26
*/
27
//==============================================================================
28
31
class
Iterator
32
{
33
private
:
34
lua_State
*
m_L
;
35
LuaRef
m_table
;
36
LuaRef
m_key
;
37
LuaRef
m_value
;
38
39
void
next
()
40
{
41
m_table
.
push
(
m_L
);
42
m_key
.
push
(
m_L
);
43
if
(
lua_next
(
m_L
, -2))
44
{
45
m_value
.
pop
(
m_L
);
46
m_key
.
pop
(
m_L
);
47
}
48
else
49
{
50
m_key
=
Nil
();
51
m_value
=
Nil
();
52
}
53
lua_pop
(
m_L
, 1);
54
}
55
56
public
:
57
explicit
Iterator
(
LuaRef
table)
58
:
m_L
(table.
state
())
59
,
m_table
(table)
60
,
m_key
(table.
state
())
// m_key is nil
61
,
m_value
(table.
state
())
// m_value is nil
62
{
63
next
();
// get the first (key, value) pair from table
64
}
65
66
lua_State
*
state
()
const
67
{
68
return
m_L
;
69
}
70
71
LuaRef
operator*
()
const
72
{
73
return
m_value
;
74
}
75
76
LuaRef
operator->
()
const
77
{
78
return
m_value
;
79
}
80
81
Iterator
&
operator++
()
82
{
83
if
(
isNil
())
84
{
85
// if the iterator reaches the end, do nothing
86
return
*
this
;
87
}
88
else
89
{
90
next
();
91
return
*
this
;
92
}
93
}
94
95
inline
bool
isNil
()
const
96
{
97
return
m_key
.
isNil
();
98
}
99
100
inline
LuaRef
key
()
const
101
{
102
return
m_key
;
103
}
104
105
inline
LuaRef
value
()
const
106
{
107
return
m_value
;
108
}
109
110
private
:
111
// Don't use postfix increment, it is less efficient
112
Iterator
operator++
(
int
);
113
};
114
Iterator
Definition:
Iterator.h:32
Iterator::Iterator
Iterator(LuaRef table)
Definition:
Iterator.h:57
Iterator::m_key
LuaRef m_key
Definition:
Iterator.h:36
Iterator::operator*
LuaRef operator*() const
Definition:
Iterator.h:71
Iterator::next
void next()
Definition:
Iterator.h:39
Iterator::operator++
Iterator & operator++()
Definition:
Iterator.h:81
Iterator::isNil
bool isNil() const
Definition:
Iterator.h:95
Iterator::key
LuaRef key() const
Definition:
Iterator.h:100
Iterator::m_L
lua_State * m_L
Definition:
Iterator.h:34
Iterator::operator->
LuaRef operator->() const
Definition:
Iterator.h:76
Iterator::m_table
LuaRef m_table
Definition:
Iterator.h:35
Iterator::state
lua_State * state() const
Definition:
Iterator.h:66
Iterator::m_value
LuaRef m_value
Definition:
Iterator.h:37
Iterator::value
LuaRef value() const
Definition:
Iterator.h:105
LuaRef
Definition:
LuaRef.h:52
LuaRef::push
void push(lua_State *L) const
Definition:
LuaRef.h:813
LuaRef::pop
void pop(lua_State *L)
Definition:
LuaRef.h:823
LuaRef::isNil
bool isNil() const
Definition:
LuaRef.h:857
lua_next
int() lua_next(lua_State *L, int idx)
lua_pop
#define lua_pop(L, n)
Definition:
lua-5.3.5/lua.h:346
Nil
Definition:
LuaRef.h:42
lua_State
Definition:
lstate.h:178
libs
lua
LuaBridge
detail
Iterator.h
Generated on Tue Nov 5 2024 05:28:44 for Ardour by
1.9.1