/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef nsAbLDAPChangeLogData_h__ #define nsAbLDAPChangeLogData_h__ #include "mozilla/Attributes.h" #include "nsAbLDAPReplicationData.h" #include "nsAbLDAPChangeLogQuery.h" typedef struct { nsCString changeLogDN; int32_t firstChangeNumber; int32_t lastChangeNumber; nsCString dataVersion; } RootDSEChangeLogEntry; class nsAbLDAPProcessChangeLogData : public nsAbLDAPProcessReplicationData { public : nsAbLDAPProcessChangeLogData(); NS_IMETHOD Init(nsIAbLDAPReplicationQuery * query, nsIWebProgressListener *progressListener); protected : ~nsAbLDAPProcessChangeLogData(); nsCOMPtr mChangeLogQuery; nsresult OnLDAPBind(nsILDAPMessage *aMessage); nsresult OnLDAPSearchEntry(nsILDAPMessage *aMessage) override; nsresult OnLDAPSearchResult(nsILDAPMessage *aMessage) override; nsresult ParseChangeLogEntries(nsILDAPMessage *aMessage); nsresult ParseRootDSEEntry(nsILDAPMessage *aMessage); nsresult GetAuthData(); // displays username and password prompt nsCString mAuthUserID; // user id of the user making the connection nsresult OnSearchAuthDNDone(); nsresult OnSearchRootDSEDone(); nsresult OnFindingChangesDone(); nsresult OnReplicatingChangeDone(); RootDSEChangeLogEntry mRootDSEEntry; bool mUseChangeLog; int32_t mChangeLogEntriesCount; int32_t mEntriesAddedQueryCount; nsStringArray mEntriesToAdd; }; #endif // nsAbLDAPChangeLogData_h__