Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
006ac668
Commit
006ac668
authored
Mar 30, 2016
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
temporary removed sqlite_sink from the project (not compiling well under gcc)
parent
a2061e37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
72 deletions
+0
-72
sqlite_sink.h
include/spdlog/sinks/sqlite_sink.h
+0
-72
No files found.
include/spdlog/sinks/sqlite_sink.h
deleted
100644 → 0
View file @
a2061e37
//
// Copyright(c) 2015 spdlog.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
#include <spdlog/sinks/sink.h>
#include <spdlog/details/log_msg.h>
#include <spdlog/common.h>
#include <sqlite3.h>
namespace
spdlog
{
namespace
sinks
{
class
sqlite_sink
:
public
sink
{
public
:
explicit
sqlite_sink
(
const
std
::
string
&
databaseName
)
{
if
(
sqlite3_open
(
databaseName
.
c_str
(),
&
_database
))
throw
spdlog_ex
(
"Error opening database"
);
if
(
sqlite3_prepare_v2
(
_database
,
"INSERT INTO Logs (TimeStamp,Level,Message,LoggerName,ThreadId) VALUES (?,?,?,?,?)"
,
-
1
,
&
_query_stmt
,
nullptr
)
!=
SQLITE_OK
)
throw
spdlog_ex
(
sqlite3_errmsg
(
_database
));
}
~
sqlite_sink
()
{
sqlite3_finalize
(
_query_stmt
);
sqlite3_close
(
_database
);
}
void
flush
()
override
{
}
void
bind_to_statement
(
const
details
::
log_msg
&
msg
)
const
{
auto
time
=
std
::
chrono
::
system_clock
::
to_time_t
(
msg
.
time
);
char
time_str
[
26
];
ctime_s
(
time_str
,
sizeof
(
time_str
),
&
time
);
if
(
sqlite3_bind_text
(
_query_stmt
,
1
,
time_str
,
-
1
,
SQLITE_STATIC
)
!=
SQLITE_OK
||
sqlite3_bind_text
(
_query_stmt
,
2
,
to_str
(
msg
.
level
),
-
1
,
SQLITE_STATIC
)
!=
SQLITE_OK
||
sqlite3_bind_text
(
_query_stmt
,
3
,
msg
.
raw
.
c_str
(),
-
1
,
SQLITE_STATIC
)
!=
SQLITE_OK
||
sqlite3_bind_text
(
_query_stmt
,
4
,
msg
.
logger_name
.
c_str
(),
-
1
,
SQLITE_STATIC
)
!=
SQLITE_OK
||
sqlite3_bind_int
(
_query_stmt
,
5
,
msg
.
thread_id
)
!=
SQLITE_OK
)
throw
spdlog_ex
(
sqlite3_errmsg
(
_database
));
}
void
log
(
const
details
::
log_msg
&
msg
)
override
{
bind_to_statement
(
msg
);
if
(
sqlite3_step
(
_query_stmt
)
!=
SQLITE_DONE
)
{
throw
spdlog_ex
(
sqlite3_errmsg
(
_database
));
}
sqlite3_reset
(
_query_stmt
);
sqlite3_clear_bindings
(
_query_stmt
);
}
private
:
sqlite3
*
_database
;
sqlite3_stmt
*
_query_stmt
;
};
}
}
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