1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/resource_provider/resource_provider_impl.h"
8 #include "base/files/file_util.h"
9 #include "base/location.h"
10 #include "base/logging.h"
11 #include "components/resource_provider/file_utils.h"
12 #include "mojo/platform_handle/platform_handle_functions.h"
14 using mojo::ScopedHandle
;
16 namespace resource_provider
{
19 ScopedHandle
GetHandleForPath(const base::FilePath
& path
) {
21 return ScopedHandle();
24 base::File
file(path
, base::File::FLAG_OPEN
| base::File::FLAG_READ
);
26 return ScopedHandle();
28 MojoHandle mojo_handle
;
29 if (MojoCreatePlatformHandleWrapper(file
.TakePlatformFile(), &mojo_handle
) !=
31 return ScopedHandle();
33 return ScopedHandle(mojo::Handle(mojo_handle
)).Pass();
38 ResourceProviderImpl::ResourceProviderImpl(
39 const base::FilePath
& application_path
)
40 : application_path_(application_path
) {
41 CHECK(!application_path_
.empty());
44 ResourceProviderImpl::~ResourceProviderImpl() {
47 void ResourceProviderImpl::GetResources(mojo::Array
<mojo::String
> paths
,
48 const GetResourcesCallback
& callback
) {
49 mojo::Array
<mojo::ScopedHandle
> handles
;
50 if (!paths
.is_null()) {
51 handles
.resize(paths
.size());
52 for (size_t i
= 0; i
< paths
.size(); ++i
) {
53 handles
[i
] = GetHandleForPath(
54 GetPathForResourceNamed(application_path_
, paths
[i
]));
57 callback
.Run(handles
.Pass());
60 } // namespace resource_provider