blob: 1f0c52a6f705e7e8680a7be3e015d4f9edcb692b [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001/* Copyright (c) 2012 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.
4 */
5
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +01006/* From pp_file_info.idl modified Thu May 2 16:41:50 2013. */
Torne (Richard Coles)58218062012-11-14 11:43:16 +00007
8#ifndef PPAPI_C_PP_FILE_INFO_H_
9#define PPAPI_C_PP_FILE_INFO_H_
10
11#include "ppapi/c/pp_macros.h"
12#include "ppapi/c/pp_stdint.h"
13#include "ppapi/c/pp_time.h"
14
15/**
16 * @file
17 * This file defines three enumerations for use in the PPAPI C file IO APIs.
18 */
19
20
21/**
22 * @addtogroup Enums
23 * @{
24 */
25/**
26 * The <code>PP_FileType</code> enum contains file type constants.
27 */
28typedef enum {
29 /** A regular file type */
30 PP_FILETYPE_REGULAR = 0,
31 /** A directory */
32 PP_FILETYPE_DIRECTORY = 1,
33 /** A catch-all for unidentified types */
34 PP_FILETYPE_OTHER = 2
35} PP_FileType;
36PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileType, 4);
37
38/**
39 * The <code>PP_FileSystemType</code> enum contains file system type constants.
40 */
41typedef enum {
42 /** For identified invalid return values */
43 PP_FILESYSTEMTYPE_INVALID = 0,
44 /** For external file system types */
45 PP_FILESYSTEMTYPE_EXTERNAL = 1,
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010046 /** For local persistent file system types */
Torne (Richard Coles)58218062012-11-14 11:43:16 +000047 PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2,
48 /** For local temporary file system types */
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +010049 PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3,
50 /** For isolated file system types */
51 PP_FILESYSTEMTYPE_ISOLATED = 4
Torne (Richard Coles)58218062012-11-14 11:43:16 +000052} PP_FileSystemType;
53PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4);
54/**
55 * @}
56 */
57
58/**
59 * @addtogroup Structs
60 * @{
61 */
62/**
63 * The <code>PP_FileInfo</code> struct represents all information about a file,
64 * such as size, type, and creation time.
65 */
66struct PP_FileInfo {
67 /** This value represents the size of the file measured in bytes */
68 int64_t size;
69 /**
70 * This value represents the type of file as defined by the
71 * <code>PP_FileType</code> enum
72 */
73 PP_FileType type;
74 /**
75 * This value represents the file system type of the file as defined by the
76 * <code>PP_FileSystemType</code> enum.
77 */
78 PP_FileSystemType system_type;
79 /**
80 * This value represents the creation time of the file.
81 */
82 PP_Time creation_time;
83 /**
84 * This value represents the last time the file was accessed.
85 */
86 PP_Time last_access_time;
87 /**
88 * This value represents the last time the file was modified.
89 */
90 PP_Time last_modified_time;
91};
92PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_FileInfo, 40);
93/**
94 * @}
95 */
96
97#endif /* PPAPI_C_PP_FILE_INFO_H_ */
98