-
Notifications
You must be signed in to change notification settings - Fork 0
/
newtrequest.cpp
108 lines (97 loc) · 3.99 KB
/
newtrequest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/***************************************************************************
* Simple monitoring program for the PDSF cluster at NERSC using NEWT. *
* Copyright (C) 2015 Markus Fasel, Lawrence Berkeley National Laboratory *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#include "newtrequest.h"
#include <cstdlib>
#include <curl/curl.h>
#include <iostream>
namespace NEWT {
///
/// \brief NEWTRequest::NEWTRequest
/// \param url
/// \param payload
/// \param method
///
/// Consturctor, creating http request and sending it to NERSC
///
NEWTRequest::NEWTRequest(std::string url, std::string payload, REQUEST_METHOD method, COOKIE_MODE cookie, std::string cookiefile):
fRequestURL(url),
fPayload(payload),
fResponse(""),
fCookie(cookiefile),
fRequestMethod(method),
fRequestStatus(-1)
{
SendRequest(cookie);
}
///
/// \brief NEWTRequest::SendRequest
///
/// Send request and process the answer
///
void NEWTRequest::SendRequest(COOKIE_MODE cookie){
CURL *request = curl_easy_init();
CURLcode reqstat;
if(request){
//curl_easy_setopt(request, CURLOPT_VERBOSE, 1L);
curl_easy_setopt(request, CURLOPT_URL, fRequestURL.c_str());
struct curl_slist *headers = NULL;
if(fRequestMethod == kPOST){
curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(request, CURLOPT_POST, 1);
curl_easy_setopt(request, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(request, CURLOPT_POSTFIELDS, fPayload.c_str());
}
// handle result
curl_easy_setopt(request, CURLOPT_WRITEFUNCTION, HandleNerscResponse);
curl_easy_setopt(request, CURLOPT_WRITEDATA, &fResponse);
if(cookie == kWrite){
//std::cout << "Setting write cookie file " << fCookie << std::endl;
curl_easy_setopt(request, CURLOPT_COOKIEJAR, fCookie.c_str());
} else if(cookie == kRead){
//std::cout << "Setting read cookie file " << fCookie << std::endl;
curl_easy_setopt(request, CURLOPT_COOKIEFILE, fCookie.c_str());
}
reqstat = curl_easy_perform(request);
if(reqstat == CURLE_OK){
fRequestStatus = 1;
} else
fRequestStatus = 0;
std::cout << "Answer received from NERSC: " << fResponse << std::endl;
// Cleanup after request
curl_easy_cleanup(request);
if(fRequestMethod == kPOST){
curl_slist_free_all(headers);
}
}
}
///
/// \brief NEWTRequest::request_callback
/// \param ptr message received from HTTP request
/// \param size
/// \param nmemb
/// \param ourpointer (type std::string) pointer to where to write the answer to
/// \return
///
/// Callback function used to interpret the result of the NEWT request
///
size_t HandleNerscResponse(void *ptr, size_t /*size*/, size_t /*nmemb*/, void *ourpointer){
std::string *answer = static_cast<std::string *>(ourpointer);
*answer = static_cast<char *>(ptr);
return answer->length();
}
}