Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 1 | /* |
Arun Kumar K.R | c62935a | 2013-12-03 16:47:47 -0800 | [diff] [blame] | 2 | * Copyright (c) 2013-14, The Linux Foundation. All rights reserved. |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are |
| 6 | * met: |
| 7 | * * Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * * Redistributions in binary form must reproduce the above |
| 10 | * copyright notice, this list of conditions and the following |
| 11 | * disclaimer in the documentation and/or other materials provided |
| 12 | * with the distribution. |
| 13 | * * Neither the name of The Linux Foundation nor the names of its |
| 14 | * contributors may be used to endorse or promote products derived |
| 15 | * from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 21 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 22 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 23 | * SUBSTITUTE GOODS OR CLIENTS; LOSS OF USE, DATA, OR PROFITS; OR |
| 24 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 25 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 26 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 27 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | |
| 30 | #include <hwc_qclient.h> |
| 31 | #include <IQService.h> |
| 32 | #include <hwc_utils.h> |
Zohaib Alam | 1bb6561 | 2013-09-28 03:38:20 -0400 | [diff] [blame] | 33 | #include <mdp_version.h> |
Naseer Ahmed | 35a268c | 2014-06-24 19:07:13 -0400 | [diff] [blame] | 34 | #include <hwc_mdpcomp.h> |
Tatenda Chipeperekwa | 06af9cb | 2014-08-26 14:51:05 -0700 | [diff] [blame] | 35 | #include <hwc_virtual.h> |
Saurabh Shah | 24eec8a | 2014-08-22 15:07:25 -0700 | [diff] [blame] | 36 | #include <overlay.h> |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 37 | |
| 38 | #define QCLIENT_DEBUG 0 |
| 39 | |
| 40 | using namespace android; |
| 41 | using namespace qService; |
Arun Kumar K.R | c62935a | 2013-12-03 16:47:47 -0800 | [diff] [blame] | 42 | using namespace qhwc; |
Saurabh Shah | 24eec8a | 2014-08-22 15:07:25 -0700 | [diff] [blame] | 43 | using namespace overlay; |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 44 | |
| 45 | namespace qClient { |
| 46 | |
| 47 | // ---------------------------------------------------------------------------- |
Saurabh Shah | 7128e50 | 2013-02-20 13:24:48 -0800 | [diff] [blame] | 48 | QClient::QClient(hwc_context_t *ctx) : mHwcContext(ctx), |
| 49 | mMPDeathNotifier(new MPDeathNotifier(ctx)) |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 50 | { |
| 51 | ALOGD_IF(QCLIENT_DEBUG, "QClient Constructor invoked"); |
| 52 | } |
| 53 | |
| 54 | QClient::~QClient() |
| 55 | { |
| 56 | ALOGD_IF(QCLIENT_DEBUG,"QClient Destructor invoked"); |
| 57 | } |
| 58 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 59 | static void securing(hwc_context_t *ctx, uint32_t startEnd) { |
| 60 | Locker::Autolock _sl(ctx->mDrawLock); |
Saurabh Shah | c212577 | 2013-03-15 16:49:50 -0700 | [diff] [blame] | 61 | //The only way to make this class in this process subscribe to media |
| 62 | //player's death. |
| 63 | IMediaDeathNotifier::getMediaPlayerService(); |
| 64 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 65 | ctx->mSecuring = startEnd; |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 66 | //We're done securing |
| 67 | if(startEnd == IQService::END) |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 68 | ctx->mSecureMode = true; |
| 69 | if(ctx->proc) |
| 70 | ctx->proc->invalidate(ctx->proc); |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 71 | } |
| 72 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 73 | static void unsecuring(hwc_context_t *ctx, uint32_t startEnd) { |
| 74 | Locker::Autolock _sl(ctx->mDrawLock); |
| 75 | ctx->mSecuring = startEnd; |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 76 | //We're done unsecuring |
| 77 | if(startEnd == IQService::END) |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 78 | ctx->mSecureMode = false; |
| 79 | if(ctx->proc) |
| 80 | ctx->proc->invalidate(ctx->proc); |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 81 | } |
| 82 | |
Saurabh Shah | 7128e50 | 2013-02-20 13:24:48 -0800 | [diff] [blame] | 83 | void QClient::MPDeathNotifier::died() { |
Saurabh Shah | b39f815 | 2013-08-22 10:21:44 -0700 | [diff] [blame] | 84 | Locker::Autolock _sl(mHwcContext->mDrawLock); |
Saurabh Shah | 7128e50 | 2013-02-20 13:24:48 -0800 | [diff] [blame] | 85 | ALOGD_IF(QCLIENT_DEBUG, "Media Player died"); |
| 86 | mHwcContext->mSecuring = false; |
| 87 | mHwcContext->mSecureMode = false; |
| 88 | if(mHwcContext->proc) |
| 89 | mHwcContext->proc->invalidate(mHwcContext->proc); |
| 90 | } |
| 91 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 92 | static android::status_t screenRefresh(hwc_context_t *ctx) { |
Jeykumar Sankaran | 9f59a76 | 2013-02-28 10:45:56 -0800 | [diff] [blame] | 93 | status_t result = NO_INIT; |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 94 | if(ctx->proc) { |
| 95 | ctx->proc->invalidate(ctx->proc); |
Jeykumar Sankaran | 9f59a76 | 2013-02-28 10:45:56 -0800 | [diff] [blame] | 96 | result = NO_ERROR; |
| 97 | } |
Jeykumar Sankaran | 9f59a76 | 2013-02-28 10:45:56 -0800 | [diff] [blame] | 98 | return result; |
| 99 | } |
Arun Kumar K.R | ffef748 | 2013-04-10 14:17:22 -0700 | [diff] [blame] | 100 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 101 | static void setExtOrientation(hwc_context_t *ctx, uint32_t orientation) { |
| 102 | ctx->mExtOrientation = orientation; |
Arun Kumar K.R | ffef748 | 2013-04-10 14:17:22 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Naseer Ahmed | 78c952e | 2013-11-25 18:12:23 -0500 | [diff] [blame] | 105 | static void isExternalConnected(hwc_context_t* ctx, Parcel* outParcel) { |
| 106 | int connected; |
| 107 | connected = ctx->dpyAttr[HWC_DISPLAY_EXTERNAL].connected ? 1 : 0; |
| 108 | outParcel->writeInt32(connected); |
| 109 | } |
| 110 | |
| 111 | static void getDisplayAttributes(hwc_context_t* ctx, const Parcel* inParcel, |
| 112 | Parcel* outParcel) { |
| 113 | int dpy = inParcel->readInt32(); |
| 114 | outParcel->writeInt32(ctx->dpyAttr[dpy].vsync_period); |
Dileep Kumar Reddi | e351d84 | 2014-03-25 10:39:21 +0530 | [diff] [blame] | 115 | if (ctx->dpyAttr[dpy].customFBSize) { |
| 116 | outParcel->writeInt32(ctx->dpyAttr[dpy].xres_new); |
| 117 | outParcel->writeInt32(ctx->dpyAttr[dpy].yres_new); |
| 118 | } else { |
| 119 | outParcel->writeInt32(ctx->dpyAttr[dpy].xres); |
| 120 | outParcel->writeInt32(ctx->dpyAttr[dpy].yres); |
| 121 | } |
Naseer Ahmed | 78c952e | 2013-11-25 18:12:23 -0500 | [diff] [blame] | 122 | outParcel->writeFloat(ctx->dpyAttr[dpy].xdpi); |
| 123 | outParcel->writeFloat(ctx->dpyAttr[dpy].ydpi); |
| 124 | //XXX: Need to check what to return for HDMI |
| 125 | outParcel->writeInt32(ctx->mMDP.panel); |
| 126 | } |
Arun Kumar K.R | 2aa44c6 | 2014-01-21 23:08:28 -0800 | [diff] [blame] | 127 | static void setHSIC(const Parcel* inParcel) { |
Naseer Ahmed | 78c952e | 2013-11-25 18:12:23 -0500 | [diff] [blame] | 128 | int dpy = inParcel->readInt32(); |
Arun Kumar K.R | 2aa44c6 | 2014-01-21 23:08:28 -0800 | [diff] [blame] | 129 | ALOGD_IF(0, "In %s: dpy = %d", __FUNCTION__, dpy); |
Naseer Ahmed | 78c952e | 2013-11-25 18:12:23 -0500 | [diff] [blame] | 130 | HSICData_t hsic_data; |
| 131 | hsic_data.hue = inParcel->readInt32(); |
| 132 | hsic_data.saturation = inParcel->readFloat(); |
| 133 | hsic_data.intensity = inParcel->readInt32(); |
| 134 | hsic_data.contrast = inParcel->readFloat(); |
| 135 | //XXX: Actually set the HSIC data through ABL lib |
| 136 | } |
| 137 | |
| 138 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 139 | static void setBufferMirrorMode(hwc_context_t *ctx, uint32_t enable) { |
| 140 | ctx->mBufferMirrorMode = enable; |
Arun Kumar K.R | fb5bfa6 | 2013-07-25 03:10:51 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Arun Kumar K.R | 8e7a62f | 2013-12-06 18:55:41 -0800 | [diff] [blame] | 143 | static status_t getDisplayVisibleRegion(hwc_context_t* ctx, int dpy, |
| 144 | Parcel* outParcel) { |
| 145 | // Get the info only if the dpy is valid |
| 146 | if(dpy >= HWC_DISPLAY_PRIMARY && dpy <= HWC_DISPLAY_VIRTUAL) { |
| 147 | Locker::Autolock _sl(ctx->mDrawLock); |
| 148 | if(dpy && (ctx->mExtOrientation || ctx->mBufferMirrorMode)) { |
| 149 | // Return the destRect on external, if external orienation |
| 150 | // is enabled |
| 151 | outParcel->writeInt32(ctx->dpyAttr[dpy].mDstRect.left); |
| 152 | outParcel->writeInt32(ctx->dpyAttr[dpy].mDstRect.top); |
| 153 | outParcel->writeInt32(ctx->dpyAttr[dpy].mDstRect.right); |
| 154 | outParcel->writeInt32(ctx->dpyAttr[dpy].mDstRect.bottom); |
| 155 | } else { |
| 156 | outParcel->writeInt32(ctx->mViewFrame[dpy].left); |
| 157 | outParcel->writeInt32(ctx->mViewFrame[dpy].top); |
| 158 | outParcel->writeInt32(ctx->mViewFrame[dpy].right); |
| 159 | outParcel->writeInt32(ctx->mViewFrame[dpy].bottom); |
| 160 | } |
| 161 | return NO_ERROR; |
| 162 | } else { |
| 163 | ALOGE("In %s: invalid dpy index %d", __FUNCTION__, dpy); |
| 164 | return BAD_VALUE; |
| 165 | } |
| 166 | } |
| 167 | |
Arun Kumar K.R | 33888f5 | 2014-10-09 15:56:33 -0700 | [diff] [blame] | 168 | // USed for setting the secondary(hdmi/wfd) status |
| 169 | static void setSecondaryDisplayStatus(hwc_context_t *ctx, |
| 170 | const Parcel* inParcel) { |
| 171 | uint32_t dpy = inParcel->readInt32(); |
| 172 | uint32_t status = inParcel->readInt32(); |
| 173 | ALOGD_IF(QCLIENT_DEBUG, "%s: dpy = %d status = %s", __FUNCTION__, |
| 174 | dpy, getExternalDisplayState(status)); |
| 175 | |
| 176 | if(dpy > HWC_DISPLAY_PRIMARY && dpy <= HWC_DISPLAY_VIRTUAL) { |
| 177 | if(dpy == HWC_DISPLAY_VIRTUAL && status == EXTERNAL_OFFLINE) { |
| 178 | ctx->mWfdSyncLock.lock(); |
| 179 | ctx->mWfdSyncLock.signal(); |
| 180 | ctx->mWfdSyncLock.unlock(); |
| 181 | } else if(status == EXTERNAL_PAUSE) { |
| 182 | handle_pause(ctx, dpy); |
| 183 | } else if(status == EXTERNAL_RESUME) { |
| 184 | handle_resume(ctx, dpy); |
| 185 | } |
Arun Kumar K.R | c62935a | 2013-12-03 16:47:47 -0800 | [diff] [blame] | 186 | } else { |
Arun Kumar K.R | 33888f5 | 2014-10-09 15:56:33 -0700 | [diff] [blame] | 187 | ALOGE("%s: Invalid dpy", __FUNCTION__, dpy); |
| 188 | return; |
Raj kamal | 59fea56 | 2014-04-01 16:52:19 +0530 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
Ramkumar Radhakrishnan | 0a021a8 | 2014-05-19 19:53:56 -0700 | [diff] [blame] | 192 | |
| 193 | static status_t setViewFrame(hwc_context_t* ctx, const Parcel* inParcel) { |
| 194 | int dpy = inParcel->readInt32(); |
| 195 | if(dpy >= HWC_DISPLAY_PRIMARY && dpy <= HWC_DISPLAY_VIRTUAL) { |
| 196 | Locker::Autolock _sl(ctx->mDrawLock); |
| 197 | ctx->mViewFrame[dpy].left = inParcel->readInt32(); |
| 198 | ctx->mViewFrame[dpy].top = inParcel->readInt32(); |
| 199 | ctx->mViewFrame[dpy].right = inParcel->readInt32(); |
| 200 | ctx->mViewFrame[dpy].bottom = inParcel->readInt32(); |
| 201 | ALOGD_IF(QCLIENT_DEBUG, "%s: mViewFrame[%d] = [%d %d %d %d]", |
| 202 | __FUNCTION__, dpy, |
| 203 | ctx->mViewFrame[dpy].left, ctx->mViewFrame[dpy].top, |
| 204 | ctx->mViewFrame[dpy].right, ctx->mViewFrame[dpy].bottom); |
| 205 | return NO_ERROR; |
| 206 | } else { |
| 207 | ALOGE("In %s: invalid dpy index %d", __FUNCTION__, dpy); |
| 208 | return BAD_VALUE; |
| 209 | } |
| 210 | } |
| 211 | |
Naseer Ahmed | 35a268c | 2014-06-24 19:07:13 -0400 | [diff] [blame] | 212 | static void toggleDynamicDebug(hwc_context_t* ctx, const Parcel* inParcel) { |
| 213 | int debug_type = inParcel->readInt32(); |
| 214 | bool enable = !!inParcel->readInt32(); |
| 215 | ALOGD("%s: debug_type: %d enable:%d", |
| 216 | __FUNCTION__, debug_type, enable); |
| 217 | Locker::Autolock _sl(ctx->mDrawLock); |
| 218 | switch (debug_type) { |
| 219 | //break is ignored for DEBUG_ALL to toggle all of them at once |
| 220 | case IQService::DEBUG_ALL: |
| 221 | case IQService::DEBUG_MDPCOMP: |
| 222 | qhwc::MDPComp::dynamicDebug(enable); |
| 223 | if (debug_type != IQService::DEBUG_ALL) |
| 224 | break; |
| 225 | case IQService::DEBUG_VSYNC: |
| 226 | ctx->vstate.debug = enable; |
| 227 | if (debug_type != IQService::DEBUG_ALL) |
| 228 | break; |
Tatenda Chipeperekwa | 06af9cb | 2014-08-26 14:51:05 -0700 | [diff] [blame] | 229 | case IQService::DEBUG_VD: |
Manoj Kumar AVM | 9591a5e | 2014-08-21 22:50:21 -0700 | [diff] [blame] | 230 | HWCVirtualVDS::dynamicDebug(enable); |
Tatenda Chipeperekwa | 06af9cb | 2014-08-26 14:51:05 -0700 | [diff] [blame] | 231 | if (debug_type != IQService::DEBUG_ALL) |
| 232 | break; |
Saurabh Shah | 24eec8a | 2014-08-22 15:07:25 -0700 | [diff] [blame] | 233 | case IQService::DEBUG_PIPE_LIFECYCLE: |
| 234 | Overlay::debugPipeLifecycle(enable); |
| 235 | if (debug_type != IQService::DEBUG_ALL) |
| 236 | break; |
Naseer Ahmed | 35a268c | 2014-06-24 19:07:13 -0400 | [diff] [blame] | 237 | } |
| 238 | } |
| 239 | |
Saurabh Shah | 59562ff | 2014-09-30 16:13:12 -0700 | [diff] [blame] | 240 | static void setIdleTimeout(hwc_context_t* ctx, const Parcel* inParcel) { |
| 241 | uint32_t timeout = (uint32_t)inParcel->readInt32(); |
| 242 | ALOGD("%s :%u ms", __FUNCTION__, timeout); |
| 243 | Locker::Autolock _sl(ctx->mDrawLock); |
| 244 | MDPComp::setIdleTimeout(timeout); |
| 245 | } |
| 246 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 247 | status_t QClient::notifyCallback(uint32_t command, const Parcel* inParcel, |
| 248 | Parcel* outParcel) { |
Arun Kumar K.R | 8e7a62f | 2013-12-06 18:55:41 -0800 | [diff] [blame] | 249 | status_t ret = NO_ERROR; |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 250 | |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 251 | switch(command) { |
| 252 | case IQService::SECURING: |
| 253 | securing(mHwcContext, inParcel->readInt32()); |
| 254 | break; |
| 255 | case IQService::UNSECURING: |
| 256 | unsecuring(mHwcContext, inParcel->readInt32()); |
| 257 | break; |
| 258 | case IQService::SCREEN_REFRESH: |
| 259 | return screenRefresh(mHwcContext); |
| 260 | break; |
| 261 | case IQService::EXTERNAL_ORIENTATION: |
| 262 | setExtOrientation(mHwcContext, inParcel->readInt32()); |
| 263 | break; |
| 264 | case IQService::BUFFER_MIRRORMODE: |
| 265 | setBufferMirrorMode(mHwcContext, inParcel->readInt32()); |
| 266 | break; |
Arun Kumar K.R | 8e7a62f | 2013-12-06 18:55:41 -0800 | [diff] [blame] | 267 | case IQService::GET_DISPLAY_VISIBLE_REGION: |
| 268 | ret = getDisplayVisibleRegion(mHwcContext, inParcel->readInt32(), |
| 269 | outParcel); |
| 270 | break; |
Naseer Ahmed | 78c952e | 2013-11-25 18:12:23 -0500 | [diff] [blame] | 271 | case IQService::CHECK_EXTERNAL_STATUS: |
| 272 | isExternalConnected(mHwcContext, outParcel); |
| 273 | break; |
| 274 | case IQService::GET_DISPLAY_ATTRIBUTES: |
| 275 | getDisplayAttributes(mHwcContext, inParcel, outParcel); |
| 276 | break; |
| 277 | case IQService::SET_HSIC_DATA: |
Arun Kumar K.R | 2aa44c6 | 2014-01-21 23:08:28 -0800 | [diff] [blame] | 278 | setHSIC(inParcel); |
Raj kamal | 59fea56 | 2014-04-01 16:52:19 +0530 | [diff] [blame] | 279 | break; |
Arun Kumar K.R | 33888f5 | 2014-10-09 15:56:33 -0700 | [diff] [blame] | 280 | case IQService::SET_SECONDARY_DISPLAY_STATUS: |
| 281 | setSecondaryDisplayStatus(mHwcContext, inParcel); |
Raj kamal | 59fea56 | 2014-04-01 16:52:19 +0530 | [diff] [blame] | 282 | break; |
Ramkumar Radhakrishnan | 0a021a8 | 2014-05-19 19:53:56 -0700 | [diff] [blame] | 283 | case IQService::SET_VIEW_FRAME: |
| 284 | setViewFrame(mHwcContext, inParcel); |
| 285 | break; |
Naseer Ahmed | 35a268c | 2014-06-24 19:07:13 -0400 | [diff] [blame] | 286 | case IQService::DYNAMIC_DEBUG: |
| 287 | toggleDynamicDebug(mHwcContext, inParcel); |
| 288 | break; |
Saurabh Shah | 59562ff | 2014-09-30 16:13:12 -0700 | [diff] [blame] | 289 | case IQService::SET_IDLE_TIMEOUT: |
| 290 | setIdleTimeout(mHwcContext, inParcel); |
| 291 | break; |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 292 | default: |
Arun Kumar K.R | 8e7a62f | 2013-12-06 18:55:41 -0800 | [diff] [blame] | 293 | ret = NO_ERROR; |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 294 | } |
Arun Kumar K.R | 8e7a62f | 2013-12-06 18:55:41 -0800 | [diff] [blame] | 295 | return ret; |
Naseer Ahmed | 4957c52 | 2013-11-12 18:07:15 -0500 | [diff] [blame] | 296 | } |
| 297 | |
Saurabh Shah | 86c1729 | 2013-02-08 15:24:13 -0800 | [diff] [blame] | 298 | } |