oxforddriver.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef OXFORDDRIVER_H_
15 #define OXFORDDRIVER_H_
16 
17 #include "charinterface.h"
18 #include "chardevicedriver.h"
19 #include "primarydriver.h"
20 
21 class DECLSPEC_SHARED XOxfordInterface : public XCharInterface {
22 public:
23  XOxfordInterface(const char *name, bool runtime, const shared_ptr<XDriver> &driver);
24 
25  virtual void open() throw (XInterfaceError &);
26  virtual void close() throw (XInterfaceError &);
27 
28  void send(const XString &str) throw (XCommError &);
29  virtual void send(const char *str) throw (XCommError &);
30  //! don't use me
31  virtual void write(const char *, int) throw (XCommError &) {
32  assert(false);
33  }
34  virtual void receive() throw (XCommError &);
35  virtual void receive(unsigned int length) throw (XCommError &);
36  void query(const XString &str) throw (XCommError &);
37  virtual void query(const char *str) throw (XCommError &);
38 };
39 
40 template <class tDriver>
42 public:
43  XOxfordDriver(const char *name, bool runtime,
44  Transaction &tr_meas, const shared_ptr<XMeasure> &meas)
45  : XCharDeviceDriver<tDriver, XOxfordInterface>(name, runtime, ref(tr_meas), meas) {}
46  double read(int arg);
47 };
48 
49 template<class tDriver>
50 double
52  double x;
53  this->interface()->queryf("R%d", arg);
54  int ret = this->interface()->scanf("R%lf", &x);
55  if(ret != 1) throw XInterface::XConvError(__FILE__, __LINE__);
56  return x;
57 }
58 
59 #endif /*OXFORDDRIVER_H_*/

Generated for KAME4 by  doxygen 1.8.3