summaryrefslogtreecommitdiffstats
path: root/dbus/file_descriptor.cc
blob: c67a9e1900bab2f3f737d2ecba4cab358d43eec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <algorithm>

#include "base/bind.h"
#include "base/files/file.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/threading/worker_pool.h"
#include "dbus/file_descriptor.h"

using std::swap;

namespace dbus {

void CHROME_DBUS_EXPORT FileDescriptor::Deleter::operator()(
    FileDescriptor* fd) {
  base::WorkerPool::PostTask(
      FROM_HERE, base::Bind(&base::DeletePointer<FileDescriptor>, fd), false);
}

FileDescriptor::FileDescriptor(RValue other)
    : value_(-1), owner_(false), valid_(false) {
  Swap(other.object);
}

FileDescriptor::~FileDescriptor() {
  if (owner_)
    base::File auto_closer(value_);
}

FileDescriptor& FileDescriptor::operator=(RValue other) {
  Swap(other.object);
  return *this;
}

int FileDescriptor::value() const {
  CHECK(valid_);
  return value_;
}

int FileDescriptor::TakeValue() {
  CHECK(valid_);  // NB: check first so owner_ is unchanged if this triggers
  owner_ = false;
  return value_;
}

void FileDescriptor::CheckValidity() {
  base::File file(value_);
  base::File::Info info;
  bool ok = file.GetInfo(&info);
  file.TakePlatformFile();  // Prevent |value_| from being closed by |file|.
  valid_ = (ok && !info.is_directory);
}

void FileDescriptor::Swap(FileDescriptor* other) {
  swap(value_, other->value_);
  swap(owner_, other->owner_);
  swap(valid_, other->valid_);
}

}  // namespace dbus