source: nanovis/trunk/Command.h @ 4905

Last change on this file since 4905 was 4901, checked in by ldelgass, 9 years ago

sync with release branch

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
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 <unistd.h>
15
16#include <tcl.h>
17
18#include "ResponseQueue.h"
19
20namespace Rappture {
21class Buffer;
22}
23
24namespace nv {
25
26class ReadBuffer;
27class Volume;
28
29#ifdef USE_THREADS
30extern void queueResponse(const void *bytes, size_t len,
31                          Response::AllocationType allocType,
32                          Response::ResponseType type = Response::DATA);
33#else
34extern ssize_t SocketWrite(const void *bytes, size_t len);
35#endif
36
37extern bool SocketRead(char *bytes, size_t len);
38
39extern int processCommands(Tcl_Interp *interp,
40                           ReadBuffer *inBufPtr,
41                           int fdOut);
42
43extern int handleError(Tcl_Interp *interp,
44                       int status,
45                       int fdOut);
46
47extern void initTcl(Tcl_Interp *interp, ClientData clientData);
48
49extern int GetAxisFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
50                          int *axisVal);
51
52extern int GetBooleanFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
53                             bool *boolVal);
54
55extern int GetDataStream(Tcl_Interp *interp, Rappture::Buffer &buf, int nBytes);
56
57extern int GetFloatFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
58                           float *floatVal);
59
60}
61
62#endif
Note: See TracBrowser for help on using the repository browser.