Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
95a2dbdd
Commit
95a2dbdd
authored
Jan 07, 2005
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added get methods on event object
parent
f105070e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
76 additions
and
32 deletions
+76
-32
ndb/include/ndbapi/NdbDictionary.hpp
ndb/include/ndbapi/NdbDictionary.hpp
+18
-3
ndb/include/ndbapi/NdbEventOperation.hpp
ndb/include/ndbapi/NdbEventOperation.hpp
+0
-13
ndb/src/ndbapi/NdbDictionary.cpp
ndb/src/ndbapi/NdbDictionary.cpp
+24
-1
ndb/src/ndbapi/NdbDictionaryImpl.cpp
ndb/src/ndbapi/NdbDictionaryImpl.cpp
+24
-13
ndb/src/ndbapi/NdbDictionaryImpl.hpp
ndb/src/ndbapi/NdbDictionaryImpl.hpp
+4
-2
ndb/src/ndbapi/ndberror.c
ndb/src/ndbapi/ndberror.c
+6
-0
No files found.
ndb/include/ndbapi/NdbDictionary.hpp
View file @
95a2dbdd
...
@@ -932,21 +932,29 @@ public:
...
@@ -932,21 +932,29 @@ public:
Event
(
const
char
*
name
);
Event
(
const
char
*
name
);
virtual
~
Event
();
virtual
~
Event
();
/**
/**
* Set unique identifier for the event
* Set
/get
unique identifier for the event
*/
*/
void
setName
(
const
char
*
name
);
void
setName
(
const
char
*
name
);
const
char
*
getName
()
const
;
/**
/**
* Set table for which events should be detected
* Set table for which events should be detected
*/
*/
void
setTable
(
const
char
*
tableName
);
void
setTable
(
const
char
*
tableName
);
/**
* Get table name for events
*
* @return table name
*/
const
char
*
getTableName
()
const
;
/**
/**
* Add type of event that should be detected
* Add type of event that should be detected
*/
*/
void
addTableEvent
(
const
TableEvent
te
);
void
addTableEvent
(
const
TableEvent
te
);
/**
/**
*
S
et durability of the event
*
Get/s
et durability of the event
*/
*/
void
setDurability
(
const
EventDurability
ed
);
void
setDurability
(
EventDurability
ed
);
EventDurability
getDurability
()
const
;
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
void
addColumn
(
const
Column
&
c
);
void
addColumn
(
const
Column
&
c
);
#endif
#endif
...
@@ -977,6 +985,13 @@ public:
...
@@ -977,6 +985,13 @@ public:
*/
*/
void
addEventColumns
(
int
n
,
const
char
**
columnNames
);
void
addEventColumns
(
int
n
,
const
char
**
columnNames
);
/**
* Get no of columns defined in an Event
*
* @return Number of columns, -1 on error
*/
int
getNoOfEventColumns
()
const
;
/**
/**
* Get object status
* Get object status
*/
*/
...
...
ndb/include/ndbapi/NdbEventOperation.hpp
View file @
95a2dbdd
...
@@ -14,19 +14,6 @@
...
@@ -14,19 +14,6 @@
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/*****************************************************************************
* Name: NdbEventOperation.hpp
* Include:
* Link:
* Author: Tomas Ulin MySQL AB
* Date: 2003-11-21
* Version: 0.1
* Description: Event support
* Documentation:
* Adjust: 2003-11-21 Tomas Ulin First version.
* Adjust: 2003-12-11 Tomas Ulin Alpha Release.
****************************************************************************/
#ifndef NdbEventOperation_H
#ifndef NdbEventOperation_H
#define NdbEventOperation_H
#define NdbEventOperation_H
...
...
ndb/src/ndbapi/NdbDictionary.cpp
View file @
95a2dbdd
...
@@ -604,12 +604,24 @@ NdbDictionary::Event::setName(const char * name)
...
@@ -604,12 +604,24 @@ NdbDictionary::Event::setName(const char * name)
m_impl
.
setName
(
name
);
m_impl
.
setName
(
name
);
}
}
const
char
*
NdbDictionary
::
Event
::
getName
()
const
{
return
m_impl
.
getName
();
}
void
void
NdbDictionary
::
Event
::
setTable
(
const
char
*
table
)
NdbDictionary
::
Event
::
setTable
(
const
char
*
table
)
{
{
m_impl
.
setTable
(
table
);
m_impl
.
setTable
(
table
);
}
}
const
char
*
NdbDictionary
::
Event
::
getTableName
()
const
{
return
m_impl
.
getTableName
();
}
void
void
NdbDictionary
::
Event
::
addTableEvent
(
const
TableEvent
t
)
NdbDictionary
::
Event
::
addTableEvent
(
const
TableEvent
t
)
{
{
...
@@ -617,11 +629,17 @@ NdbDictionary::Event::addTableEvent(const TableEvent t)
...
@@ -617,11 +629,17 @@ NdbDictionary::Event::addTableEvent(const TableEvent t)
}
}
void
void
NdbDictionary
::
Event
::
setDurability
(
const
EventDurability
d
)
NdbDictionary
::
Event
::
setDurability
(
EventDurability
d
)
{
{
m_impl
.
setDurability
(
d
);
m_impl
.
setDurability
(
d
);
}
}
NdbDictionary
::
Event
::
EventDurability
NdbDictionary
::
Event
::
getDurability
()
const
{
return
m_impl
.
getDurability
();
}
void
void
NdbDictionary
::
Event
::
addColumn
(
const
Column
&
c
){
NdbDictionary
::
Event
::
addColumn
(
const
Column
&
c
){
NdbColumnImpl
*
col
=
new
NdbColumnImpl
;
NdbColumnImpl
*
col
=
new
NdbColumnImpl
;
...
@@ -649,6 +667,11 @@ NdbDictionary::Event::addEventColumns(int n, const char ** names)
...
@@ -649,6 +667,11 @@ NdbDictionary::Event::addEventColumns(int n, const char ** names)
addEventColumn
(
names
[
i
]);
addEventColumn
(
names
[
i
]);
}
}
int
NdbDictionary
::
Event
::
getNoOfEventColumns
()
const
{
return
m_impl
.
getNoOfEventColumns
();
}
NdbDictionary
::
Object
::
Status
NdbDictionary
::
Object
::
Status
NdbDictionary
::
Event
::
getObjectStatus
()
const
NdbDictionary
::
Event
::
getObjectStatus
()
const
{
{
...
...
ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
95a2dbdd
...
@@ -546,6 +546,11 @@ void NdbEventImpl::setName(const char * name)
...
@@ -546,6 +546,11 @@ void NdbEventImpl::setName(const char * name)
m_externalName
.
assign
(
name
);
m_externalName
.
assign
(
name
);
}
}
const
char
*
NdbEventImpl
::
getName
()
const
{
return
m_externalName
.
c_str
();
}
void
void
NdbEventImpl
::
setTable
(
const
char
*
table
)
NdbEventImpl
::
setTable
(
const
char
*
table
)
{
{
...
@@ -553,17 +558,11 @@ NdbEventImpl::setTable(const char * table)
...
@@ -553,17 +558,11 @@ NdbEventImpl::setTable(const char * table)
}
}
const
char
*
const
char
*
NdbEventImpl
::
getTable
()
const
NdbEventImpl
::
getTable
Name
()
const
{
{
return
m_tableName
.
c_str
();
return
m_tableName
.
c_str
();
}
}
const
char
*
NdbEventImpl
::
getName
()
const
{
return
m_externalName
.
c_str
();
}
void
void
NdbEventImpl
::
addTableEvent
(
const
NdbDictionary
::
Event
::
TableEvent
t
=
NdbDictionary
::
Event
::
TE_ALL
)
NdbEventImpl
::
addTableEvent
(
const
NdbDictionary
::
Event
::
TableEvent
t
=
NdbDictionary
::
Event
::
TE_ALL
)
{
{
...
@@ -581,6 +580,17 @@ NdbEventImpl::setDurability(const NdbDictionary::Event::EventDurability d)
...
@@ -581,6 +580,17 @@ NdbEventImpl::setDurability(const NdbDictionary::Event::EventDurability d)
m_dur
=
d
;
m_dur
=
d
;
}
}
NdbDictionary
::
Event
::
EventDurability
NdbEventImpl
::
getDurability
()
const
{
return
m_dur
;
}
int
NdbEventImpl
::
getNoOfEventColumns
()
const
{
return
m_attrIds
.
size
()
+
m_columns
.
size
();
}
/**
/**
* NdbDictionaryImpl
* NdbDictionaryImpl
*/
*/
...
@@ -2233,12 +2243,12 @@ int
...
@@ -2233,12 +2243,12 @@ int
NdbDictionaryImpl
::
createEvent
(
NdbEventImpl
&
evnt
)
NdbDictionaryImpl
::
createEvent
(
NdbEventImpl
&
evnt
)
{
{
int
i
;
int
i
;
NdbTableImpl
*
tab
=
getTable
(
evnt
.
getTable
());
NdbTableImpl
*
tab
=
getTable
(
evnt
.
getTable
Name
());
if
(
tab
==
0
){
if
(
tab
==
0
){
#ifdef EVENT_DEBUG
#ifdef EVENT_DEBUG
ndbout_c
(
"NdbDictionaryImpl::createEvent: table not found: %s"
,
ndbout_c
(
"NdbDictionaryImpl::createEvent: table not found: %s"
,
evnt
.
getTable
());
evnt
.
getTable
Name
());
#endif
#endif
return
-
1
;
return
-
1
;
}
}
...
@@ -2260,7 +2270,8 @@ NdbDictionaryImpl::createEvent(NdbEventImpl & evnt)
...
@@ -2260,7 +2270,8 @@ NdbDictionaryImpl::createEvent(NdbEventImpl & evnt)
evnt
.
m_facade
->
addColumn
(
*
(
col_impl
->
m_facade
));
evnt
.
m_facade
->
addColumn
(
*
(
col_impl
->
m_facade
));
}
else
{
}
else
{
ndbout_c
(
"Attr id %u in table %s not found"
,
evnt
.
m_attrIds
[
i
],
ndbout_c
(
"Attr id %u in table %s not found"
,
evnt
.
m_attrIds
[
i
],
evnt
.
getTable
());
evnt
.
getTableName
());
m_error
.
code
=
4713
;
return
-
1
;
return
-
1
;
}
}
}
}
...
@@ -2518,8 +2529,8 @@ NdbDictionaryImpl::getEvent(const char * eventName)
...
@@ -2518,8 +2529,8 @@ NdbDictionaryImpl::getEvent(const char * eventName)
}
}
// We only have the table name with internal name
// We only have the table name with internal name
ev
->
setTable
(
m_ndb
.
externalizeTableName
(
ev
->
getTable
()));
ev
->
setTable
(
m_ndb
.
externalizeTableName
(
ev
->
getTable
Name
()));
ev
->
m_tableImpl
=
getTable
(
ev
->
getTable
());
ev
->
m_tableImpl
=
getTable
(
ev
->
getTable
Name
());
// get the columns from the attrListBitmask
// get the columns from the attrListBitmask
...
...
ndb/src/ndbapi/NdbDictionaryImpl.hpp
View file @
95a2dbdd
...
@@ -196,10 +196,12 @@ public:
...
@@ -196,10 +196,12 @@ public:
void
setName
(
const
char
*
name
);
void
setName
(
const
char
*
name
);
const
char
*
getName
()
const
;
const
char
*
getName
()
const
;
void
setTable
(
const
char
*
table
);
void
setTable
(
const
char
*
table
);
const
char
*
getTable
()
const
;
const
char
*
getTable
Name
()
const
;
void
addTableEvent
(
const
NdbDictionary
::
Event
::
TableEvent
t
);
void
addTableEvent
(
const
NdbDictionary
::
Event
::
TableEvent
t
);
void
setDurability
(
const
NdbDictionary
::
Event
::
EventDurability
d
);
void
setDurability
(
NdbDictionary
::
Event
::
EventDurability
d
);
NdbDictionary
::
Event
::
EventDurability
getDurability
()
const
;
void
addEventColumn
(
const
NdbColumnImpl
&
c
);
void
addEventColumn
(
const
NdbColumnImpl
&
c
);
int
getNoOfEventColumns
()
const
;
void
print
()
{
void
print
()
{
ndbout_c
(
"NdbEventImpl: id=%d, key=%d"
,
ndbout_c
(
"NdbEventImpl: id=%d, key=%d"
,
...
...
ndb/src/ndbapi/ndberror.c
View file @
95a2dbdd
...
@@ -299,6 +299,12 @@ ErrorBundle ErrorCodes[] = {
...
@@ -299,6 +299,12 @@ ErrorBundle ErrorCodes[] = {
{
4232
,
AE
,
"Parallelism can only be between 1 and 240"
},
{
4232
,
AE
,
"Parallelism can only be between 1 and 240"
},
{
290
,
AE
,
"Scan not started or has been closed by kernel due to timeout"
},
{
290
,
AE
,
"Scan not started or has been closed by kernel due to timeout"
},
/**
* Event schema errors
*/
{
4713
,
SE
,
"Column defined in event does not exist in table"
},
/**
/**
* Event application errors
* Event application errors
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment