| /* |
| * Copyright (C) 2016 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| package com.android.server.wm; |
| |
| import java.io.FileDescriptor; |
| import java.io.FileOutputStream; |
| import java.io.DataOutputStream; |
| |
| import android.os.StrictMode; |
| import android.util.Slog; |
| import android.os.Debug; |
| |
| // Counterpart to remote surface trace for events which are not tied to a particular surface. |
| class RemoteEventTrace { |
| private static final String TAG = "RemoteEventTrace"; |
| |
| // We terminate all our messages with a recognizable marker, to avoid issues |
| // with partial reads (which ADB makes impossible to avoid). |
| static final byte[] sigil = {(byte)0xfc, (byte)0xfc, (byte)0xfc, (byte)0xfc}; |
| |
| private final WindowManagerService mService; |
| private final DataOutputStream mOut; |
| |
| RemoteEventTrace(WindowManagerService service, FileDescriptor fd) { |
| mService = service; |
| mOut = new DataOutputStream(new FileOutputStream(fd, false)); |
| } |
| |
| void openSurfaceTransaction() { |
| final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites(); |
| try { |
| mOut.writeUTF("OpenTransaction"); |
| writeSigil(); |
| } catch (Exception e) { |
| logException(e); |
| mService.disableSurfaceTrace(); |
| } finally { |
| StrictMode.setThreadPolicy(oldPolicy); |
| } |
| } |
| |
| void closeSurfaceTransaction() { |
| final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites(); |
| try { |
| mOut.writeUTF("CloseTransaction"); |
| writeSigil(); |
| } catch (Exception e) { |
| logException(e); |
| mService.disableSurfaceTrace(); |
| } finally { |
| StrictMode.setThreadPolicy(oldPolicy); |
| } |
| } |
| |
| private void writeSigil() throws Exception { |
| mOut.write(RemoteEventTrace.sigil, 0, 4); |
| } |
| |
| static void logException(Exception e) { |
| Slog.i(TAG, "Exception writing to SurfaceTrace (client vanished?): " + e.toString()); |
| } |
| } |