Introduce {,MAIN_}EXIT_WITH_ERROR
macros for exitting with an error
This commit is contained in:
parent
d34fade0cd
commit
9d40fef429
21
main.cpp
21
main.cpp
@ -36,6 +36,9 @@ bool doesFileExist(string filePath),
|
|||||||
#define DEFAULT_THREAD_ID 0
|
#define DEFAULT_THREAD_ID 0
|
||||||
#define MAIN_PRINT(x) THREAD_PRINT(DEFAULT_THREAD_ID, x)
|
#define MAIN_PRINT(x) THREAD_PRINT(DEFAULT_THREAD_ID, x)
|
||||||
|
|
||||||
|
#define EXIT_WITH_ERROR(x) { PRINT(x); exit(EXIT_FAILURE); }
|
||||||
|
#define MAIN_EXIT_WITH_ERROR(x) { MAIN_PRINT(x); exit(EXIT_FAILURE); }
|
||||||
|
|
||||||
mutex printMutex,
|
mutex printMutex,
|
||||||
channelsAlreadyTreatedAndToTreatMutex,
|
channelsAlreadyTreatedAndToTreatMutex,
|
||||||
quotaMutex;
|
quotaMutex;
|
||||||
@ -84,14 +87,12 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MAIN_PRINT("YouTube operational API instance URL missing!")
|
MAIN_EXIT_WITH_ERROR("YouTube operational API instance URL missing!")
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MAIN_PRINT("Unrecognized parameter " << argvStr)
|
MAIN_EXIT_WITH_ERROR("Unrecognized parameter " << argvStr)
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -273,8 +274,7 @@ void treatChannelOrVideo(unsigned short threadId, bool isChannel, string id, str
|
|||||||
json data = getJson(threadId, "playlistItems?part=snippet,contentDetails,status&playlistId=" + playlistToTreat + "&maxResults=50&pageToken=" + pageToken, true, channelToTreat, returnErrorIfPlaylistNotFound);
|
json data = getJson(threadId, "playlistItems?part=snippet,contentDetails,status&playlistId=" + playlistToTreat + "&maxResults=50&pageToken=" + pageToken, true, channelToTreat, returnErrorIfPlaylistNotFound);
|
||||||
if(data.contains("error"))
|
if(data.contains("error"))
|
||||||
{
|
{
|
||||||
PRINT("Not listing comments on videos, as `playlistItems` hasn't found the `uploads` playlist!")
|
EXIT_WITH_ERROR("Not listing comments on videos, as `playlistItems` hasn't found the `uploads` playlist!")
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
}
|
||||||
json items = data["items"];
|
json items = data["items"];
|
||||||
for(const auto& item : items)
|
for(const auto& item : items)
|
||||||
@ -302,8 +302,7 @@ void treatChannelOrVideo(unsigned short threadId, bool isChannel, string id, str
|
|||||||
}
|
}
|
||||||
else //if(videoCount >= 20000)
|
else //if(videoCount >= 20000)
|
||||||
{
|
{
|
||||||
PRINT("The videos count of the channel exceeds the supported 20,000 limit!")
|
EXIT_WITH_ERROR("The videos count of the channel exceeds the supported 20,000 limit!")
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -521,8 +520,7 @@ void treatChannelOrVideo(unsigned short threadId, bool isChannel, string id, str
|
|||||||
// We verify that we don't skip any message by verifying that the first message was already treated if we already treated some messages.
|
// We verify that we don't skip any message by verifying that the first message was already treated if we already treated some messages.
|
||||||
if(!messageIds.empty() && messageIds.find(firstMessageId) == messageIds.end())
|
if(!messageIds.empty() && messageIds.find(firstMessageId) == messageIds.end())
|
||||||
{
|
{
|
||||||
PRINT("The verification that we don't skip any message failed!")
|
EXIT_WITH_ERROR("The verification that we don't skip any message failed!")
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
}
|
||||||
for(const auto& message : snippet)
|
for(const auto& message : snippet)
|
||||||
{
|
{
|
||||||
@ -698,8 +696,7 @@ json getJson(unsigned short threadId, string url, bool usingYoutubeDataApiv3, st
|
|||||||
}
|
}
|
||||||
catch (json::parse_error& ex)
|
catch (json::parse_error& ex)
|
||||||
{
|
{
|
||||||
PRINT("Parse error for " << finalUrl << ", as got: " << content << " !")
|
EXIT_WITH_ERROR("Parse error for " << finalUrl << ", as got: " << content << " !")
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(data.contains("error"))
|
if(data.contains("error"))
|
||||||
|
Loading…
Reference in New Issue
Block a user