libpsynth 0.2.1
/home/raskolnikov/dev/psynth/trunk/src/psynth/io/file_input.hpp
Go to the documentation of this file.
00001 
00011 /*
00012  *  Copyright (C) 2011 Juan Pedro BolĂ­var Puente
00013  *
00014  *  This file is part of Psychosynth.
00015  *   
00016  *  Psychosynth is free software: you can redistribute it and/or modify
00017  *  it under the terms of the GNU General Public License as published by
00018  *  the Free Software Foundation, either version 3 of the License, or
00019  *  (at your option) any later version.
00020  *
00021  *  Psychosynth is distributed in the hope that it will be useful,
00022  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00023  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00024  *  GNU General Public License for more details.
00025  *
00026  *  You should have received a copy of the GNU General Public License
00027  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
00028  *
00029  */
00030 
00031 #ifndef PSYNTH_IO_FILE_INPUT_H_
00032 #define PSYNTH_IO_FILE_INPUT_H_
00033 
00034 #include <sndfile.h>
00035 
00036 #include <psynth/io/input_fwd.hpp>
00037 #include <psynth/io/file_common.hpp>
00038 
00039 namespace psynth
00040 {
00041 namespace io
00042 {
00043 
00044 template <class Range>
00045 class file_input : public file_input_base<Range>
00046 {
00047     typedef file_input_base<Range> base;
00048 public:
00049     typedef typename base::range range;
00050     
00051     static_assert (file_support<Range>::is_supported::value,
00052                    "Audio file format not supported.");
00053     
00054     file_input (const std::string& fname);
00055 
00056     ~file_input ();
00057 
00058     std::size_t take (const range& data);
00059 
00060     std::size_t seek (std::ptrdiff_t offset, seek_dir dir);
00061 
00062     std::size_t frame_rate () const
00063     { return _info.samplerate; }
00064 
00065     std::size_t length () const
00066     { return _info.frames; }
00067     
00068 private:
00069     SNDFILE* _file;
00070     SF_INFO  _info;
00071 };
00072 
00073 } /* namespace io */
00074 } /* namespace psynth */
00075 
00076 #include <psynth/io/file_input.tpp>
00077 
00078 #endif /* PSYNTH_IO_FILE_INPUT_H_ */
00079 
00080