Browse Source

Move pool active test to own function.

nfactor-troky
Con Kolivas 14 years ago
parent
commit
7c8919328c
  1. 86
      main.c

86
main.c

@ -1397,6 +1397,53 @@ static int requests_queued(void)
return ret; return ret;
} }
static bool pool_active(struct pool *pool)
{
bool ret = false;
json_t *val;
CURL *curl;
curl = curl_easy_init();
if (unlikely(!curl)) {
applog(LOG_ERR, "CURL initialisation failed");
return false;
}
val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
true, false, pool);
if (val) {
struct work *work = malloc(sizeof(struct work));
bool rc;
if (!work) {
applog(LOG_ERR, "Unable to malloc work in pool_active");
goto out;
}
rc = work_decode(json_object_get(val, "result"), work);
if (rc) {
applog(LOG_DEBUG, "Successfully retreived and deciphered work from pool %u %s",
pool->pool_no, pool->rpc_url);
work->pool = pool;
tq_push(thr_info[stage_thr_id].q, work);
total_getworks++;
pool->getwork_requested++;
inc_queued();
ret = true;
} else {
applog(LOG_DEBUG, "Successfully retreived but FAILED to decipher work from pool %u %s",
pool->pool_no, pool->rpc_url);
free(work);
}
json_decref(val);
} else
applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
pool->pool_no, pool->rpc_url);
out:
curl_easy_cleanup(curl);
return ret;
}
static bool queue_request(void) static bool queue_request(void)
{ {
int maxq = opt_queue + mining_threads; int maxq = opt_queue + mining_threads;
@ -2639,41 +2686,14 @@ int main (int argc, char *argv[])
* it supports */ * it supports */
for (i = 0; i < total_pools; i++) { for (i = 0; i < total_pools; i++) {
struct pool *pool; struct pool *pool;
json_t *val;
CURL *curl;
curl = curl_easy_init();
if (unlikely(!curl)) {
applog(LOG_ERR, "CURL initialisation failed");
return 1;
}
pool = &pools[i]; pool = &pools[i];
val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req, if (pool_active(pool))
true, false, pool); applog(LOG_INFO, "Pool %d %s active", pool->pool_no, pool->rpc_url);
else {
if (val) { applog(LOG_WARNING, "Unable to get work from pool %d %s", pool->pool_no, pool->rpc_url);
struct work *work = malloc(sizeof(struct work)); pool->idle = true;
bool rc; }
if (!work)
return 1;
rc = work_decode(json_object_get(val, "result"), work);
if (rc) {
applog(LOG_INFO, "Successfully retreived and deciphered work from pool %u %s", i, pool->rpc_url);
work->pool = pool;
tq_push(thr_info[stage_thr_id].q, work);
total_getworks++;
pool->getwork_requested++;
inc_queued();
} else {
applog(LOG_WARNING, "Successfully retreived but FAILED to decipher work from pool %u %s", i, pool->rpc_url);
free(work);
}
json_decref(val);
} else
applog(LOG_WARNING, "FAILED to retrieve work from pool %u %s", i, pool->rpc_url);
curl_easy_cleanup(curl);
} }
#ifdef HAVE_OPENCL #ifdef HAVE_OPENCL

Loading…
Cancel
Save