⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 syncreport.h

📁 funambol windows mobile plugin source code, the source code is taken from the funambol site
💻 H
字号:
/*
 * Copyright (C) 2003-2007 Funambol, Inc
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY, TITLE, NONINFRINGEMENT or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 * 02111-1307  USA
 */

#ifndef INCL_SYNCREPORT
#define INCL_SYNCREPORT
/** @cond API */
/** @addtogroup Client */
/** @{ */

#include "base/fscapi.h"
#include "base/Log.h"
#include "base/util/StringBuffer.h"
#include "spds/SyncSource.h"
#include "spds/constants.h"
#include "spds/SyncSourceReport.h"
#include "spds/SyncManagerConfig.h"


// To notify if status comes from Client or server
#define CLIENT      "Client"
#define SERVER      "Server"


/**
 * The SyncReport class is used to summarize all results of a single synchronization.
 * During the synchronization process, all results about different operations
 * are stored in a SyncReport object, so the client will be able to get these
 * informations at the end.
 * Accessing this object a client can easily know for example the outcome
 * of each source synchronized, retrieve the number of items modified
 * on both sides, and the status code of each one.
 *
 */
class SyncReport {

private:

    // The error code of the last error occurred.
    int   lastErrorCode;

    // The error message of the last error occurred.
    char* lastErrorMsg;

    // Array of report for each SyncSource.
    SyncSourceReport* ssReport;
    unsigned int ssReportCount;


    /*
     * Function to initialize members.
     */
    void initialize();

    /*
     * Assign this object with the given SyncReport
     * @param sr the syncReport object
     */
    void assign(const SyncReport& sr);


public:

    SyncReport();
    SyncReport(SyncReport& sr);
    // Constructor passing a given configuration: setSyncSourceReports() is called.
    SyncReport(SyncManagerConfig& config);
    virtual ~SyncReport();

    /**
     * Returns the last error code for the whole sync;
     * there are other error codes attached to each
     * sync source.
     */
    const int          getLastErrorCode()         const;

    /**
     * the error description corresponding to getLastErrorCode(),
     * might be NULL even if an error occurred
     */
    const char*        getLastErrorMsg()          const;

    /** returns number of sync source reports stored in this report */
    const unsigned int getSyncSourceReportCount() const;

    void setLastErrorCode(const int code);
    void setLastErrorMsg (const char* msg);

    /** return pointer to internal SyncSourceReport object given the source name */
    SyncSourceReport* getSyncSourceReport(const char* name)   const;

    /** return pointer to internal SyncSourceReport object given its index (>=0, < getSyncSourceReportCount()) */
    SyncSourceReport* getSyncSourceReport(unsigned int index) const;


    /**
     * Create ssReport array from config.
     * The array is allocated new, will be freed in the desctructor.
     * SyncSourceReports are all owned here by SyncReport, each
     * SyncSource object has a link to its correspondent (external)
     * report, but does not own it.
     * SyncSourceReports are linked during SyncClient::sync().
     *
     * @param config: the SyncManager config to get source number/names.
     */
    void setSyncSourceReports(SyncManagerConfig& config);

    /**
     * Appends a textual representation of the sync report at the end
     * of the string buffer, without clearing it first.
     *
     * @param str      buffer to which text gets appended
     * @param verbose  if true, then detailed information about each item is
     *                 printed, otherwise only a summary
     */
    void toString(StringBuffer &str, BOOL verbose = FALSE);

    /**
     * Assign operator
     */
    SyncReport& operator = (const SyncReport& sr) {
        assign(sr);
        return *this;
    }
};

/** @} */
/** @endcond */
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -