1 | /* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ |
---|
2 | /* |
---|
3 | * Copyright (c) 2004-2013 HUBzero Foundation, LLC |
---|
4 | * |
---|
5 | * Authors: |
---|
6 | * Wei Qiao <qiaow@purdue.edu> |
---|
7 | * Insoo Woo <iwoo@purdue.edu> |
---|
8 | * George A. Howlett <gah@purdue.edu> |
---|
9 | * Leif Delgass <ldelgass@purdue.edu> |
---|
10 | */ |
---|
11 | #ifndef NV_COMMAND_H |
---|
12 | #define NV_COMMAND_H |
---|
13 | |
---|
14 | #include <tcl.h> |
---|
15 | |
---|
16 | #include <RpBuffer.h> |
---|
17 | |
---|
18 | #include "ResponseQueue.h" |
---|
19 | |
---|
20 | namespace Rappture { |
---|
21 | class Buffer; |
---|
22 | } |
---|
23 | |
---|
24 | namespace nv { |
---|
25 | |
---|
26 | class ReadBuffer; |
---|
27 | class Volume; |
---|
28 | |
---|
29 | #ifdef USE_THREADS |
---|
30 | extern void queueResponse(const void *bytes, size_t len, |
---|
31 | Response::AllocationType allocType, |
---|
32 | Response::ResponseType type = Response::DATA); |
---|
33 | #else |
---|
34 | extern ssize_t SocketWrite(const void *bytes, size_t len); |
---|
35 | #endif |
---|
36 | |
---|
37 | extern bool SocketRead(char *bytes, size_t len); |
---|
38 | |
---|
39 | extern bool SocketRead(Rappture::Buffer &buf, size_t len); |
---|
40 | |
---|
41 | extern int processCommands(Tcl_Interp *interp, |
---|
42 | ReadBuffer *inBufPtr, |
---|
43 | int fdOut); |
---|
44 | |
---|
45 | extern int handleError(Tcl_Interp *interp, |
---|
46 | int status, |
---|
47 | int fdOut); |
---|
48 | |
---|
49 | extern void initTcl(Tcl_Interp *interp, ClientData clientData); |
---|
50 | |
---|
51 | extern int GetAxisFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, |
---|
52 | int *axisVal); |
---|
53 | |
---|
54 | extern int GetBooleanFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, |
---|
55 | bool *boolVal); |
---|
56 | |
---|
57 | extern int GetDataStream(Tcl_Interp *interp, Rappture::Buffer &buf, int nBytes); |
---|
58 | |
---|
59 | extern int GetFloatFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, |
---|
60 | float *floatVal); |
---|
61 | |
---|
62 | extern int GetVolumeFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, |
---|
63 | Volume **volume); |
---|
64 | |
---|
65 | } |
---|
66 | |
---|
67 | #endif |
---|