This source file includes following definitions.
- Get
 
- Get
 
- Swap
 
- CopyFrom
 
- MergeFrom
 
- Equals
 
- Clear
 
#include "components/policy/core/common/policy_bundle.h"
#include "base/logging.h"
#include "base/stl_util.h"
namespace policy {
PolicyBundle::PolicyBundle() {}
PolicyBundle::~PolicyBundle() {
  Clear();
}
PolicyMap& PolicyBundle::Get(const PolicyNamespace& ns) {
  DCHECK(ns.domain != POLICY_DOMAIN_CHROME || ns.component_id.empty());
  PolicyMap*& policy = policy_bundle_[ns];
  if (!policy)
    policy = new PolicyMap();
  return *policy;
}
const PolicyMap& PolicyBundle::Get(const PolicyNamespace& ns) const {
  DCHECK(ns.domain != POLICY_DOMAIN_CHROME || ns.component_id.empty());
  const_iterator it = policy_bundle_.find(ns);
  return it == end() ? kEmpty_ : *it->second;
}
void PolicyBundle::Swap(PolicyBundle* other) {
  policy_bundle_.swap(other->policy_bundle_);
}
void PolicyBundle::CopyFrom(const PolicyBundle& other) {
  Clear();
  for (PolicyBundle::const_iterator it = other.begin();
       it != other.end(); ++it) {
    policy_bundle_[it->first] = it->second->DeepCopy().release();
  }
}
void PolicyBundle::MergeFrom(const PolicyBundle& other) {
  
  
  MapType::iterator it_this = policy_bundle_.begin();
  MapType::iterator end_this = policy_bundle_.end();
  const_iterator it_other = other.begin();
  const_iterator end_other = other.end();
  while (it_this != end_this && it_other != end_other) {
    if (it_this->first == it_other->first) {
      
      it_this->second->MergeFrom(*it_other->second);
      ++it_this;
      ++it_other;
    } else if (it_this->first < it_other->first) {
      
      ++it_this;
    } else if (it_other->first < it_this->first) {
      
      PolicyMap*& policy = policy_bundle_[it_other->first];
      DCHECK(!policy);
      policy = it_other->second->DeepCopy().release();
      ++it_other;
    } else {
      NOTREACHED();
    }
  }
  
  while (it_other != end_other) {
    PolicyMap*& policy = policy_bundle_[it_other->first];
    DCHECK(!policy);
    policy = it_other->second->DeepCopy().release();
    ++it_other;
  }
}
bool PolicyBundle::Equals(const PolicyBundle& other) const {
  
  
  
  const_iterator it_this = begin();
  const_iterator it_other = other.begin();
  while (true) {
    
    while (it_this != end() && it_this->second->empty())
      ++it_this;
    while (it_other != other.end() && it_other->second->empty())
      ++it_other;
    if (it_this == end() || it_other == other.end())
      break;
    if (it_this->first != it_other->first ||
        !it_this->second->Equals(*it_other->second)) {
      return false;
    }
    ++it_this;
    ++it_other;
  }
  return it_this == end() && it_other == other.end();
}
void PolicyBundle::Clear() {
  STLDeleteValues(&policy_bundle_);
}
}