3534d9ac8f9b2b25d33aa6854358ceff94f8a511
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

1) /* Blinker
2)    Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org>
3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
6) #ifndef PRIORITYINPUT_H
7) #define PRIORITYINPUT_H
8) 
9) #include <string>
10) 
11) #include <BlinkenLib/BlinkenFrame.h>
12) 
13) #include "File.h"
14) #include "Priority.h"
15) #include "SettingFile.h"
16) #include "StreamMgr.h"
17) #include "StreamRecv.h"
18) 
19) namespace Blinker {
20) 
21) /// input to priority based selector
22) class Priority::Input: public StreamRecv
23) {
24) public:
25)   /**
26)    * @brief constructor
27)    * @param[in] priority owning priority based selector
28)    * @param[in] name name of input (i.e. priority)
29)    * @param[in] dirBase base directory
30)    */
31)   Input(Priority &priority, const std::string &name,
32)         const Directory &dirBase);
33) 
34)   /// virtual destructor
35)   virtual ~Input();
36) 
37) private:
38)   /// copy constructor disabled
39)   Input(const Input &that);
40) 
41)   /// assignment operator disabled
42)   const Input & operator=(const Input &that);
43) 
44) public:
45)   /// check for update of configuration
46)   void updateConfig();
47) 
48)   /**
49)    * @brief set current frame
50)    * @param[in] stream stream name
Stefan Schuermans merged frame processing wit...

Stefan Schuermans authored 12 years ago

51)    * @param[in] pFrame current frame (NULL for none)
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

52)    */
53)   virtual void setFrame(const std::string &stream, stBlinkenFrame *pFrame);
54) 
55)   /**
56)    * @brief get current frame
Stefan Schuermans simplified interface of get...

Stefan Schuermans authored 12 years ago

57)    * @return current frame (NULL if none)
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

58)    */
Stefan Schuermans simplified interface of get...

Stefan Schuermans authored 12 years ago

59)   stBlinkenFrame * getCurFrame();
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

60) 
61) protected:
62)   /// get input stream and attach to it
63)   void getInStream();
64) 
65)   /// detach from input stream and release it
66)   void releaseInStream();
67) 
68)   /**
69)    * @brief set current frame
Stefan Schuermans merged frame processing wit...

Stefan Schuermans authored 12 years ago

70)    * @param[in] pFrame current frame (NULL for none)