00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00029 #if ! defined( STREAMMGR_HH )
00030 #define STREAMMGR_HH
00031
00032
00033 #include <signal.h>
00034 #include <unistd.h>
00035 #include <fcntl.h>
00036 #include <sys/stat.h>
00037
00038
00039 #include <string>
00040 #include <map>
00041 #include <vector>
00042
00043
00044 #include "piave_base.hh"
00045
00046 namespace PIAVE {
00047
00048 class PropertyNode;
00049 class Stream;
00050 class InAVStreamIFace;
00051 class InAudioStreamIFace;
00052 class InAVFStream;
00053 class InAudioFStream;
00054 class OutAVStreamIFace;
00055 class OutAudioStreamIFace;
00056
00070 class StreamMgr
00071 {
00072 private:
00073 StreamMgr();
00074
00075 public:
00076 static StreamMgr * Inst() {
00077 if (!_singleton) _singleton = new StreamMgr();
00078 return _singleton;
00079 }
00080
00081
00082 static InAVStreamIFace * getAVInput( const PropertyNode * p );
00083
00084 static InAudioStreamIFace * getAudioInput( const PropertyNode * p );
00085
00086
00087
00088
00089
00090 static InAVFStream * getAVInput( const std::string& fileName );
00091 static InAudioFStream * getAudioInput( const std::string& fileName );
00092
00093
00094 static Stream * getInput( const std::string& fileName );
00095
00096
00097 static OutAVStreamIFace * getOutAVStream( const PropertyNode * p );
00098 static OutAudioStreamIFace * getOutAudioStream( const PropertyNode * p );
00099
00100
00101
00102
00103 static bool expandFileName( const::string fileName );
00104
00105
00106 static void addPathEntry( const::string path ) { Inst()->_pathList.push_back( path ); }
00107
00108 private:
00109
00110 InAVFStream * openInAVFStream( const std::string& fileName );
00111
00112 private:
00113 static StreamMgr * _singleton;
00114
00115
00116
00117
00118 std::map< std::string, InAVFStream* > _inAVStreams;
00119
00120
00121 std::vector< string > _pathList;
00122 };
00123
00124 };
00125
00126 #endif