~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/utilities/iodeviceopener.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007  Remko Troncon
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 *
 
18
 */
 
19
 
 
20
#include "iodeviceopener.h"
 
21
 
 
22
 
 
23
IODeviceOpener::IODeviceOpener(QIODevice* device, QIODevice::OpenModeFlag mode) : device_(device), close_(false)
 
24
{
 
25
        if (!device_->isOpen()) {
 
26
                if (!device_->open(mode)) {
 
27
                        isOpen_ = false;
 
28
                        return;
 
29
                }
 
30
                close_ = true;
 
31
        }
 
32
        else if (!(device_->openMode() & mode)) {
 
33
                isOpen_ = false;
 
34
                return;
 
35
        }
 
36
        isOpen_ = true;
 
37
}
 
38
 
 
39
IODeviceOpener::~IODeviceOpener()
 
40
{
 
41
        if (close_) {
 
42
                device_->close();
 
43
        }
 
44
}