2013-10-11 21:44:55 +00:00
|
|
|
// Copyright (c) 2013 Google Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license tha can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "media/file/file.h"
|
|
|
|
|
2014-01-15 22:29:56 +00:00
|
|
|
#include "base/logging.h"
|
|
|
|
#include "base/memory/scoped_ptr.h"
|
2013-10-11 21:44:55 +00:00
|
|
|
#include "media/file/local_file.h"
|
|
|
|
|
|
|
|
namespace media {
|
|
|
|
|
|
|
|
const char* kLocalFilePrefix = "file://";
|
|
|
|
|
2014-01-15 22:29:56 +00:00
|
|
|
typedef File* (*FileFactoryFunction)(const char* file_name, const char* mode);
|
2013-10-11 21:44:55 +00:00
|
|
|
|
|
|
|
struct SupportedTypeInfo {
|
|
|
|
const char* type;
|
|
|
|
int type_length;
|
|
|
|
const FileFactoryFunction factory_function;
|
|
|
|
};
|
|
|
|
|
2014-01-15 22:29:56 +00:00
|
|
|
static File* CreateLocalFile(const char* file_name, const char* mode) {
|
|
|
|
return new LocalFile(file_name, mode);
|
2013-10-11 21:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const SupportedTypeInfo kSupportedTypeInfo[] = {
|
|
|
|
{ kLocalFilePrefix, strlen(kLocalFilePrefix), &CreateLocalFile },
|
|
|
|
};
|
|
|
|
|
2014-01-15 22:29:56 +00:00
|
|
|
File* File::Create(const char* file_name, const char* mode) {
|
2013-10-11 21:44:55 +00:00
|
|
|
for (size_t i = 0; i < arraysize(kSupportedTypeInfo); ++i) {
|
|
|
|
const SupportedTypeInfo& type_info = kSupportedTypeInfo[i];
|
2014-01-15 22:29:56 +00:00
|
|
|
if (strncmp(type_info.type, file_name, type_info.type_length) == 0) {
|
|
|
|
return type_info.factory_function(file_name + type_info.type_length,
|
|
|
|
mode);
|
2013-10-11 21:44:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Otherwise we assume it is a local file
|
2014-01-15 22:29:56 +00:00
|
|
|
return CreateLocalFile(file_name, mode);
|
2013-10-11 21:44:55 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 22:29:56 +00:00
|
|
|
File* File::Open(const char* file_name, const char* mode) {
|
|
|
|
File* file = File::Create(file_name, mode);
|
|
|
|
if (!file)
|
2013-10-11 21:44:55 +00:00
|
|
|
return NULL;
|
|
|
|
if (!file->Open()) {
|
|
|
|
delete file;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2014-01-15 22:29:56 +00:00
|
|
|
int64 File::GetFileSize(const char* file_name) {
|
|
|
|
File* file = File::Open(file_name, "r");
|
|
|
|
if (!file)
|
2013-10-11 21:44:55 +00:00
|
|
|
return -1;
|
2014-01-15 22:29:56 +00:00
|
|
|
int64 res = file->Size();
|
|
|
|
file->Close();
|
2013-10-11 21:44:55 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-01-15 22:29:56 +00:00
|
|
|
bool File::ReadFileToString(const char* file_name, std::string* contents) {
|
|
|
|
DCHECK(contents);
|
|
|
|
|
|
|
|
File* file = File::Open(file_name, "r");
|
|
|
|
if (!file)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const size_t kBufferSize = 0x40000; // 256KB.
|
|
|
|
scoped_ptr<char[]> buf(new char[kBufferSize]);
|
|
|
|
|
|
|
|
int64 len;
|
|
|
|
while ((len = file->Read(buf.get(), kBufferSize)) > 0)
|
|
|
|
contents->append(buf.get(), len);
|
|
|
|
|
|
|
|
file->Close();
|
|
|
|
return len == 0;
|
|
|
|
}
|
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
} // namespace media
|