Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/mus/accelerators/accelerator_controller_registrar.h" | 5 #include "ash/mus/accelerators/accelerator_controller_registrar.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "ash/common/accelerators/accelerator_controller.h" | 9 #include "ash/common/accelerators/accelerator_controller.h" |
| 10 #include "ash/common/accelerators/accelerator_router.h" | 10 #include "ash/common/accelerators/accelerator_router.h" |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 // Callback from registering the accelerator. | 23 // Callback from registering the accelerator. |
| 24 void OnAcceleratorAdded(const ui::Accelerator& accelerator, bool added) { | 24 void OnAcceleratorAdded(const ui::Accelerator& accelerator, bool added) { |
| 25 // All our accelerators should be registered, so we expect |added| to be true. | 25 // All our accelerators should be registered, so we expect |added| to be true. |
| 26 DCHECK(added) << "duplicate accelerator key_code=" << accelerator.key_code() | 26 DCHECK(added) << "duplicate accelerator key_code=" << accelerator.key_code() |
| 27 << " type=" << accelerator.type() | 27 << " type=" << accelerator.type() |
| 28 << " modifiers=" << accelerator.modifiers(); | 28 << " modifiers=" << accelerator.modifiers(); |
| 29 } | 29 } |
| 30 | 30 |
| 31 // Callback from registering the accelerators. | |
| 32 void OnAcceleratorsAdded(const std::vector<ui::Accelerator>& ui_accelerators, | |
| 33 bool added) { | |
| 34 for (auto iter = ui_accelerators.begin(); iter != ui_accelerators.end(); | |
|
mfomitchev
2017/01/03 19:54:35
We still need the DCHECK here, even though we don'
| |
| 35 ++iter) | |
| 36 OnAcceleratorAdded(*iter, added); | |
| 31 } // namespace | 37 } // namespace |
| 38 } | |
| 32 | 39 |
| 33 AcceleratorControllerRegistrar::AcceleratorControllerRegistrar( | 40 AcceleratorControllerRegistrar::AcceleratorControllerRegistrar( |
| 34 WindowManager* window_manager, | 41 WindowManager* window_manager, |
| 35 uint16_t id_namespace) | 42 uint16_t id_namespace) |
| 36 : window_manager_(window_manager), | 43 : window_manager_(window_manager), |
| 37 id_namespace_(id_namespace), | 44 id_namespace_(id_namespace), |
| 38 next_id_(0), | 45 next_id_(0), |
| 39 router_(new AcceleratorRouter) { | 46 router_(new AcceleratorRouter) { |
| 40 window_manager_->AddAcceleratorHandler(id_namespace, this); | 47 window_manager_->AddAcceleratorHandler(id_namespace, this); |
| 41 } | 48 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 92 ? ui::mojom::EventResult::HANDLED | 99 ? ui::mojom::EventResult::HANDLED |
| 93 : ui::mojom::EventResult::UNHANDLED; | 100 : ui::mojom::EventResult::UNHANDLED; |
| 94 } | 101 } |
| 95 DCHECK_EQ(GetAcceleratorLocalId(id), ids.post_id); | 102 DCHECK_EQ(GetAcceleratorLocalId(id), ids.post_id); |
| 96 // NOTE: for post return value doesn't really matter. | 103 // NOTE: for post return value doesn't really matter. |
| 97 return WmShell::Get()->accelerator_controller()->Process(accelerator) | 104 return WmShell::Get()->accelerator_controller()->Process(accelerator) |
| 98 ? ui::mojom::EventResult::HANDLED | 105 ? ui::mojom::EventResult::HANDLED |
| 99 : ui::mojom::EventResult::UNHANDLED; | 106 : ui::mojom::EventResult::UNHANDLED; |
| 100 } | 107 } |
| 101 | 108 |
| 102 void AcceleratorControllerRegistrar::OnAcceleratorRegistered( | 109 void AcceleratorControllerRegistrar::AddAcceleratorToVector( |
| 103 const ui::Accelerator& accelerator) { | 110 const ui::Accelerator& accelerator, |
| 111 std::vector<ui::mojom::AcceleratorPtr>& accelerator_vector) { | |
| 104 Ids ids; | 112 Ids ids; |
| 105 if (!GenerateIds(&ids)) { | 113 if (!GenerateIds(&ids)) { |
| 106 DVLOG(1) << "max number of accelerators registered, dropping request"; | 114 DVLOG(1) << "max number of accelerators registered, dropping request"; |
| 107 return; | 115 return; |
| 108 } | 116 } |
| 109 DCHECK_EQ(0u, accelerator_to_ids_.count(accelerator)); | 117 DCHECK_EQ(0u, accelerator_to_ids_.count(accelerator)); |
| 110 accelerator_to_ids_[accelerator] = ids; | 118 accelerator_to_ids_[accelerator] = ids; |
| 111 DCHECK_EQ(accelerator_to_ids_.size() * 2, ids_.size()); | 119 DCHECK_EQ(accelerator_to_ids_.size() * 2, ids_.size()); |
| 112 | 120 |
| 113 ui::mojom::EventMatcherPtr event_matcher = ui::CreateKeyMatcher( | 121 ui::mojom::EventMatcherPtr event_matcher = ui::CreateKeyMatcher( |
|
mfomitchev
2017/01/03 19:54:35
Nit: rename to pre_event_matcher to be consistent?
| |
| 114 static_cast<ui::mojom::KeyboardCode>(accelerator.key_code()), | 122 static_cast<ui::mojom::KeyboardCode>(accelerator.key_code()), |
| 115 accelerator.modifiers()); | 123 accelerator.modifiers()); |
| 116 event_matcher->accelerator_phase = ui::mojom::AcceleratorPhase::PRE_TARGET; | 124 event_matcher->accelerator_phase = ui::mojom::AcceleratorPhase::PRE_TARGET; |
| 117 DCHECK(accelerator.type() == ui::ET_KEY_PRESSED || | 125 DCHECK(accelerator.type() == ui::ET_KEY_PRESSED || |
| 118 accelerator.type() == ui::ET_KEY_RELEASED); | 126 accelerator.type() == ui::ET_KEY_RELEASED); |
| 119 event_matcher->type_matcher->type = accelerator.type() == ui::ET_KEY_PRESSED | 127 event_matcher->type_matcher->type = accelerator.type() == ui::ET_KEY_PRESSED |
| 120 ? ui::mojom::EventType::KEY_PRESSED | 128 ? ui::mojom::EventType::KEY_PRESSED |
| 121 : ui::mojom::EventType::KEY_RELEASED; | 129 : ui::mojom::EventType::KEY_RELEASED; |
| 122 | 130 |
| 123 ui::mojom::EventMatcherPtr post_event_matcher = event_matcher.Clone(); | 131 ui::mojom::EventMatcherPtr post_event_matcher = event_matcher.Clone(); |
| 124 post_event_matcher->accelerator_phase = | 132 post_event_matcher->accelerator_phase = |
| 125 ui::mojom::AcceleratorPhase::POST_TARGET; | 133 ui::mojom::AcceleratorPhase::POST_TARGET; |
| 126 | 134 |
| 127 window_manager_->window_manager_client()->AddAccelerators( | 135 accelerator_vector.push_back( |
| 128 ui::CreateAcceleratorVector( | 136 ui::CreateAccelerator(ComputeAcceleratorId(id_namespace_, ids.pre_id), |
| 129 ComputeAcceleratorId(id_namespace_, ids.pre_id), | 137 std::move(event_matcher))); |
| 130 std::move(event_matcher)), | 138 |
| 131 base::Bind(OnAcceleratorAdded, accelerator)); | 139 accelerator_vector.push_back( |
| 140 ui::CreateAccelerator(ComputeAcceleratorId(id_namespace_, ids.post_id), | |
| 141 std::move(post_event_matcher))); | |
| 142 } | |
| 143 | |
| 144 void AcceleratorControllerRegistrar::OnAcceleratorsRegistered( | |
| 145 const std::vector<ui::Accelerator>& accelerators) { | |
| 146 std::vector<ui::mojom::AcceleratorPtr> accelerator_vector; | |
| 147 | |
| 148 for (auto iter = accelerators.begin(); iter != accelerators.end(); ++iter) | |
| 149 AddAcceleratorToVector(*iter, accelerator_vector); | |
| 132 | 150 |
| 133 window_manager_->window_manager_client()->AddAccelerators( | 151 window_manager_->window_manager_client()->AddAccelerators( |
| 134 ui::CreateAcceleratorVector( | 152 std::move(accelerator_vector), |
| 135 ComputeAcceleratorId(id_namespace_, ids.post_id), | 153 base::Bind(OnAcceleratorsAdded, accelerators)); |
| 136 std::move(post_event_matcher)), | 154 } |
| 155 | |
| 156 // add_accelerator_immediately default set to true. | |
| 157 void AcceleratorControllerRegistrar::OnAcceleratorRegistered( | |
| 158 const ui::Accelerator& accelerator) { | |
| 159 std::vector<ui::mojom::AcceleratorPtr> accelerator_vector; | |
| 160 | |
| 161 AddAcceleratorToVector(accelerator, accelerator_vector); | |
| 162 | |
| 163 window_manager_->window_manager_client()->AddAccelerators( | |
| 164 std::move(accelerator_vector), | |
| 137 base::Bind(OnAcceleratorAdded, accelerator)); | 165 base::Bind(OnAcceleratorAdded, accelerator)); |
| 138 } | 166 } |
| 139 | 167 |
| 140 void AcceleratorControllerRegistrar::OnAcceleratorUnregistered( | 168 void AcceleratorControllerRegistrar::OnAcceleratorUnregistered( |
| 141 const ui::Accelerator& accelerator) { | 169 const ui::Accelerator& accelerator) { |
| 142 auto iter = accelerator_to_ids_.find(accelerator); | 170 auto iter = accelerator_to_ids_.find(accelerator); |
| 143 DCHECK(iter != accelerator_to_ids_.end()); | 171 DCHECK(iter != accelerator_to_ids_.end()); |
| 144 Ids ids = iter->second; | 172 Ids ids = iter->second; |
| 145 accelerator_to_ids_.erase(iter); | 173 accelerator_to_ids_.erase(iter); |
| 146 ids_.erase(ids.pre_id); | 174 ids_.erase(ids.pre_id); |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 165 // Common case is we never wrap once, so this is typically cheap. Additionally | 193 // Common case is we never wrap once, so this is typically cheap. Additionally |
| 166 // we expect there not to be too many accelerators. | 194 // we expect there not to be too many accelerators. |
| 167 while (ids_.count(next_id_) > 0) | 195 while (ids_.count(next_id_) > 0) |
| 168 ++next_id_; | 196 ++next_id_; |
| 169 ids_.insert(next_id_); | 197 ids_.insert(next_id_); |
| 170 return next_id_++; | 198 return next_id_++; |
| 171 } | 199 } |
| 172 | 200 |
| 173 } // namespace mus | 201 } // namespace mus |
| 174 } // namespace ash | 202 } // namespace ash |
| OLD | NEW |