| /* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you 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. |
| */ |
| |
| #ifndef DATASTAX_INTERNAL_TOKEN_AWARE_POLICY_HPP |
| #define DATASTAX_INTERNAL_TOKEN_AWARE_POLICY_HPP |
| |
| #include "host.hpp" |
| #include "load_balancing.hpp" |
| #include "scoped_ptr.hpp" |
| #include "token_map.hpp" |
| |
| namespace datastax { namespace internal { namespace core { |
| |
| class TokenAwarePolicy : public ChainedLoadBalancingPolicy { |
| public: |
| TokenAwarePolicy(LoadBalancingPolicy* child_policy, bool shuffle_replicas) |
| : ChainedLoadBalancingPolicy(child_policy) |
| , random_(NULL) |
| , index_(0) |
| , shuffle_replicas_(shuffle_replicas) {} |
| |
| virtual ~TokenAwarePolicy() {} |
| |
| virtual void init(const Host::Ptr& connected_host, const HostMap& hosts, Random* random, |
| const String& local_dc); |
| |
| virtual QueryPlan* new_query_plan(const String& keyspace, RequestHandler* request_handler, |
| const TokenMap* token_map); |
| |
| LoadBalancingPolicy* new_instance() { |
| return new TokenAwarePolicy(child_policy_->new_instance(), shuffle_replicas_); |
| } |
| |
| private: |
| class TokenAwareQueryPlan : public QueryPlan { |
| public: |
| TokenAwareQueryPlan(LoadBalancingPolicy* child_policy, QueryPlan* child_plan, |
| const CopyOnWriteHostVec& replicas, size_t start_index) |
| : child_policy_(child_policy) |
| , child_plan_(child_plan) |
| , replicas_(replicas) |
| , index_(start_index) |
| , remaining_(replicas->size()) {} |
| |
| Host::Ptr compute_next(); |
| |
| private: |
| LoadBalancingPolicy* child_policy_; |
| ScopedPtr<QueryPlan> child_plan_; |
| CopyOnWriteHostVec replicas_; |
| size_t index_; |
| size_t remaining_; |
| }; |
| |
| Random* random_; |
| size_t index_; |
| bool shuffle_replicas_; |
| |
| private: |
| DISALLOW_COPY_AND_ASSIGN(TokenAwarePolicy); |
| }; |
| }}} // namespace datastax::internal::core |
| |
| #endif |