summaryrefslogtreecommitdiffstats
path: root/webkit/browser/blob/blob_data_handle.cc
blob: 8ccba746c2bb4f6562f44cd8b1a02f8c34846a1d (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
65
66
67
68
// Copyright (c) 2013 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 "webkit/browser/blob/blob_data_handle.h"

#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/sequenced_task_runner.h"
#include "webkit/browser/blob/blob_storage_context.h"
#include "webkit/common/blob/blob_data.h"

namespace webkit_blob {

BlobDataHandle::BlobDataHandleShared::BlobDataHandleShared(
    BlobData* blob_data,
    BlobStorageContext* context,
    base::SequencedTaskRunner* task_runner)
    : blob_data_(blob_data),
      context_(context->AsWeakPtr()) {
  context_->IncrementBlobRefCount(blob_data->uuid());
}

BlobData* BlobDataHandle::BlobDataHandleShared::data() const {
  return blob_data_;
}

const std::string& BlobDataHandle::BlobDataHandleShared::uuid() const {
  return blob_data_->uuid();
}

BlobDataHandle::BlobDataHandleShared::~BlobDataHandleShared() {
  if (context_.get())
    context_->DecrementBlobRefCount(blob_data_->uuid());
}

BlobDataHandle::BlobDataHandle(BlobData* blob_data,
                               BlobStorageContext* context,
                               base::SequencedTaskRunner* task_runner)
    : io_task_runner_(task_runner),
      shared_(new BlobDataHandleShared(blob_data, context, task_runner)) {
  DCHECK(io_task_runner_);
  DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
}

BlobDataHandle::BlobDataHandle(const BlobDataHandle& other) {
  io_task_runner_ = other.io_task_runner_;
  shared_ = other.shared_;
}

BlobDataHandle::~BlobDataHandle() {
  BlobDataHandleShared* raw = shared_.get();
  raw->AddRef();
  shared_ = 0;
  io_task_runner_->ReleaseSoon(FROM_HERE, raw);
}

BlobData* BlobDataHandle::data() const {
  DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
  return shared_->data();
}

std::string BlobDataHandle::uuid() const {
  return shared_->uuid();
}

}  // namespace webkit_blob