summaryrefslogtreecommitdiff
path: root/common/hal/google_camera_hal/dual_ir_depth_result_processor.cc
blob: ee304510132af6e2d55e9268c90f518502598bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
 * Copyright (C) 2019 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.
 */

//#define LOG_NDEBUG 0
#define LOG_TAG "DualIrDepthResultProcessor"
#define ATRACE_TAG ATRACE_TAG_CAMERA
#include <log/log.h>
#include <utils/Trace.h>

#include <inttypes.h>

#include "dual_ir_depth_result_processor.h"
#include "hal_utils.h"

namespace android {
namespace google_camera_hal {
std::unique_ptr<DualIrDepthResultProcessor> DualIrDepthResultProcessor::Create(
    InternalStreamManager* internal_stream_manager) {
  if (internal_stream_manager == nullptr) {
    ALOGE("%s: internal_stream_manager is null.", __FUNCTION__);
    return nullptr;
  }

  auto result_processor = std::unique_ptr<DualIrDepthResultProcessor>(
      new DualIrDepthResultProcessor(internal_stream_manager));
  if (result_processor == nullptr) {
    ALOGE("%s: Failed to create DualIrDepthResultProcessor.", __FUNCTION__);
    return nullptr;
  }

  return result_processor;
}

DualIrDepthResultProcessor::DualIrDepthResultProcessor(
    InternalStreamManager* internal_stream_manager)
    : internal_stream_manager_(internal_stream_manager) {
}

void DualIrDepthResultProcessor::SetResultCallback(
    ProcessCaptureResultFunc process_capture_result, NotifyFunc notify) {
  std::lock_guard<std::mutex> lock(callback_lock_);
  process_capture_result_ = process_capture_result;
  notify_ = notify;
}

status_t DualIrDepthResultProcessor::AddPendingRequests(
    const std::vector<ProcessBlockRequest>& process_block_requests,
    const CaptureRequest& remaining_session_request) {
  ATRACE_CALL();
  // This is the last result processor. Sanity check if requests contains
  // all remaining output buffers.
  if (!hal_utils::AreAllRemainingBuffersRequested(process_block_requests,
                                                  remaining_session_request)) {
    ALOGE("%s: Some output buffers will not be completed.", __FUNCTION__);
    return BAD_VALUE;
  }

  return OK;
}

void DualIrDepthResultProcessor::ProcessResult(ProcessBlockResult block_result) {
  ATRACE_CALL();
  std::lock_guard<std::mutex> lock(callback_lock_);
  std::unique_ptr<CaptureResult> result = std::move(block_result.result);
  if (result == nullptr) {
    ALOGW("%s: block_result has a null result.", __FUNCTION__);
    return;
  }

  if (process_capture_result_ == nullptr) {
    ALOGE("%s: process_capture_result_ is null, dropping a result.",
          __FUNCTION__);
    return;
  }

  // Depth Process Block should not return result metadata
  if (result->result_metadata != nullptr) {
    ALOGE("%s: non-null result metadata received from the depth process block",
          __FUNCTION__);
    return;
  }

  // Depth Process Block only returns depth stream buffer, so recycle any input
  // buffers to internal stream manager and forward the depth buffer to the
  // framework right away.
  for (auto& buffer : result->input_buffers) {
    status_t res = internal_stream_manager_->ReturnStreamBuffer(buffer);
    if (res != OK) {
      ALOGE(
          "%s: Failed to returned internal buffer[buffer_handle:%p, "
          "stream_id:%d, buffer_id%" PRIu64 "].",
          __FUNCTION__, buffer.buffer, buffer.stream_id, buffer.buffer_id);
    } else {
      ALOGV(
          "%s: Successfully returned internal buffer[buffer_handle:%p, "
          "stream_id:%d, buffer_id%" PRIu64 "].",
          __FUNCTION__, buffer.buffer, buffer.stream_id, buffer.buffer_id);
    }
  }
}

void DualIrDepthResultProcessor::Notify(
    const ProcessBlockNotifyMessage& block_message) {
  ATRACE_CALL();
  std::lock_guard<std::mutex> lock(callback_lock_);
  const NotifyMessage& message = block_message.message;
  if (notify_ == nullptr) {
    ALOGE("%s: notify_ is null, dropping a message", __FUNCTION__);
    return;
  }

  if (message.type != MessageType::kError) {
    ALOGE(
        "%s: depth result processor is not supposed to return shutter, "
        "dropping a message.",
        __FUNCTION__);
    return;
  }

  notify_(message);
}

status_t DualIrDepthResultProcessor::FlushPendingRequests() {
  ATRACE_CALL();
  return INVALID_OPERATION;
}

}  // namespace google_camera_hal
}  // namespace android