|
| 1 | +/* |
| 2 | + * Copyright (c) 2015, Parse, LLC. All rights reserved. |
| 3 | + * |
| 4 | + * You are hereby granted a non-exclusive, worldwide, royalty-free license to use, |
| 5 | + * copy, modify, and distribute this software in source code or binary form for use |
| 6 | + * in connection with the web services and APIs provided by Parse. |
| 7 | + * |
| 8 | + * As with any software that integrates with the Parse platform, your use of |
| 9 | + * this software is subject to the Parse Terms of Service |
| 10 | + * [https://www.parse.com/about/terms]. This copyright notice shall be |
| 11 | + * included in all copies or substantial portions of the software. |
| 12 | + * |
| 13 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 14 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| 15 | + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| 16 | + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
| 17 | + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 18 | + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 19 | + * |
| 20 | + */ |
| 21 | + |
| 22 | +#include "ParseClient.h" |
| 23 | + |
| 24 | +ParseClient::ParseClient() { |
| 25 | +} |
| 26 | + |
| 27 | +void ParseClient::begin(const char *applicationId, const char *clientKey) { |
| 28 | + Console.println("begin"); |
| 29 | + |
| 30 | + // send the info to linux through Bridge |
| 31 | + if(applicationId) { |
| 32 | + Bridge.put("appId", applicationId); |
| 33 | + } |
| 34 | + if (clientKey) { |
| 35 | + Bridge.put("clientKey", clientKey); |
| 36 | + } |
| 37 | +} |
| 38 | + |
| 39 | +void ParseClient::setInstallationId(const char *installationId) { |
| 40 | + this->installationId = installationId; |
| 41 | + if (installationId) { |
| 42 | + Bridge.put("installationId", installationId); |
| 43 | + } else { |
| 44 | + Bridge.put("installationId", ""); |
| 45 | + } |
| 46 | +} |
| 47 | + |
| 48 | +const char* ParseClient::getInstallationId() { |
| 49 | + if (!this->installationId) { |
| 50 | + char *buf = new char[37]; |
| 51 | + |
| 52 | + requestClient.begin("parse_request"); |
| 53 | + requestClient.addParameter("-i"); |
| 54 | + requestClient.run(); |
| 55 | + read(&requestClient, buf, 37); |
| 56 | + this->installationId = buf; |
| 57 | + } |
| 58 | + return this->installationId; |
| 59 | +} |
| 60 | + |
| 61 | +void ParseClient::setSessionToken(const char *sessionToken) { |
| 62 | + if ((sessionToken != NULL) && (strlen(sessionToken) > 0 )){ |
| 63 | + this->sessionToken = sessionToken; |
| 64 | + Bridge.put("sessionToken", sessionToken); |
| 65 | + } else { |
| 66 | + Bridge.put("sessionToken", ""); |
| 67 | + } |
| 68 | +} |
| 69 | + |
| 70 | +void ParseClient::clearSessionToken() { |
| 71 | + setSessionToken(NULL); |
| 72 | +} |
| 73 | + |
| 74 | +const char* ParseClient::getSessionToken() { |
| 75 | + if (!this->sessionToken) { |
| 76 | + char *buf = new char[33]; |
| 77 | + |
| 78 | + requestClient.begin("parse_request"); |
| 79 | + requestClient.addParameter("-s"); |
| 80 | + requestClient.run(); |
| 81 | + read(&requestClient, buf, 33); |
| 82 | + this->sessionToken = buf; |
| 83 | + } |
| 84 | + return this->sessionToken; |
| 85 | +} |
| 86 | + |
| 87 | +ParseResponse ParseClient::sendRequest(const char* httpVerb, const char* httpPath, const char* requestBody, const char* urlParams) { |
| 88 | + return sendRequest(String(httpVerb), String(httpPath), String(requestBody), String(urlParams)); |
| 89 | +} |
| 90 | + |
| 91 | +ParseResponse ParseClient::sendRequest(const String& httpVerb, const String& httpPath, const String& requestBody, const String& urlParams) { |
| 92 | + requestClient.begin("parse_request"); // start a process that launch the "parse_request" command |
| 93 | + |
| 94 | + requestClient.addParameter("-v"); |
| 95 | + requestClient.addParameter(httpVerb); |
| 96 | + requestClient.addParameter("-e"); |
| 97 | + requestClient.addParameter(httpPath); |
| 98 | + if (requestBody != "") { |
| 99 | + requestClient.addParameter("-d"); |
| 100 | + requestClient.addParameter(requestBody); |
| 101 | + } |
| 102 | + if (urlParams != "") { |
| 103 | + requestClient.addParameter("-p"); |
| 104 | + requestClient.addParameter(urlParams); |
| 105 | + requestClient.runAsynchronously(); |
| 106 | + } else { |
| 107 | + requestClient.run(); // Run the process and wait for its termination |
| 108 | + } |
| 109 | + |
| 110 | + ParseResponse response(&requestClient); |
| 111 | + return response; |
| 112 | +} |
| 113 | + |
| 114 | +bool ParseClient::startPushService() { |
| 115 | + pushClient.begin("parse_push"); // start a process that launch the "parse_request" command |
| 116 | + pushClient.runAsynchronously(); |
| 117 | + |
| 118 | + while(1) { |
| 119 | + if(pushClient.available()) { |
| 120 | + // read the push starting result |
| 121 | + char c = pushClient.read(); |
| 122 | + while(pushClient.available()) { |
| 123 | + pushClient.read(); |
| 124 | + } |
| 125 | + if (c == 's') { |
| 126 | + pushClient.write('n'); // send a signal that ready to consume next available push |
| 127 | + return true; |
| 128 | + } else { |
| 129 | + return false; |
| 130 | + } |
| 131 | + } |
| 132 | + } |
| 133 | +} |
| 134 | + |
| 135 | +ParsePush ParseClient::nextPush() { |
| 136 | + ParsePush push(&pushClient); |
| 137 | + return push; |
| 138 | +} |
| 139 | + |
| 140 | +bool ParseClient::pushAvailable() { |
| 141 | + pushClient.write('n'); // send a signal that ready to consume next available push |
| 142 | + if(pushClient.available()) { |
| 143 | + return 1; |
| 144 | + } else { |
| 145 | + return 0; |
| 146 | + } |
| 147 | +} |
| 148 | + |
| 149 | +void ParseClient::stopPushService() { |
| 150 | + pushClient.close(); |
| 151 | +} |
| 152 | + |
| 153 | +void ParseClient::end() { |
| 154 | + stopPushService(); |
| 155 | +} |
| 156 | + |
| 157 | +void ParseClient::read(Process* client, char* buf, int len) { |
| 158 | + memset(buf, 0, len); |
| 159 | + int p = 0; |
| 160 | + while(1) { |
| 161 | + if(client->available()) { |
| 162 | + while (p < (len-1) && client->available()) { |
| 163 | + buf[p++] = client->read(); |
| 164 | + } |
| 165 | + break; |
| 166 | + } |
| 167 | + } |
| 168 | +} |
| 169 | + |
| 170 | +ParseClient Parse; |
0 commit comments