#ifndef COMPONENTS_SYNC_ENGINE_LOOPBACK_SERVER_LOOPBACK_SERVER_ENTITY_H_
#define COMPONENTS_SYNC_ENGINE_LOOPBACK_SERVER_LOOPBACK_SERVER_ENTITY_H_
#include <stdint.h>
#include <map>
#include <memory>
#include <string>
#include "components/sync/base/model_type.h"
#include "components/sync/protocol/entity_specifics.pb.h"
namespace sync_pb {
class SyncEntity;
class LoopbackServerEntity;
enum LoopbackServerEntity_Type : int;
}
namespace syncer {
class LoopbackServerEntity {
public:
static std::string CreateId(const syncer::ModelType& model_type,
const std::string& inner_id);
static std::string GetTopLevelId(const syncer::ModelType& model_type);
static std::unique_ptr<LoopbackServerEntity> CreateEntityFromProto(
const sync_pb::LoopbackServerEntity& entity);
virtual ~LoopbackServerEntity();
const std::string& GetId() const;
syncer::ModelType GetModelType() const;
int64_t GetVersion() const;
void SetVersion(int64_t version);
const std::string& GetName() const;
void SetName(const std::string& name);
void SetSpecifics(const sync_pb::EntitySpecifics& updated_specifics);
sync_pb::EntitySpecifics GetSpecifics() const;
virtual bool RequiresParentId() const = 0;
virtual std::string GetParentId() const = 0;
virtual void SerializeAsProto(sync_pb::SyncEntity* proto) const = 0;
virtual sync_pb::LoopbackServerEntity_Type GetLoopbackServerEntityType()
const;
virtual bool IsDeleted() const;
virtual bool IsFolder() const;
virtual bool IsPermanent() const;
virtual void SerializeAsLoopbackServerEntity(
sync_pb::LoopbackServerEntity* entity) const;
static syncer::ModelType GetModelTypeFromId(const std::string& id);
static std::string GetInnerIdFromId(const std::string& id);
protected:
LoopbackServerEntity(const std::string& id,
const syncer::ModelType& model_type,
int64_t version,
const std::string& name);
void SerializeBaseProtoFields(sync_pb::SyncEntity* sync_entity) const;
private:
const std::string id_;
const syncer::ModelType model_type_;
int64_t version_;
std::string name_;
sync_pb::EntitySpecifics specifics_;
};
}
#endif