summaryrefslogtreecommitdiffstats
path: root/net/base/file_input_stream_win.cc
blob: f964362b60e8eeca0c4990ee4cb9416d37a421e1 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
// Copyright (c) 2008 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 "net/base/file_input_stream.h"

#include <windows.h>

#include "base/logging.h"
#include "base/message_loop.h"
#include "net/base/net_errors.h"

namespace net {

// Ensure that we can just use our Whence values directly.
COMPILE_ASSERT(FROM_BEGIN == FILE_BEGIN, bad_whence_begin);
COMPILE_ASSERT(FROM_CURRENT == FILE_CURRENT, bad_whence_current);
COMPILE_ASSERT(FROM_END == FILE_END, bad_whence_end);

static void SetOffset(OVERLAPPED* overlapped, const LARGE_INTEGER& offset) {
  overlapped->Offset = offset.LowPart;
  overlapped->OffsetHigh = offset.HighPart;
}

static void IncrementOffset(OVERLAPPED* overlapped, DWORD count) {
  LARGE_INTEGER offset;
  offset.LowPart = overlapped->Offset;
  offset.HighPart = overlapped->OffsetHigh;
  offset.QuadPart += static_cast<LONGLONG>(count);
  SetOffset(overlapped, offset);
}

static int MapErrorCode(DWORD err) {
  switch (err) {
    case ERROR_FILE_NOT_FOUND:
    case ERROR_PATH_NOT_FOUND:
      return ERR_FILE_NOT_FOUND;
    case ERROR_ACCESS_DENIED:
      return ERR_ACCESS_DENIED;
    case ERROR_SUCCESS:
      return OK;
    default:
      LOG(WARNING) << "Unknown error " << err << " mapped to net::ERR_FAILED";
      return ERR_FAILED;
  }
}

// FileInputStream::AsyncContext ----------------------------------------------

class FileInputStream::AsyncContext : public MessageLoopForIO::IOHandler {
 public:
  AsyncContext(FileInputStream* owner)
      : owner_(owner), overlapped_(), callback_(NULL) {
    overlapped_.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
  }

  ~AsyncContext() {
    if (callback_)
      MessageLoopForIO::current()->RegisterIOContext(&overlapped_, NULL);
    CloseHandle(overlapped_.hEvent);
  }

  void IOCompletionIsPending(CompletionCallback* callback);
  
  OVERLAPPED* overlapped() { return &overlapped_; }
  CompletionCallback* callback() const { return callback_; }

 private:
  // MessageLoopForIO::IOHandler implementation:
  virtual void OnIOCompleted(OVERLAPPED* context, DWORD bytes_read,
                             DWORD error);

  FileInputStream* owner_;
  OVERLAPPED overlapped_;
  CompletionCallback* callback_;
};

void FileInputStream::AsyncContext::IOCompletionIsPending(
    CompletionCallback* callback) {
  DCHECK(!callback_);
  callback_ = callback;

  MessageLoopForIO::current()->RegisterIOContext(&overlapped_, this);
}

void FileInputStream::AsyncContext::OnIOCompleted(OVERLAPPED* context,
                                                  DWORD bytes_read,
                                                  DWORD error) {
  DCHECK(&overlapped_ == context);
  DCHECK(callback_);

  MessageLoopForIO::current()->RegisterIOContext(&overlapped_, NULL);

  HANDLE handle = owner_->handle_;

  int result = static_cast<int>(bytes_read);
  if (error && error != ERROR_HANDLE_EOF)
    result = MapErrorCode(error);
  
  if (bytes_read)
    IncrementOffset(&overlapped_, bytes_read);

  CompletionCallback* temp = NULL;
  std::swap(temp, callback_);
  temp->Run(result);
}

// FileInputStream ------------------------------------------------------------

FileInputStream::FileInputStream() : handle_(INVALID_HANDLE_VALUE) {
}

FileInputStream::~FileInputStream() {
  Close();
}

void FileInputStream::Close() {
  if (handle_ != INVALID_HANDLE_VALUE) {
    CloseHandle(handle_);
    handle_ = INVALID_HANDLE_VALUE;
  }
  async_context_.reset();
}

int FileInputStream::Open(const std::wstring& path, bool asynchronous_mode) {
  if (IsOpen()) {
    DLOG(FATAL) << "File is already open!";
    return ERR_UNEXPECTED;
  }

  // Optimize for streaming, not seeking.  If someone does a lot of random
  // access operations, then we should consider revising this.
  DWORD create_file_flags = FILE_FLAG_SEQUENTIAL_SCAN;

  if (asynchronous_mode)
    create_file_flags |= FILE_FLAG_OVERLAPPED;

  handle_ =
      CreateFile(path.c_str(), GENERIC_READ | SYNCHRONIZE,
                 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
                 NULL, OPEN_EXISTING, create_file_flags, NULL);
  if (handle_ == INVALID_HANDLE_VALUE) {
    DWORD error = GetLastError();
    LOG(WARNING) << "Failed to open file: " << error;
    return MapErrorCode(error);
  }

  if (asynchronous_mode) {
    async_context_.reset(new AsyncContext(this));
    MessageLoopForIO::current()->RegisterIOHandler(handle_,
                                                   async_context_.get());
  }

  return OK;
}

bool FileInputStream::IsOpen() const {
  return handle_ != INVALID_HANDLE_VALUE;
}

int64 FileInputStream::Seek(Whence whence, int64 offset) {
  if (!IsOpen())
    return ERR_UNEXPECTED;
  DCHECK(!async_context_.get() || !async_context_->callback());

  LARGE_INTEGER distance, result;
  distance.QuadPart = offset;
  DWORD move_method = static_cast<DWORD>(whence);
  if (!SetFilePointerEx(handle_, distance, &result, move_method)) {
    DWORD error = GetLastError();
    LOG(WARNING) << "SetFilePointerEx failed: " << error;
    return MapErrorCode(error);
  }
  if (async_context_.get())
    SetOffset(async_context_->overlapped(), result);
  return result.QuadPart;
}

int64 FileInputStream::Available() {
  if (!IsOpen())
    return ERR_UNEXPECTED;

  int64 cur_pos = Seek(FROM_CURRENT, 0);
  if (cur_pos < 0)
    return cur_pos;

  LARGE_INTEGER file_size;
  if (!GetFileSizeEx(handle_, &file_size)) {
    DWORD error = GetLastError();
    LOG(WARNING) << "GetFileSizeEx failed: " << error;
    return MapErrorCode(error);
  }

  return file_size.QuadPart - cur_pos;
}

int FileInputStream::Read(
    char* buf, int buf_len, CompletionCallback* callback) {
  if (!IsOpen())
    return ERR_UNEXPECTED;

  OVERLAPPED* overlapped = NULL;
  if (async_context_.get()) {
    DCHECK(!async_context_->callback());
    overlapped = async_context_->overlapped();
  }

  int rv;

  DWORD bytes_read;
  if (!ReadFile(handle_, buf, buf_len, &bytes_read, overlapped)) {
    DWORD error = GetLastError();
    if (async_context_.get() && error == ERROR_IO_PENDING) {
      async_context_->IOCompletionIsPending(callback);
      rv = ERR_IO_PENDING;
    } else if (error == ERROR_HANDLE_EOF) {
      rv = 0;  // Report EOF by returning 0 bytes read.
    } else {
      LOG(WARNING) << "ReadFile failed: " << error;
      rv = MapErrorCode(error);
    }
  } else {
    if (overlapped)
      IncrementOffset(overlapped, bytes_read);
    rv = static_cast<int>(bytes_read);
  }
  return rv;
}

}  // namespace net