| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ppapi/c/pp_errors.h" | 5 #include "ppapi/c/pp_errors.h" |
| 6 #include "ppapi/c/private/ppb_flash_file.h" | 6 #include "ppapi/c/private/ppb_flash_file.h" |
| 7 #include "ppapi/thunk/enter.h" | 7 #include "ppapi/thunk/enter.h" |
| 8 #include "ppapi/thunk/ppb_flash_api.h" | 8 #include "ppapi/thunk/ppb_flash_file_api.h" |
| 9 #include "ppapi/thunk/ppb_instance_api.h" | 9 #include "ppapi/thunk/ppb_instance_api.h" |
| 10 #include "ppapi/thunk/thunk.h" | 10 #include "ppapi/thunk/thunk.h" |
| 11 | 11 |
| 12 namespace ppapi { | 12 namespace ppapi { |
| 13 namespace thunk { | 13 namespace thunk { |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 | 16 |
| 17 bool CreateThreadAdapterForInstance(PP_Instance instance) { | 17 bool CreateThreadAdapterForInstance(PP_Instance instance) { |
| 18 EnterInstance enter(instance); | 18 return true; |
| 19 if (enter.failed()) | |
| 20 return false; | |
| 21 return enter.functions()->GetFlashAPI()->CreateThreadAdapterForInstance( | |
| 22 instance); | |
| 23 } | 19 } |
| 24 | 20 |
| 25 void ClearThreadAdapterForInstance(PP_Instance instance) { | 21 void ClearThreadAdapterForInstance(PP_Instance instance) { |
| 26 EnterInstance enter(instance); | |
| 27 if (enter.succeeded()) { | |
| 28 return enter.functions()->GetFlashAPI()->ClearThreadAdapterForInstance( | |
| 29 instance); | |
| 30 } | |
| 31 } | 22 } |
| 32 | 23 |
| 33 int32_t OpenFile(PP_Instance instance, | 24 int32_t OpenFile(PP_Instance instance, |
| 34 const char* path, | 25 const char* path, |
| 35 int32_t mode, | 26 int32_t mode, |
| 36 PP_FileHandle* file) { | 27 PP_FileHandle* file) { |
| 37 EnterInstance enter(instance); | 28 EnterInstance enter(instance); |
| 38 if (enter.failed()) | 29 if (enter.failed()) |
| 39 return PP_ERROR_BADARGUMENT; | 30 return PP_ERROR_BADARGUMENT; |
| 40 return enter.functions()->GetFlashAPI()->OpenFile(instance, path, mode, file); | 31 return enter.functions()->GetFlashFileAPI(instance)->OpenFile( |
| 32 instance, path, mode, file); |
| 41 } | 33 } |
| 42 | 34 |
| 43 int32_t RenameFile(PP_Instance instance, | 35 int32_t RenameFile(PP_Instance instance, |
| 44 const char* path_from, | 36 const char* path_from, |
| 45 const char* path_to) { | 37 const char* path_to) { |
| 46 EnterInstance enter(instance); | 38 EnterInstance enter(instance); |
| 47 if (enter.failed()) | 39 if (enter.failed()) |
| 48 return PP_ERROR_BADARGUMENT; | 40 return PP_ERROR_BADARGUMENT; |
| 49 return enter.functions()->GetFlashAPI()->RenameFile(instance, | 41 return enter.functions()->GetFlashFileAPI(instance)->RenameFile( |
| 50 path_from, path_to); | 42 instance, path_from, path_to); |
| 51 } | 43 } |
| 52 | 44 |
| 53 int32_t DeleteFileOrDir(PP_Instance instance, | 45 int32_t DeleteFileOrDir(PP_Instance instance, |
| 54 const char* path, | 46 const char* path, |
| 55 PP_Bool recursive) { | 47 PP_Bool recursive) { |
| 56 EnterInstance enter(instance); | 48 EnterInstance enter(instance); |
| 57 if (enter.failed()) | 49 if (enter.failed()) |
| 58 return PP_ERROR_BADARGUMENT; | 50 return PP_ERROR_BADARGUMENT; |
| 59 return enter.functions()->GetFlashAPI()->DeleteFileOrDir(instance, path, | 51 return enter.functions()->GetFlashFileAPI(instance)->DeleteFileOrDir( |
| 60 recursive); | 52 instance, path, recursive); |
| 61 } | 53 } |
| 62 | 54 |
| 63 int32_t CreateDir(PP_Instance instance, const char* path) { | 55 int32_t CreateDir(PP_Instance instance, const char* path) { |
| 64 EnterInstance enter(instance); | 56 EnterInstance enter(instance); |
| 65 if (enter.failed()) | 57 if (enter.failed()) |
| 66 return PP_ERROR_BADARGUMENT; | 58 return PP_ERROR_BADARGUMENT; |
| 67 return enter.functions()->GetFlashAPI()->CreateDir(instance, path); | 59 return enter.functions()->GetFlashFileAPI(instance)->CreateDir( |
| 60 instance, path); |
| 68 } | 61 } |
| 69 | 62 |
| 70 int32_t QueryFile(PP_Instance instance, const char* path, PP_FileInfo* info) { | 63 int32_t QueryFile(PP_Instance instance, const char* path, PP_FileInfo* info) { |
| 71 EnterInstance enter(instance); | 64 EnterInstance enter(instance); |
| 72 if (enter.failed()) | 65 if (enter.failed()) |
| 73 return PP_ERROR_BADARGUMENT; | 66 return PP_ERROR_BADARGUMENT; |
| 74 return enter.functions()->GetFlashAPI()->QueryFile(instance, path, info); | 67 return enter.functions()->GetFlashFileAPI(instance)->QueryFile( |
| 68 instance, path, info); |
| 75 } | 69 } |
| 76 | 70 |
| 77 int32_t GetDirContents(PP_Instance instance, | 71 int32_t GetDirContents(PP_Instance instance, |
| 78 const char* path, | 72 const char* path, |
| 79 PP_DirContents_Dev** contents) { | 73 PP_DirContents_Dev** contents) { |
| 80 EnterInstance enter(instance); | 74 EnterInstance enter(instance); |
| 81 if (enter.failed()) | 75 if (enter.failed()) |
| 82 return PP_ERROR_BADARGUMENT; | 76 return PP_ERROR_BADARGUMENT; |
| 83 return enter.functions()->GetFlashAPI()->GetDirContents(instance, path, | 77 return enter.functions()->GetFlashFileAPI(instance)->GetDirContents( |
| 84 contents); | 78 instance, path, contents); |
| 85 } | 79 } |
| 86 | 80 |
| 87 void FreeDirContents(PP_Instance instance, | 81 void FreeDirContents(PP_Instance instance, |
| 88 PP_DirContents_Dev* contents) { | 82 PP_DirContents_Dev* contents) { |
| 89 EnterInstance enter(instance); | 83 EnterInstance enter(instance); |
| 90 if (enter.succeeded()) | 84 if (enter.succeeded()) |
| 91 enter.functions()->GetFlashAPI()->FreeDirContents(instance, contents); | 85 enter.functions()->GetFlashFileAPI(instance)->FreeDirContents( |
| 86 instance, contents); |
| 92 } | 87 } |
| 93 | 88 |
| 94 int32_t CreateTemporaryFile(PP_Instance instance, PP_FileHandle* file) { | 89 int32_t CreateTemporaryFile(PP_Instance instance, PP_FileHandle* file) { |
| 95 EnterInstance enter(instance); | 90 EnterInstance enter(instance); |
| 96 if (enter.failed()) | 91 if (enter.failed()) |
| 97 return PP_ERROR_BADARGUMENT; | 92 return PP_ERROR_BADARGUMENT; |
| 98 | 93 |
| 99 *file = PP_kInvalidFileHandle; | 94 *file = PP_kInvalidFileHandle; |
| 100 return enter.functions()->GetFlashAPI()->CreateTemporaryFile(instance, file); | 95 return enter.functions()->GetFlashFileAPI(instance)->CreateTemporaryFile( |
| 96 instance, file); |
| 101 } | 97 } |
| 102 | 98 |
| 103 const PPB_Flash_File_ModuleLocal_2_0 g_ppb_flash_file_modulelocal_thunk_2_0 = { | 99 const PPB_Flash_File_ModuleLocal_2_0 g_ppb_flash_file_modulelocal_thunk_2_0 = { |
| 104 &CreateThreadAdapterForInstance, | 100 &CreateThreadAdapterForInstance, |
| 105 &ClearThreadAdapterForInstance, | 101 &ClearThreadAdapterForInstance, |
| 106 &OpenFile, | 102 &OpenFile, |
| 107 &RenameFile, | 103 &RenameFile, |
| 108 &DeleteFileOrDir, | 104 &DeleteFileOrDir, |
| 109 &CreateDir, | 105 &CreateDir, |
| 110 &QueryFile, | 106 &QueryFile, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 132 return &g_ppb_flash_file_modulelocal_thunk_2_0; | 128 return &g_ppb_flash_file_modulelocal_thunk_2_0; |
| 133 } | 129 } |
| 134 | 130 |
| 135 const PPB_Flash_File_ModuleLocal_3_0* | 131 const PPB_Flash_File_ModuleLocal_3_0* |
| 136 GetPPB_Flash_File_ModuleLocal_3_0_Thunk() { | 132 GetPPB_Flash_File_ModuleLocal_3_0_Thunk() { |
| 137 return &g_ppb_flash_file_modulelocal_thunk_3_0; | 133 return &g_ppb_flash_file_modulelocal_thunk_3_0; |
| 138 } | 134 } |
| 139 | 135 |
| 140 } // namespace thunk | 136 } // namespace thunk |
| 141 } // namespace ppapi | 137 } // namespace ppapi |
| OLD | NEW |