commit | abc34b4d74d0108f526d87f486d0e18813e1ae0a | [log] [tgz] |
---|---|---|
author | Jack He <siyuanh@google.com> | Wed Feb 07 17:33:16 2018 -0800 |
committer | Jack He <siyuanh@google.com> | Fri Feb 09 02:43:58 2018 -0800 |
tree | 26ca1db3a436f0f9e0f8b1e9ccaffff348f37262 | |
parent | 884314c1d966f80557b7b1c56918f110de3ad22c [diff] |
A2DP: Construct BtWorkerThread's message loop on designated thread * Moves BtWorkerThread's message_loop_'s construction to the Run() method run by the designated message_loop_thread_ so that message_loop_'s construction and execution are on the same thread * Makes BtWorkerThread::StartUp() blocking until message_loop_ starts running using std:condition_variable * Modify BtWorkerThread::DoInThread() to return boolean Detail: Before this CL, BtWorkerThread.message_loop_ is created on Java main thread and run on message_loop_thread_. During clean-up, A2DP shutdown message_loop_thread_, rendering the posted_from field in current_pending_task_ invalid. However, although the runner thread is killed, the owner thread, the Java main thread, is still active. Therefore, we we try to PostTask() from Java main thread after message_loop_thread_ is killed, we will try to access an invalid Location object. This results in a SEGV_MAPPER SEGFAULT. Thus, the fix would be creating and running the message loop on the same thread so that Java main thread won't have an invalid message loop after the worker thread is killed. This can be detected earlier through adding "-DDCHECK_ALWAYS_ON" in both libchrome and libbluetooth and libchrome will validate the thread for us. Fixes: 72831931 Test: Test with DCHECK_ALWAYS_ON in both libbluetooth and libchrome ProfileServiceTest stress tests Change-Id: I7b196b8c1113c2758c2b82ddf4d13c46352bb620
Just build AOSP - Fluoride is there by default.
Instructions for Ubuntu, tested on 14.04 with Clang 3.5.0 and 16.10 with Clang 3.8.0
mkdir ~/fluoride cd ~/fluoride git clone https://android.googlesource.com/platform/system/bt
Install dependencies (require sudo access):
cd ~/fluoride/bt build/install_deps.sh
Then fetch third party dependencies:
cd ~/fluoride/bt mkdir third_party cd third_party git clone https://github.com/google/googletest.git git clone https://android.googlesource.com/platform/external/aac git clone https://android.googlesource.com/platform/external/libchrome git clone https://android.googlesource.com/platform/external/libldac git clone https://android.googlesource.com/platform/external/modp_b64 git clone https://android.googlesource.com/platform/external/tinyxml2
And third party dependencies of third party dependencies:
cd fluoride/bt/third_party/libchrome/base/third_party mkdir valgrind cd valgrind curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/valgrind.h?format=TEXT | base64 -d > valgrind.h curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/memcheck.h?format=TEXT | base64 -d > memcheck.h
NOTE: If system/bt is checked out under AOSP, then create symbolic links instead of downloading sources
cd system/bt mkdir third_party cd third_party ln -s ../../../external/aac aac ln -s ../../../external/libchrome libchrome ln -s ../../../external/libldac libldac ln -s ../../../external/modp_b64 modp_b64 ln -s ../../../external/tinyxml2 tinyxml2 ln -s ../../../external/googletest googletest
cd ~/fluoride/bt gn gen out/Default
cd ~/fluoride/bt ninja -C out/Default all
This will build all targets (the shared library, executables, tests, etc) and put them in out/Default. To build an individual target, replace "all" with the target of your choice, e.g. ninja -C out/Default net_test_osi
.
cd ~/fluoride/bt/out/Default LD_LIBRARY_PATH=./ ./bluetoothtbd -create-ipc-socket=fluoride
Follows the Chromium project Eclipse Setup Instructions until "Optional: Building inside Eclipse" section (don't do that section, we will set it up differently)
Generate Eclipse settings:
cd system/bt gn gen --ide=eclipse out/Default
In Eclipse, do File->Import->C/C++->C/C++ Project Settings, choose the XML location under system/bt/out/Default
Right click on the project. Go to Preferences->C/C++ Build->Builder Settings. Uncheck "Use default build command", but instead using "ninja -C out/Default"
Goto Behaviour tab, change clean command to "-t clean"