-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds an api to collect results into direct object and/or its stl-container #122
Open
pPanda-beta
wants to merge
2
commits into
SqliteModernCpp:master
Choose a base branch
from
pPanda-beta:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
|
||
#ifndef SQLITE_COLLECTORS_H | ||
#define SQLITE_COLLECTORS_H | ||
|
||
#include <sqlite_modern_cpp.h> | ||
|
||
#if __cplusplus > 201402 | ||
#define CPP14_SUPPORTED | ||
#endif | ||
|
||
#ifdef CPP14_SUPPORTED | ||
#define __COLLECTOR_RETURN_TYPE auto | ||
#define __COLLECTOR_CTOR_OF_T(T,X) {X} | ||
#else | ||
#define __COLLECTOR_RETURN_TYPE std::function<void(Args...)> | ||
#define __COLLECTOR_CTOR_OF_T(T,X) T(X) | ||
#endif | ||
|
||
template <typename ...Args> | ||
struct collect | ||
{ | ||
template<typename T, template<class, class...> class C> | ||
inline static | ||
__COLLECTOR_RETURN_TYPE | ||
to(C<T> &container) | ||
{ | ||
return [&container](const Args&... args) | ||
{ | ||
container.push_back(__COLLECTOR_CTOR_OF_T(T,args...)); | ||
}; | ||
} | ||
|
||
template<typename T, template<class, class...> class C> | ||
inline static | ||
__COLLECTOR_RETURN_TYPE | ||
to(C<std::shared_ptr<T>> &container) | ||
{ | ||
return [&container](const Args&... args) | ||
{ | ||
container.push_back(std::make_shared<T>(args...)); | ||
}; | ||
} | ||
|
||
template<template<class, class...> class C, typename T > | ||
struct as | ||
{ | ||
friend C<T> operator>>(sqlite::database_binder& db_binder, as<C,T>) | ||
{ | ||
C<T> container; | ||
db_binder>>to(container); | ||
return container; | ||
} | ||
|
||
friend C<T> operator>>(sqlite::database_binder&& db_binder, as<C,T>) | ||
{ | ||
return db_binder>>as<C,T>(); | ||
} | ||
}; | ||
|
||
template<typename T > | ||
struct as<std::shared_ptr,T> | ||
{ | ||
friend std::shared_ptr<T> operator>>(sqlite::database_binder& db_binder, as<std::shared_ptr,T>) | ||
{ | ||
std::shared_ptr<T> objP; | ||
db_binder>>[&objP](Args... args) | ||
{ | ||
objP = std::make_shared<T>(args...); | ||
}; | ||
return objP; | ||
} | ||
|
||
friend std::shared_ptr<T> operator>>(sqlite::database_binder&& db_binder, as<std::shared_ptr,T> whatever) | ||
{ | ||
return db_binder>>whatever; | ||
} | ||
|
||
}; | ||
}; | ||
|
||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
|
||
#include "collectors.h" | ||
#include <list> | ||
#include <algorithm> | ||
|
||
using namespace std; | ||
using namespace sqlite; | ||
|
||
struct user | ||
{ | ||
int id; | ||
string name; | ||
|
||
user(int _id, string _name):id(_id),name(_name) | ||
{ | ||
clog<<"object created : "<<*this<<"\n"; | ||
} | ||
|
||
friend std::ostream& operator <<(std::ostream& out, const user& a) | ||
{ | ||
out<<"<"<<a.id<<","<<a.name<<">"; | ||
return out; | ||
} | ||
}; | ||
|
||
|
||
database init_db() | ||
{ | ||
database db(":memory:"); | ||
db << "CREATE TABLE tbl (id integer, name string);"; | ||
db << "INSERT INTO tbl VALUES (?, ?);" << 1 << "hello"; | ||
db << "INSERT INTO tbl VALUES (?, ?);" << 2 << "world"; | ||
|
||
return db; | ||
} | ||
|
||
|
||
void test_single_user(database &db) | ||
{ | ||
auto may_be_user = db<<"SELECT * FROM tbl WHERE id = 1 ;" | ||
>> collect<int,string>::as<shared_ptr,user>(); | ||
assert(may_be_user); | ||
assert(may_be_user->name == "hello"); | ||
} | ||
|
||
void test_multiple_user(database &db) | ||
{ | ||
auto all_users = db<<"SELECT * FROM tbl ;" | ||
>> collect<int,string>::as<list,user>(); | ||
assert(not all_users.empty()); | ||
assert(any_of(all_users.begin(), all_users.end(), [](user u) | ||
{ | ||
return u.name == "hello"; | ||
})); | ||
} | ||
|
||
void test_multiple_usernames(database &db) | ||
{ | ||
auto names = db<<"SELECT name FROM tbl ORDER BY id DESC;" | ||
>> collect<string>::as<vector,string>(); | ||
assert(not names.empty()); | ||
assert(names[0] == "world"); | ||
assert(names[1] == "hello"); | ||
} | ||
|
||
void test_append_results_to_container(database &db) | ||
{ | ||
list<int> ids = {-1,0,11}; | ||
|
||
db<<"SELECT id FROM tbl ;" | ||
>>collect<int>::to(ids); | ||
|
||
list<int> expected = { -1,0,11, 1, 2}; | ||
assert(ids == expected); | ||
} | ||
|
||
int main() | ||
{ | ||
database db=init_db(); | ||
|
||
test_single_user(db); | ||
test_multiple_user(db); | ||
test_multiple_usernames(db); | ||
|
||
test_append_results_to_container(db); | ||
|
||
return 0; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't these names violate the standard?