source: trunk/src/testing/include/fsClient.h @ 4

Revision 4, 3.1 KB checked in by ajaworski, 13 years ago (diff)

Added modified SAGE sources

Line 
1/******************************************************************************
2 * SAGE - Scalable Adaptive Graphics Environment
3 *
4 * Module: fsClient.h
5 * Author : Byungil Jeong
6 *
7 * Copyright (C) 2004 Electronic Visualization Laboratory,
8 * University of Illinois at Chicago
9 *
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions are met:
14 *
15 *  * Redistributions of source code must retain the above copyright
16 *    notice, this list of conditions and the following disclaimer.
17 *  * Redistributions in binary form must reproduce the above
18 *    copyright notice, this list of conditions and the following disclaimer
19 *    in the documentation and/or other materials provided with the distribution.
20 *  * Neither the name of the University of Illinois at Chicago nor
21 *    the names of its contributors may be used to endorse or promote
22 *    products derived from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 *
36 * Direct questions, comments etc about SAGE to sage_users@listserv.uic.edu or
37 * http://www.evl.uic.edu/cavern/forum/
38 *
39 *****************************************************************************/
40 
41#ifndef _FSCLIENT_H
42#define _FSCLIENT_H
43
44#include "sage.h"
45#include "QUANTAnet_tcp_c.hxx"
46
47
48#define SOCK_BUF_SIZE (1024*1024*32)
49#define READ_BUF_SIZE 4096
50#define FS_ID 0
51
52/**
53 * class fsClient
54 */
55class fsClient {
56protected:
57   QUANTAnet_tcpClient_c *client;
58   char *fsIp; /**< fsManager IP address */
59   int portNum;
60
61public:
62   fsClient() {}
63   ~fsClient();
64   int init(const char *config, const char *portType);
65   int init(int port);
66   int connect(char *ip); /**< connects to sage */
67   int getSelfIP(char *ip);
68   int sendMessage(sageMessage &msg);
69   int sendMessage(int code); 
70   int sendMessage(int code, int data);
71   int sendMessage(int code, const char *data); // string data
72   int sendMessage(int code, int size, void *data);
73   int sendMessage(int dst, int code, int data);
74   int sendMessage(int dst, int code, int app, const char *data);
75   int sendMessage(int dst, int code, int app, int size, void *data); /**< send message to fsManager */
76   int rcvMessage(sageMessage &msg);
77   int rcvMessageBlk(sageMessage &msg); /**< blocking read of SAGE messages. return the message size */
78};
79
80
81#endif
Note: See TracBrowser for help on using the repository browser.