Changeset 14315 for trunk/FACT++


Ignore:
Timestamp:
08/06/12 21:08:30 (12 years ago)
Author:
neise
Message:
slowly evolving
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/HeadersAgilent.h

    r14292 r14315  
    1010            kDisconnected = 1,
    1111            kConnected    = 2,
     12            kVoltage_On   = 3,
     13            kVoltage_Off  = 4,
    1214        };
    1315    }
  • trunk/FACT++/src/agilentctrl.cc

    r14314 r14315  
    1717namespace ba    = boost::asio;
    1818namespace bs    = boost::system;
    19 namespace dummy = ba::placeholders;
     19namespace bapla = ba::placeholders;
    2020
    2121using namespace std;
     
    2727{
    2828    boost::asio::streambuf fBuffer;
    29 
    3029    bool fIsVerbose;
    3130    bool fDump;
    32 
    33     int  fLineCounter;
    34 
    35 
    3631    ofstream fDumpStream;
     32    int fState;
     33   
    3734
    3835protected:
     
    5956        fDumpStream << str << endl;
    6057    }
    61 
     58   
     59    boost::asio::deadline_timer fCheckStatusTimer;
     60
     61    void PostStatusRequest()
     62    {
     63        PostMessage(string("*IDN?\n"));
     64        PostMessage(string("meas:volt?\n"));
     65        PostMessage(string("meas:curr?\n"));
     66    }
     67
     68   
     69    void RequestStatus()
     70    {
     71        PostStatusRequest();
     72
     73        fCheckStatusTimer.expires_from_now(boost::posix_time::seconds(60));
     74        fCheckStatusTimer.async_wait(boost::bind(&ConnectionWeather::HandleRequest,
     75                                          this, bapla::error));
     76    }
     77
     78    void HandleRequest(const bs::error_code &error)
     79    {
     80        // 125: Operation canceled (bs::error_code(125, bs::system_category))
     81        if (error && error!=ba::error::basic_errors::operation_aborted)
     82        {
     83            ostringstream str;
     84            str << "Write timeout of " << URL() << ": " << error.message() << " (" << error << ")";// << endl;
     85            Error(str);
     86
     87            PostClose(false);
     88            return;
     89        }
     90
     91        if (!is_open())
     92        {
     93            // For example: Here we could schedule a new accept if we
     94            // would not want to allow two connections at the same time.
     95            PostClose(true);
     96            return;
     97        }
     98
     99        // Check whether the deadline has passed. We compare the deadline
     100        // against the current time since a new asynchronous operation
     101        // may have moved the deadline before this actor had a chance
     102        // to run.
     103        if (fKeepAlive.expires_at() > ba::deadline_timer::traits_type::now())
     104            return;
     105
     106        RequestStatus();
     107    }
    62108private:
    63109
    64 
    65     void HandleReceivedData(const bs::error_code& err, size_t bytes_received, int /*type*/)
    66     {
     110    int  fLineCounter;
     111
     112    void ReceivedStatusHandler(const bs::error_code& err, size_t bytes_received, int /*type*/)
     113    {
     114        float measured_voltage;
     115        float measured_current;
     116       
    67117        // Do not schedule a new read if the connection failed.
    68118        if (bytes_received==0 || err)
     
    87137        if (fIsVerbose)
    88138           Out() << kBold << "Received (" << bytes_received << " bytes):" << endl;
    89 
    90139        if (fDump)
    91140        {
     
    113162        {
    114163            // this should be a float containing the measured voltage
    115             float f;
    116             is >> f;
    117             data.push_back(f);
    118             Out() << "voltage: " << f << endl;
     164            is >> measured_voltage;
     165            data.push_back(measured_voltage);
     166            Out() << "voltage: " << measured_voltage << endl;
    119167        }
    120168        else if (fLineCounter >= 3)
    121169        {
    122170            // this should be a float containing the measured voltage
    123             float f;
    124             is >> f;
    125             data.push_back(f);
    126             Out() << "current: " << f << endl;
     171            is >> measured_current;
     172            data.push_back(measured_current);
     173            Out() << "current: " << measured_current << endl;
    127174            fLineCounter = 0;
    128175            fSendRequest = true;
    129176        }
    130 
    131 
    132 //        int status=-1;
    133 
    134         string buffer;
    135         while (getline(is, buffer, '\n'))
    136         {
    137             if (fIsVerbose)
    138                 Out() << buffer << endl;
    139             if (fDump)
    140                 Dump(buffer);
    141 
    142             buffer = Tools::Trim(buffer);
    143 
    144             if (buffer.empty())
    145                 continue;
    146 
    147 /*
    148             istringstream in(buffer);
    149             while (1)
    150             {
    151                 float f;
    152                 in >> f;
    153                 if (!in)
    154                     break;
    155 
    156                 resist.push_back(f);
    157             }
    158 */
    159         }
    160 
     177       
     178        if (measured_voltage > 1.0)
     179        {
     180            fState = State::kVoltage_On;
     181        }
     182        else
     183        {
     184            fState = State::kVoltage_Off;
     185        }
    161186
    162187        UpdateDim(data);
    163 
    164         StartRead();
    165     }
    166 
    167     void StartRead()
    168     {
     188       
     189        Start_async_read_until();
     190    }
     191
     192    void Start_async_read_until()
     193    {
     194        // Bind Received Data Handler to the event: "received <enter> character"
     195        //   this Handler will try to parse the incoming data
    169196        ba::async_read_until(*this, fBuffer, "\n",
    170                              boost::bind(&ConnectionAgilent::HandleReceivedData, this,
    171                                          dummy::error, dummy::bytes_transferred, 0));
     197                             boost::bind(&ConnectionAgilent::ReceivedStatusHandler, this,
     198                                         bapla::error, bapla::bytes_transferred, 0));
    172199
    173200        // FIXME: Add timeout here
     
    177204    void ConnectionEstablished()
    178205    {
     206        fState = State::kConnected;
     207        Start_async_read_until();
     208        PostStatusRequest();
     209       
    179210        fLineCounter = 0;
    180         fSendRequest = true;
    181211        fBuffer.prepare(1000);
    182         fTime = Time();
    183         StartRead();
    184212    }
    185213
    186214public:
    187     Time fTime;
    188     bool fSendRequest;
    189215
    190216    ConnectionAgilent(ba::io_service& ioservice, MessageImp &imp) : Connection(ioservice, imp()),
    191217        fIsVerbose(true),
     218        fCheckStatusTimer(ioservice),
    192219        fDump(true)
    193220    {
    194221        SetLogStream(&imp);
     222        fState = State::kDisconnected;
    195223    }
    196224
     
    216244        }
    217245    }
    218 
    219     void Identify()
    220     {
    221         PostMessage(string("*IDN?\n"));
    222         PostMessage(string("meas:volt?\n"));
    223         PostMessage(string("meas:curr?\n"));
    224     }
     246   
     247    int GetState() const
     248    {
     249        return fState;
     250    }
     251
     252
    225253};
    226254
     
    305333        // synchronously, i.e. within the call to poll_one()
    306334        poll_one();
    307         if (fAgilent.fSendRequest)
    308         {
    309             if (Time()-fAgilent.fTime > boost::posix_time::seconds(5))
    310             {
    311                 fAgilent.Identify();
    312                 fAgilent.fTime = Time();
    313                 fAgilent.fSendRequest = false;
    314             }
    315         }
    316         return fAgilent.IsConnected() ? State::kConnected : State::kDisconnected;
     335       
     336        if ( fAgilent.IsConnected() )
     337            return fWeather.GetState();
     338        else
     339            return State::kDisconnected;
    317340    }
    318341
     
    382405        T::AddStateName(State::kConnected, "Connected",
    383406                     "Ethernet connection to Agilent established.");
     407
     408        T::AddStateName(State::kVoltage_On, "Voltage_On",
     409                     "The measured output voltage is higher than 1.0V");
     410
     411        T::AddStateName(State::kVoltage_Off, "Voltage_Off",
     412                     "The measured output voltage is lower than 1.0V");
    384413
    385414        // Verbosity commands
Note: See TracChangeset for help on using the changeset viewer.