| // Copyright 2021 Google LLC |
| // |
| // 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 |
| // |
| // https://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. |
| |
| #include "platform/impl/windows/submittable_executor.h" |
| |
| #include "platform/impl/windows/executor.h" |
| #include "platform/public/logging.h" |
| |
| namespace location { |
| namespace nearby { |
| namespace windows { |
| |
| SubmittableExecutor::SubmittableExecutor() : SubmittableExecutor(1) {} |
| |
| SubmittableExecutor::SubmittableExecutor(int32_t max_concurrancy) |
| : executor_(std::make_unique<nearby::windows::Executor>(max_concurrancy)), |
| shut_down_(false) {} |
| |
| bool SubmittableExecutor::DoSubmit(Runnable&& wrapped_callable) { |
| if (!shut_down_) { |
| executor_->Execute(std::move(wrapped_callable)); |
| return true; |
| } |
| |
| NEARBY_LOGS(ERROR) << "Error: " << __func__ |
| << ": Attempt to DoSubmit on a shutdown executor."; |
| |
| return false; |
| } |
| |
| // https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Executor.html#execute-java.lang.Runnable- |
| void SubmittableExecutor::Execute(Runnable&& runnable) { |
| if (!shut_down_) { |
| executor_->Execute(std::move(runnable)); |
| } else { |
| NEARBY_LOGS(ERROR) << "Error: " << __func__ |
| << ": Attempt to Execute on a shutdown executor."; |
| } |
| } |
| |
| // https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html#shutdown-- |
| void SubmittableExecutor::Shutdown() { |
| if (!shut_down_) { |
| executor_->Shutdown(); |
| shut_down_ = true; |
| } |
| |
| NEARBY_LOGS(ERROR) << "Error: " << __func__ |
| << ": Attempt to Shutdown on a shutdown executor."; |
| } |
| |
| } // namespace windows |
| } // namespace nearby |
| } // namespace location |