]> sigrok.org Git - pulseview.git/blame - pv/devices/sessionfile.cpp
Free unused segment memory after acquisition
[pulseview.git] / pv / devices / sessionfile.cpp
CommitLineData
da30ecb7
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2015 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
da30ecb7
JH
18 */
19
20#include <libsigrokcxx/libsigrokcxx.hpp>
21
b485408f
JH
22#include <boost/filesystem.hpp>
23
da30ecb7
JH
24#include "sessionfile.hpp"
25
26namespace pv {
27namespace devices {
28
8fe262de 29SessionFile::SessionFile(const std::shared_ptr<sigrok::Context> context,
da30ecb7 30 const std::string &file_name) :
474e817a 31 File(file_name),
2ad82c2e
UH
32 context_(context)
33{
b485408f
JH
34}
35
2ad82c2e
UH
36void SessionFile::open()
37{
4d6c6ea3
SA
38 if (session_)
39 close();
40
da30ecb7
JH
41 session_ = context_->load_session(file_name_);
42 device_ = session_->devices()[0];
43}
44
2ad82c2e
UH
45void SessionFile::close()
46{
4d6c6ea3
SA
47 if (session_)
48 session_->remove_devices();
49}
50
da30ecb7
JH
51} // namespace devices
52} // namespace pv