58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
#pragma once
|
||
|
||
#include "simdjson.h"
|
||
#include "twitter_user.h"
|
||
|
||
namespace partial_tweets {
|
||
|
||
// {
|
||
// "statuses": [
|
||
// {
|
||
// "created_at": "Sun Aug 31 00:29:15 +0000 2014",
|
||
// "id": 505874924095815700,
|
||
// "text": "@aym0566x \n\n名前:前田あゆみ\n第一印象:なんか怖っ!\n今の印象:とりあえずキモい。噛み合わない\n好きなところ:ぶすでキモいとこ😋✨✨\n思い出:んーーー、ありすぎ😊❤️\nLINE交換できる?:あぁ……ごめん✋\nトプ画をみて:照れますがな😘✨\n一言:お前は一生もんのダチ💖",
|
||
// "in_reply_to_status_id": null,
|
||
// "user": {
|
||
// "id": 1186275104,
|
||
// "screen_name": "ayuu0123"
|
||
// },
|
||
// "retweet_count": 0,
|
||
// "favorite_count": 0
|
||
// }
|
||
// ]
|
||
// }
|
||
|
||
struct tweet {
|
||
std::string_view created_at{};
|
||
uint64_t id{};
|
||
std::string_view result{};
|
||
uint64_t in_reply_to_status_id{};
|
||
twitter_user user{};
|
||
uint64_t retweet_count{};
|
||
uint64_t favorite_count{};
|
||
simdjson_really_inline bool operator==(const tweet &other) const {
|
||
return created_at == other.created_at &&
|
||
id == other.id &&
|
||
result == other.result &&
|
||
in_reply_to_status_id == other.in_reply_to_status_id &&
|
||
user == other.user &&
|
||
retweet_count == other.retweet_count &&
|
||
favorite_count == other.favorite_count;
|
||
}
|
||
simdjson_really_inline bool operator!=(const tweet &other) const { return !(*this == other); }
|
||
};
|
||
|
||
simdjson_unused static std::ostream &operator<<(std::ostream &o, const tweet &t) {
|
||
o << "created_at: " << t.created_at << std::endl;
|
||
o << "id: " << t.id << std::endl;
|
||
o << "result: " << t.result << std::endl;
|
||
o << "in_reply_to_status_id: " << t.in_reply_to_status_id << std::endl;
|
||
o << "user.id: " << t.user.id << std::endl;
|
||
o << "user.screen_name: " << t.user.screen_name << std::endl;
|
||
o << "retweet_count: " << t.retweet_count << std::endl;
|
||
o << "favorite_count: " << t.favorite_count << std::endl;
|
||
return o;
|
||
}
|
||
|
||
} // namespace partial_tweets
|