baf52dacd8003c3ac6d43bfef7073aae9e871e3b
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) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

6) #ifndef BLINKER_PRIORITY_H
7) #define BLINKER_PRIORITY_H
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

8) 
9) #include <list>
10) #include <string>
11) 
12) #include <BlinkenLib/BlinkenFrame.h>
13) 
14) #include "Directory.h"
15) #include "File.h"
Stefan Schuermans created template class for...

Stefan Schuermans authored 12 years ago

16) #include "ListTracker.h"
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

17) #include "Mgrs.h"
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

18) #include "Module.h"
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

19) #include "OutStreamFile.h"
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

20) 
21) namespace Blinker {
22) 
23) /// a priority based stream selector
24) class Priority: public Module
25) {
26) protected:
27)   /// input to priority based selector
28)   class Input;
29) 
Stefan Schuermans created template class for...

Stefan Schuermans authored 12 years ago

30)   /// input list tracker
31)   typedef ListTracker<Priority, Input, Directory> InListTracker;
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

32) 
33)   /// input list iterator
Stefan Schuermans fix (reverse) interator typ...

Stefan Schuermans authored 12 years ago

34)   typedef InListTracker::ListRevIt InListIt;
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

35) 
36) public:
37)   /**
38)    * @brief constructor
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

39)    * @param[in] mgrs managers
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

40)    * @param[in] dirBase base directory
41)    */
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

42)   Priority(Mgrs &mgrs, const Directory &dirBase);
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

43) 
44)   /// virtual destructor
45)   virtual ~Priority();
46) 
47) private:
48)   /// copy constructor disabled
49)   Priority(const Priority &that);
50) 
51)   /// assignment operator disabled
52)   const Priority & operator=(const Priority &that);
53) 
54) public:
55)   /// check for update of configuration
56)   virtual void updateConfig();
57) 
58) protected:
59)   /**
60)    * @brief select specific input (called by inputs)
61)    * @param[in] input input to select
62)    */
63)   void select(const Input *pInput);
64) 
65)   /// select lower priority input (called by inputs)
66)   void selectLower();
67) 
68)   /// send current frame to output stream
69)   void curFrame();
70) 
71) protected:
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

72)   OutStreamFile m_fileOutStream;  ///< output stream name file
Stefan Schuermans created template class for...

Stefan Schuermans authored 12 years ago

73)   InListTracker m_inListTracker;  ///< input list tracker
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

74)   InListIt      m_itCurIn;        ///< current input
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

75) }; // class Priority
76) 
77) } // namespace Blinker
78) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

79) #endif // #ifndef BLINKER_PRIORITY_H