blob: 67675666739e938e548060767971523f662b192a [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstromdb4d5402011-08-09 12:18:28 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_OS_H_
18#define ART_RUNTIME_OS_H_
Brian Carlstromdb4d5402011-08-09 12:18:28 -070019
Elliott Hughes76160052012-12-12 16:31:20 -080020namespace unix_file {
21class FdFile;
22} // namespace unix_file
23
Brian Carlstromdb4d5402011-08-09 12:18:28 -070024namespace art {
25
Elliott Hughes76160052012-12-12 16:31:20 -080026typedef ::unix_file::FdFile File;
27
Brian Carlstromdb4d5402011-08-09 12:18:28 -070028// Interface to the underlying OS platform.
29
Brian Carlstromdb4d5402011-08-09 12:18:28 -070030class OS {
31 public:
Elliott Hughes76160052012-12-12 16:31:20 -080032 // Open a file. The returned pointer must be deleted by the caller.
Elliott Hughesb25c3f62012-03-26 16:35:06 -070033 static File* OpenFile(const char* name, bool writable, bool create = true);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070034
Brian Carlstromdb4d5402011-08-09 12:18:28 -070035 // Check if a file exists.
36 static bool FileExists(const char* name);
Brian Carlstrom16192862011-09-12 17:50:06 -070037
38 // Check if a directory exists.
39 static bool DirectoryExists(const char* name);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070040};
41
42} // namespace art
43
Brian Carlstromfc0e3212013-07-17 14:40:12 -070044#endif // ART_RUNTIME_OS_H_