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
|
/* Gearman server and library
* Copyright (C) 2008 Brian Aker, Eric Day
* All rights reserved.
*
* Use and distribution licensed under the BSD license. See
* the COPYING file in the parent directory for full text.
*/
/**
* @file
* @brief Echo Client
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <libgearman/gearman.h>
static void usage(char *name);
int main(int argc, char *argv[])
{
int c;
char *host= NULL;
in_port_t port= 0;
gearman_return_t ret;
gearman_client_st client;
while ((c = getopt(argc, argv, "h:p:")) != -1)
{
switch(c)
{
case 'h':
host= optarg;
break;
case 'p':
port= (in_port_t)atoi(optarg);
break;
default:
usage(argv[0]);
exit(1);
}
}
if (argc != (optind + 1))
{
usage(argv[0]);
exit(1);
}
if (gearman_client_create(&client) == NULL)
{
fprintf(stderr, "Memory allocation failure on client creation\n");
exit(1);
}
ret= gearman_client_add_server(&client, host, port);
if (ret != GEARMAN_SUCCESS)
{
fprintf(stderr, "%s\n", gearman_client_error(&client));
exit(1);
}
ret= gearman_client_echo(&client, (void *)argv[optind],
(size_t)strlen(argv[optind]));
if (ret != GEARMAN_SUCCESS)
fprintf(stderr, "%s\n", gearman_client_error(&client));
gearman_client_free(&client);
return 0;
}
static void usage(char *name)
{
printf("\nusage: %s [-h <host>] [-p <port>] <string>\n", name);
printf("\t-h <host> - job server host\n");
printf("\t-p <port> - job server port\n");
}
|