]> sigrok.org Git - pulseview.git/blobdiff - pv/devices/inputfile.cpp
main window: Prefer the user specified device in new sessions
[pulseview.git] / pv / devices / inputfile.cpp
index c30bcd33db570d1b56ff219b94928b322dc57924..58c60d700bbd25375222b20f09c7f35a41097e3a 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <cassert>
 
 #include "inputfile.hpp"
 
+using std::map;
+using std::shared_ptr;
+using std::streamsize;
+using std::string;
+using std::ifstream;
+using std::ios;
+
 namespace pv {
 namespace devices {
 
-const std::streamsize InputFile::BufferSize = 16384;
+const streamsize InputFile::BufferSize = 16384;
 
-InputFile::InputFile(const std::shared_ptr<sigrok::Context> &context,
-       const std::string &file_name,
-       std::shared_ptr<sigrok::InputFormat> format,
-       const std::map<std::string, Glib::VariantBase> &options) :
+InputFile::InputFile(const shared_ptr<sigrok::Context> &context,
+       const string &file_name,
+       shared_ptr<sigrok::InputFormat> format,
+       const map<string, Glib::VariantBase> &options) :
        File(file_name),
        context_(context),
        format_(format),
@@ -56,11 +62,11 @@ void InputFile::open()
 
        // open() should add the input device to the session but
        // we can't open the device without sending some data first
-       f = new std::ifstream(file_name_, std::ios::binary);
+       f = new ifstream(file_name_, ios::binary);
 
        char buffer[BufferSize];
        f->read(buffer, BufferSize);
-       const std::streamsize size = f->gcount();
+       const streamsize size = f->gcount();
        if (size == 0)
                return;
 
@@ -91,14 +97,14 @@ void InputFile::run()
 
        if (!f) {
                // Previous call to run() processed the entire file already
-               f = new std::ifstream(file_name_, std::ios::binary);
+               f = new ifstream(file_name_, ios::binary);
                input_->reset();
        }
 
        interrupt_ = false;
        while (!interrupt_ && !f->eof()) {
                f->read(buffer, BufferSize);
-               const std::streamsize size = f->gcount();
+               const streamsize size = f->gcount();
                if (size == 0)
                        break;