OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file |
| 4 |
| 5 #include "chrome/browser/sync/glue/autofill_profile_change_processor.h" |
| 6 |
| 7 #include <string> |
| 8 #include <vector> |
| 9 |
| 10 #include "base/string_util.h" |
| 11 #include "base/utf_string_conversions.h" |
| 12 #include "chrome/browser/autofill/autofill_profile.h" |
| 13 #include "chrome/browser/autofill/personal_data_manager.h" |
| 14 #include "chrome/browser/sync/engine/syncapi.h" |
| 15 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" |
| 16 #include "chrome/browser/sync/glue/change_processor.h" |
| 17 #include "chrome/browser/sync/glue/do_optimistic_refresh_Task.h" |
| 18 #include "chrome/browser/sync/unrecoverable_error_handler.h" |
| 19 #include "chrome/browser/webdata/web_database.h" |
| 20 #include "chrome/browser/webdata/autofill_change.h" |
| 21 #include "chrome/common/notification_observer.h" |
| 22 #include "chrome/common/notification_registrar.h" |
| 23 #include "chrome/common/notification_service.h" |
| 24 #include "chrome/common/notification_type.h" |
| 25 |
| 26 namespace browser_sync { |
| 27 |
| 28 AutofillProfileChangeProcessor::AutofillProfileChangeProcessor( |
| 29 AutofillProfileModelAssociator *model_associator, |
| 30 WebDatabase* web_database, |
| 31 PersonalDataManager* personal_data_manager, |
| 32 UnrecoverableErrorHandler* error_handler) |
| 33 : ChangeProcessor(error_handler), |
| 34 model_associator_(model_associator), |
| 35 web_database_(web_database), |
| 36 personal_data_(personal_data_manager), |
| 37 observing_(false) { |
| 38 DCHECK(model_associator); |
| 39 DCHECK(web_database); |
| 40 DCHECK(error_handler); |
| 41 DCHECK(personal_data_manager); |
| 42 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); |
| 43 |
| 44 StartObserving(); |
| 45 } |
| 46 |
| 47 AutofillProfileChangeProcessor::ScopedObserver::ScopedObserver( |
| 48 AutofillProfileChangeProcessor* processor) { |
| 49 processor_ = processor; |
| 50 processor_->StopObserving(); |
| 51 } |
| 52 |
| 53 AutofillProfileChangeProcessor::ScopedObserver::~ScopedObserver() { |
| 54 processor_->StartObserving(); |
| 55 } |
| 56 |
| 57 void AutofillProfileChangeProcessor::ApplyChangesFromSyncModel( |
| 58 const sync_api::BaseTransaction *write_trans, |
| 59 const sync_api::SyncManager::ChangeRecord* changes, |
| 60 int change_count) { |
| 61 |
| 62 ScopedObserver observer(this); |
| 63 |
| 64 sync_api::ReadNode autofill_profile_root(write_trans); |
| 65 if (!autofill_profile_root.InitByTagLookup(kAutofillProfileTag)) { |
| 66 error_handler()->OnUnrecoverableError(FROM_HERE, |
| 67 "Autofill Profile root node lookup failed"); |
| 68 return; |
| 69 } |
| 70 |
| 71 for (int i = 0;i < change_count; ++i) { |
| 72 if (sync_api::SyncManager::ChangeRecord::ACTION_DELETE == |
| 73 changes[i].action) { |
| 74 DCHECK(changes[i].specifics.HasExtension( |
| 75 sync_pb::autofill_profile)); |
| 76 |
| 77 const sync_pb::AutofillProfileSpecifics& specifics = |
| 78 changes[i].specifics.GetExtension(sync_pb::autofill_profile); |
| 79 |
| 80 autofill_changes_.push_back(AutofillProfileChangeRecord(changes[i].action, |
| 81 changes[i].id, |
| 82 specifics)); |
| 83 continue; |
| 84 } |
| 85 |
| 86 // If it is not a delete. |
| 87 sync_api::ReadNode sync_node(write_trans); |
| 88 if (!sync_node.InitByIdLookup(changes[i].id)) { |
| 89 LOG(ERROR) << "Could not find the id in sync db " << changes[i].id; |
| 90 continue; |
| 91 } |
| 92 |
| 93 const sync_pb::AutofillProfileSpecifics& autofill( |
| 94 sync_node.GetAutofillProfileSpecifics()); |
| 95 |
| 96 autofill_changes_.push_back(AutofillProfileChangeRecord(changes[i].action, |
| 97 changes[i].id, |
| 98 autofill)); |
| 99 } |
| 100 } |
| 101 |
| 102 void AutofillProfileChangeProcessor::Observe(NotificationType type, |
| 103 const NotificationSource& source, |
| 104 const NotificationDetails& details) { |
| 105 |
| 106 WebDataService* wds = Source<WebDataService>(source).ptr(); |
| 107 |
| 108 if (!wds || wds->GetDatabase() != web_database_) |
| 109 return; |
| 110 |
| 111 sync_api::WriteTransaction trans(share_handle()); |
| 112 sync_api::ReadNode autofill_root(&trans); |
| 113 if (!autofill_root.InitByTagLookup(kAutofillProfileTag)) { |
| 114 error_handler()->OnUnrecoverableError(FROM_HERE, |
| 115 "Server did not create a tolp level node"); |
| 116 return; |
| 117 } |
| 118 |
| 119 DCHECK_EQ(type.value, NotificationType::AUTOFILL_PROFILE_CHANGED_GUID); |
| 120 |
| 121 AutofillProfileChangeGUID* change = |
| 122 Details<AutofillProfileChangeGUID>(details).ptr(); |
| 123 |
| 124 ActOnChange(change, &trans, autofill_root); |
| 125 } |
| 126 |
| 127 void AutofillProfileChangeProcessor::ActOnChange( |
| 128 AutofillProfileChangeGUID* change, |
| 129 sync_api::WriteTransaction* trans, |
| 130 sync_api::ReadNode& autofill_root) { |
| 131 DCHECK(change->profile()); |
| 132 switch(change->type()) { |
| 133 case AutofillProfileChangeGUID::ADD: { |
| 134 AddAutofillProfileSyncNode(trans, autofill_root, *(change->profile())); |
| 135 break; |
| 136 } |
| 137 case AutofillProfileChangeGUID::UPDATE: { |
| 138 int64 sync_id = model_associator_->GetSyncIdFromChromeId(change->key()); |
| 139 if (sync_api::kInvalidId == sync_id) { |
| 140 LOG(ERROR) << "Sync id is not found for " << change->key(); |
| 141 break; |
| 142 } |
| 143 sync_api::WriteNode node(trans); |
| 144 if (!node.InitByIdLookup(sync_id)) { |
| 145 LOG(ERROR) << "Could not find sync node for id " << sync_id; |
| 146 break; |
| 147 } |
| 148 |
| 149 WriteAutofillProfile(*(change->profile()), &node); |
| 150 break; |
| 151 } |
| 152 case AutofillProfileChangeGUID::REMOVE: { |
| 153 int64 sync_id = model_associator_->GetSyncIdFromChromeId(change->key()); |
| 154 if (sync_api::kInvalidId == sync_id) { |
| 155 LOG(ERROR) << "Sync id is not found for " << change->key(); |
| 156 break; |
| 157 } |
| 158 sync_api::WriteNode node(trans); |
| 159 if (!node.InitByIdLookup(sync_id)) { |
| 160 LOG(ERROR) << "Could not find sync node for id " << sync_id; |
| 161 break; |
| 162 } |
| 163 node.Remove(); |
| 164 model_associator_->Disassociate(sync_id); |
| 165 break; |
| 166 } |
| 167 default: |
| 168 NOTREACHED(); |
| 169 } |
| 170 } |
| 171 |
| 172 void AutofillProfileChangeProcessor::CommitChangesFromSyncModel() { |
| 173 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); |
| 174 |
| 175 if (!running()) |
| 176 return; |
| 177 |
| 178 ScopedObserver observer(this); |
| 179 |
| 180 for (unsigned int i = 0;i < autofill_changes_.size(); ++i) { |
| 181 if (sync_api::SyncManager::ChangeRecord::ACTION_DELETE == |
| 182 autofill_changes_[i].action_) { |
| 183 if (!web_database_->RemoveAutoFillProfile( |
| 184 autofill_changes_[i].profile_specifics_.guid())) { |
| 185 LOG(ERROR) << "could not delete the profile " << |
| 186 autofill_changes_[i].profile_specifics_.guid(); |
| 187 continue; |
| 188 } |
| 189 continue; |
| 190 } |
| 191 |
| 192 // Now for updates and adds. |
| 193 ApplyAutofillProfileChange(autofill_changes_[i].action_, |
| 194 autofill_changes_[i].profile_specifics_, |
| 195 autofill_changes_[i].id_); |
| 196 } |
| 197 |
| 198 autofill_changes_.clear(); |
| 199 |
| 200 PostOptimisticRefreshTask(); |
| 201 } |
| 202 |
| 203 void AutofillProfileChangeProcessor::PostOptimisticRefreshTask() { |
| 204 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, |
| 205 new DoOptimisticRefreshForAutofill( |
| 206 personal_data_)); |
| 207 } |
| 208 |
| 209 void AutofillProfileChangeProcessor::ApplyAutofillProfileChange( |
| 210 sync_api::SyncManager::ChangeRecord::Action action, |
| 211 const sync_pb::AutofillProfileSpecifics& profile_specifics, |
| 212 int64 sync_id) { |
| 213 |
| 214 DCHECK_NE(sync_api::SyncManager::ChangeRecord::ACTION_DELETE, action); |
| 215 switch (action) { |
| 216 case sync_api::SyncManager::ChangeRecord::ACTION_ADD: { |
| 217 AutoFillProfile p(profile_specifics.guid()); |
| 218 AutofillProfileModelAssociator::OverwriteProfileWithServerData(&p, |
| 219 profile_specifics); |
| 220 if (!web_database_->AddAutoFillProfile(p)) { |
| 221 LOG(ERROR) << "could not add autofill profile for guid " << p.guid(); |
| 222 break; |
| 223 } |
| 224 |
| 225 // Now that the node has been succesfully created we can associate it. |
| 226 model_associator_->Associate(&(p.guid()), sync_id); |
| 227 break; |
| 228 } |
| 229 case sync_api::SyncManager::ChangeRecord::ACTION_UPDATE: { |
| 230 AutoFillProfile *p; |
| 231 if (!web_database_->GetAutoFillProfileForGUID( |
| 232 profile_specifics.guid(), &p)) { |
| 233 LOG(ERROR) << "Could not find the autofill profile to update for " << |
| 234 profile_specifics.guid(); |
| 235 break; |
| 236 } |
| 237 scoped_ptr<AutoFillProfile> autofill_pointer(p); |
| 238 p = NULL; |
| 239 AutofillProfileModelAssociator::OverwriteProfileWithServerData( |
| 240 autofill_pointer.get(), |
| 241 profile_specifics); |
| 242 |
| 243 if (!web_database_->UpdateAutoFillProfile(*(autofill_pointer.get()))) { |
| 244 LOG(ERROR) << "Could not update autofill profile for " << |
| 245 profile_specifics.guid(); |
| 246 break; |
| 247 } |
| 248 break; |
| 249 } |
| 250 default: { |
| 251 NOTREACHED(); |
| 252 break; |
| 253 } |
| 254 } |
| 255 } |
| 256 |
| 257 void AutofillProfileChangeProcessor::RemoveSyncNode(const std::string& guid, |
| 258 sync_api::WriteTransaction* trans) { |
| 259 sync_api::WriteNode node(trans); |
| 260 int64 sync_id = model_associator_->GetSyncIdFromChromeId(guid); |
| 261 if (sync_api::kInvalidId == sync_id) { |
| 262 LOG(ERROR) << "Could not find the node in associator " << guid; |
| 263 return; |
| 264 } |
| 265 |
| 266 if (!node.InitByIdLookup(sync_id)) { |
| 267 LOG(ERROR) << "Could not find the sync node for " << guid; |
| 268 return; |
| 269 } |
| 270 |
| 271 model_associator_->Disassociate(sync_id); |
| 272 node.Remove(); |
| 273 } |
| 274 |
| 275 void AutofillProfileChangeProcessor::AddAutofillProfileSyncNode( |
| 276 sync_api::WriteTransaction* trans, |
| 277 sync_api::BaseNode& autofill_profile_root, |
| 278 const AutoFillProfile& profile) { |
| 279 sync_api::WriteNode node(trans); |
| 280 if (!node.InitUniqueByCreation(syncable::AUTOFILL_PROFILE, |
| 281 autofill_profile_root, |
| 282 profile.guid())) { |
| 283 LOG(ERROR) << "could not create a sync node "; |
| 284 return; |
| 285 } |
| 286 |
| 287 node.SetTitle(UTF8ToWide(profile.guid())); |
| 288 |
| 289 WriteAutofillProfile(profile, &node); |
| 290 } |
| 291 |
| 292 void AutofillProfileChangeProcessor::StartObserving() { |
| 293 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); |
| 294 notification_registrar_.Add(this, |
| 295 NotificationType::AUTOFILL_PROFILE_CHANGED_GUID, |
| 296 NotificationService::AllSources()); |
| 297 } |
| 298 |
| 299 void AutofillProfileChangeProcessor::StopObserving() { |
| 300 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); |
| 301 notification_registrar_.RemoveAll(); |
| 302 } |
| 303 |
| 304 void AutofillProfileChangeProcessor::WriteAutofillProfile( |
| 305 const AutoFillProfile& profile, |
| 306 sync_api::WriteNode* node) { |
| 307 sync_pb::AutofillProfileSpecifics specifics; |
| 308 specifics.set_guid(profile.guid()); |
| 309 specifics.set_name_first(UTF16ToUTF8( |
| 310 profile.GetFieldText(AutoFillType(NAME_FIRST)))); |
| 311 specifics.set_name_middle(UTF16ToUTF8( |
| 312 profile.GetFieldText(AutoFillType(NAME_MIDDLE)))); |
| 313 specifics.set_name_last( |
| 314 UTF16ToUTF8(profile.GetFieldText(AutoFillType(NAME_LAST)))); |
| 315 specifics.set_address_home_line1( |
| 316 UTF16ToUTF8(profile.GetFieldText(AutoFillType(ADDRESS_HOME_LINE1)))); |
| 317 specifics.set_address_home_line2( |
| 318 UTF16ToUTF8(profile.GetFieldText(AutoFillType(ADDRESS_HOME_LINE2)))); |
| 319 specifics.set_address_home_city(UTF16ToUTF8(profile.GetFieldText( |
| 320 AutoFillType(ADDRESS_HOME_CITY)))); |
| 321 specifics.set_address_home_state(UTF16ToUTF8(profile.GetFieldText( |
| 322 AutoFillType(ADDRESS_HOME_STATE)))); |
| 323 specifics.set_address_home_country(UTF16ToUTF8(profile.GetFieldText( |
| 324 AutoFillType(ADDRESS_HOME_COUNTRY)))); |
| 325 specifics.set_address_home_zip(UTF16ToUTF8(profile.GetFieldText( |
| 326 AutoFillType(ADDRESS_HOME_ZIP)))); |
| 327 specifics.set_email_address(UTF16ToUTF8(profile.GetFieldText( |
| 328 AutoFillType(EMAIL_ADDRESS)))); |
| 329 specifics.set_company_name(UTF16ToUTF8(profile.GetFieldText( |
| 330 AutoFillType(COMPANY_NAME)))); |
| 331 specifics.set_phone_fax_whole_number(UTF16ToUTF8(profile.GetFieldText( |
| 332 AutoFillType(PHONE_FAX_WHOLE_NUMBER)))); |
| 333 specifics.set_phone_home_whole_number(UTF16ToUTF8(profile.GetFieldText( |
| 334 AutoFillType(PHONE_HOME_WHOLE_NUMBER)))); |
| 335 node->SetAutofillProfileSpecifics(specifics); |
| 336 } |
| 337 |
| 338 } // namespace browser_sync |
| 339 |
OLD | NEW |