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
3 // found in the LICENSE file.
5 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_TRANSLATE_THREAD_H_
6 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_TRANSLATE_THREAD_H_
11 #include "native_client/src/include/nacl_macros.h"
12 #include "native_client/src/include/nacl_scoped_ptr.h"
13 #include "native_client/src/include/nacl_string.h"
14 #include "native_client/src/shared/platform/nacl_threads.h"
15 #include "native_client/src/shared/platform/nacl_sync_checked.h"
17 #include "ppapi/cpp/completion_callback.h"
19 #include "ppapi/native_client/src/trusted/plugin/plugin_error.h"
20 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h"
22 struct PP_PNaClOptions
;
33 class PnaclCoordinator
;
37 class PnaclTranslateThread
{
39 PnaclTranslateThread();
40 ~PnaclTranslateThread();
42 // Start the translation process. It will continue to run and consume data
43 // as it is passed in with PutBytes.
44 void RunTranslate(const pp::CompletionCallback
& finish_callback
,
45 const std::vector
<TempFile
*>* obj_files
,
47 nacl::DescWrapper
* invalid_desc_wrapper
,
48 ErrorInfo
* error_info
,
49 PnaclResources
* resources
,
50 PP_PNaClOptions
* pnacl_options
,
51 const nacl::string
&architecture_attributes
,
52 PnaclCoordinator
* coordinator
,
55 // Kill the llc and/or ld subprocesses. This happens by closing the command
56 // channel on the plugin side, which causes the trusted code in the nexe to
57 // exit, which will cause any pending SRPCs to error. Because this is called
58 // on the main thread, the translation thread must not use the subprocess
59 // objects without the lock, other than InvokeSrpcMethod, which does not
60 // race with service runtime shutdown.
61 void AbortSubprocesses();
63 // Send bitcode bytes to the translator. Called from the main thread.
64 void PutBytes(const void* data
, int count
);
66 // Notify the translator that the end of the bitcode stream has been reached.
67 // Called from the main thread.
70 int64_t GetCompileTime() const { return compile_time_
; }
72 // Returns true if RunTranslate() has been called, false otherwise.
73 bool started() const { return plugin_
!= NULL
; }
76 // Helper thread entry point for translation. Takes a pointer to
77 // PnaclTranslateThread and calls DoTranslate().
78 static void WINAPI
DoTranslateThread(void* arg
);
79 // Runs the streaming translation. Called from the helper thread.
81 // Signal that Pnacl translation failed, from the translation thread only.
82 void TranslateFailed(PP_NaClError err_code
,
83 const nacl::string
& error_string
);
84 // Run the LD subprocess, returning true on success.
85 // On failure, it returns false and runs the callback.
86 bool RunLdSubprocess();
89 // Callback to run when tasks are completed or an error has occurred.
90 pp::CompletionCallback report_translate_finished_
;
92 nacl::scoped_ptr
<NaClThread
> translate_thread_
;
94 // Used to guard llc_subprocess and ld_subprocess
95 struct NaClMutex subprocess_mu_
;
96 nacl::scoped_ptr
<NaClSubprocess
> llc_subprocess_
;
97 nacl::scoped_ptr
<NaClSubprocess
> ld_subprocess_
;
98 // Used to ensure the subprocesses don't get shutdown more than once.
99 bool llc_subprocess_active_
;
100 bool ld_subprocess_active_
;
102 bool subprocesses_aborted_
;
104 // Condition variable to synchronize communication with the SRPC thread.
105 // SRPC thread waits on this condvar if data_buffers_ is empty (meaning
106 // there is no bitcode to send to the translator), and the main thread
107 // appends to data_buffers_ and signals it when it receives bitcode.
108 struct NaClCondVar buffer_cond_
;
109 // Mutex for buffer_cond_.
110 struct NaClMutex cond_mu_
;
111 // Data buffers from FileDownloader are enqueued here to pass from the
112 // main thread to the SRPC thread. Protected by cond_mu_
113 std::deque
<std::vector
<char> > data_buffers_
;
114 // Whether all data has been downloaded and copied to translation thread.
115 // Associated with buffer_cond_
118 int64_t compile_time_
;
120 // Data about the translation files, owned by the coordinator
121 const std::vector
<TempFile
*>* obj_files_
;
122 TempFile
* nexe_file_
;
123 nacl::DescWrapper
* invalid_desc_wrapper_
;
124 ErrorInfo
* coordinator_error_info_
;
125 PnaclResources
* resources_
;
126 PP_PNaClOptions
* pnacl_options_
;
127 nacl::string architecture_attributes_
;
128 PnaclCoordinator
* coordinator_
;
131 NACL_DISALLOW_COPY_AND_ASSIGN(PnaclTranslateThread
);
135 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_TRANSLATE_THREAD_H_