Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 12, 2010, 1:08:58 PM (14 years ago)
Author:
scheusso
Message:
  • merged network2 branch into presentation3 branch (lots of network traffic and cpu load improvements)
  • fixed network related bugs in BigExplosion
Location:
code/branches/presentation3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation3

  • code/branches/presentation3/src/libraries/network/synchronisable/Serialise.h

    r6964 r7153  
    7474            return *(uint32_t*)(mem) == variable->getObjectID();
    7575        else
    76             return *(uint32_t*)(mem) == OBJECTID_UNKNOWN;
     76            return variable == variable->getSynchronisable(*(uint32_t*)(mem));
    7777    }
    7878   
  • code/branches/presentation3/src/libraries/network/synchronisable/Synchronisable.cc

    r6961 r7153  
    4949  * Initializes all Variables and sets the right objectID_
    5050  */
    51   Synchronisable::Synchronisable(BaseObject* creator ){
     51  Synchronisable::Synchronisable(BaseObject* creator )
     52  {
    5253    RegisterRootObject(Synchronisable);
    5354    static uint32_t idCounter=0;
     
    7374    else
    7475      this->creatorID_ = OBJECTID_UNKNOWN;
    75 
    76     /*searchcreatorID:
    77     if (creator)
    78     {
    79         Synchronisable* synchronisable_creator = orxonox_cast<Synchronisable*>(creator);
    80         if (synchronisable_creator && synchronisable_creator->objectMode_)
    81         {
    82             this->creatorID = synchronisable_creator->getScene()->getObjectID();
    83         }
    84         else if (creator != creator->getCreator())
    85         {
    86             creator = creator->getCreator();
    87             goto searchcreatorID;
    88         }
    89     }*/
    9076  }
    9177
     
    9480   * Delete all callback objects and remove objectID_ from the objectMap_
    9581   */
    96   Synchronisable::~Synchronisable(){
     82  Synchronisable::~Synchronisable()
     83  {
    9784    // delete callback function objects
    9885    if(!Identifier::isCreatingHierarchy()){
     
    10188        deletedObjects_.push(objectID_);
    10289    }
    103     // delete all Synchronisable Variables from syncList ( which are also in stringList )
    104     for(std::vector<SynchronisableVariableBase*>::iterator it = syncList.begin(); it!=syncList.end(); it++)
     90    // delete all Synchronisable Variables from syncList_ ( which are also in stringList_ )
     91    for(std::vector<SynchronisableVariableBase*>::iterator it = syncList_.begin(); it!=syncList_.end(); it++)
    10592      delete (*it);
    106     syncList.clear();
    107     stringList.clear();
     93    syncList_.clear();
     94    stringList_.clear();
    10895    std::map<uint32_t, Synchronisable*>::iterator it;
    10996    it = objectMap_.find(objectID_);
     
    118105   * @param b true if this object is located on a client or on a server
    119106   */
    120   void Synchronisable::setClient(bool b){
     107  void Synchronisable::setClient(bool b)
     108  {
    121109    if(b) // client
    122110      state_=0x2;
     
    135123  {
    136124    SynchronisableHeader header(mem);
    137 
    138     if(!header.isDataAvailable())
    139     {
    140       mem += header.getDataSize();
    141       return 0;
    142     }
     125    assert( !header.isDiffed() );
    143126
    144127    COUT(4) << "fabricating object with id: " << header.getObjectID() << std::endl;
     
    160143      if (!synchronisable_creator)
    161144      {
    162         mem += header.getDataSize(); //.TODO: this suckz.... remove size from header
     145        mem += header.getDataSize()+SynchronisableHeader::getSize(); //.TODO: this suckz.... remove size from header
    163146        assert(0); // TODO: uncomment this if we have a clean objecthierarchy (with destruction of children of objects) ^^
    164147        return 0;
     
    198181   * @return true/false
    199182   */
    200   bool Synchronisable::deleteObject(uint32_t objectID_){
     183  bool Synchronisable::deleteObject(uint32_t objectID_)
     184  {
    201185    if(!getSynchronisable(objectID_))
    202186      return false;
     
    215199   * @return pointer to the Synchronisable with the objectID_
    216200   */
    217   Synchronisable* Synchronisable::getSynchronisable(uint32_t objectID_){
     201  Synchronisable* Synchronisable::getSynchronisable(uint32_t objectID_)
     202  {
    218203    std::map<uint32_t, Synchronisable*>::iterator it1;
    219204    it1 = objectMap_.find(objectID_);
    220205    if (it1 != objectMap_.end())
    221206      return it1->second;
    222 
    223 //     ObjectList<Synchronisable>::iterator it;
    224 //     for(it = ObjectList<Synchronisable>::begin(); it; ++it){
    225 //       if( it->getObjectID()==objectID_ ){
    226 //         objectMap_[objectID_] = *it;
    227 //         return *it;
    228 //       }
    229 //     }
    230207    // if the objects not in the map it should'nt exist at all anymore
    231208    return NULL;
     
    247224   * @return true: if !doSync or if everything was successfully saved
    248225   */
    249   uint32_t Synchronisable::getData(uint8_t*& mem, int32_t id, uint8_t mode){
     226  uint32_t Synchronisable::getData(uint8_t*& mem, std::vector<uint32_t>& sizes, int32_t id, uint8_t mode)
     227  {
     228    unsigned int test = 0;
    250229    if(mode==0x0)
    251230      mode=state_;
     
    255234    uint32_t tempsize = 0;
    256235#ifndef NDEBUG
     236    uint8_t* oldmem = mem;
    257237    if (this->classID_==0)
    258238      COUT(3) << "classid 0 " << this->getIdentifier()->getName() << std::endl;
     
    272252    // end copy header
    273253
    274 
    275     COUT(5) << "Synchronisable getting data from objectID_: " << objectID_ << " classID_: " << classID_ << std::endl;
     254    CCOUT(5) << "getting data from objectID_: " << objectID_ << ", classID_: " << classID_ << std::endl;
     255//     COUT(4) << "objectid: " << this->objectID_ << ":";
    276256    // copy to location
    277     for(i=syncList.begin(); i!=syncList.end(); ++i){
    278       tempsize += (*i)->getData( mem, mode );
     257    for(i=syncList_.begin(); i!=syncList_.end(); ++i)
     258    {
     259      uint32_t varsize = (*i)->getData( mem, mode );
     260//       COUT(4) << " " << varsize;
     261      tempsize += varsize;
     262      sizes.push_back(varsize);
     263      ++test;
    279264      //tempsize += (*i)->getSize( mode );
    280265    }
    281 
    282     tempsize += SynchronisableHeader::getSize();
     266//     COUT(4) << endl;
     267
    283268    header.setObjectID( this->objectID_ );
    284269    header.setCreatorID( this->creatorID_ );
    285270    header.setClassID( this->classID_ );
    286     header.setDataAvailable( true );
    287271    header.setDataSize( tempsize );
     272    assert( tempsize == mem-oldmem-SynchronisableHeader::getSize() );
     273    assert( test == this->getNrOfVariables() );
     274    header.setDiffed(false);
     275    tempsize += SynchronisableHeader::getSize();
    288276
    289277#ifndef NDEBUG
     
    302290   * @return true/false
    303291   */
    304   bool Synchronisable::updateData(uint8_t*& mem, uint8_t mode, bool forceCallback){
     292  bool Synchronisable::updateData(uint8_t*& mem, uint8_t mode, bool forceCallback)
     293  {
    305294    if(mode==0x0)
    306295      mode=state_;
    307     std::vector<SynchronisableVariableBase *>::iterator i;
    308     if(syncList.empty()){
     296    if(syncList_.empty())
     297    {
    309298      assert(0);
    310       COUT(4) << "Synchronisable::updateData syncList is empty" << std::endl;
     299      COUT(2) << "Synchronisable::updateData syncList_ is empty" << std::endl;
    311300      return false;
    312301    }
     
    314303    uint8_t* data=mem;
    315304    // start extract header
    316     SynchronisableHeader syncHeader(mem);
    317     assert(syncHeader.getObjectID()==this->objectID_);
    318     assert(syncHeader.getCreatorID()==this->creatorID_);
    319     assert(syncHeader.getClassID()==this->classID_);
    320     if(syncHeader.isDataAvailable()==false){
    321       mem += syncHeader.getDataSize();
    322       return true;
    323     }
    324 
    325     mem += SynchronisableHeader::getSize();
    326     // stop extract header
     305    SynchronisableHeaderLight syncHeaderLight(mem);
     306    assert(syncHeaderLight.getObjectID()==this->getObjectID());
    327307
    328308    //COUT(5) << "Synchronisable: objectID_ " << syncHeader.getObjectID() << ", classID_ " << syncHeader.getClassID() << " size: " << syncHeader.getDataSize() << " synchronising data" << std::endl;
    329     for(i=syncList.begin(); i!=syncList.end(); i++)
    330     {
    331       assert( mem <= data+syncHeader.getDataSize() ); // always make sure we don't exceed the datasize in our stream
    332       (*i)->putData( mem, mode, forceCallback );
    333     }
    334     assert(mem == data+syncHeader.getDataSize());
     309    if( !syncHeaderLight.isDiffed() )
     310    {
     311      SynchronisableHeader syncHeader2(mem);
     312      assert( this->getClassID() == syncHeader2.getClassID() );
     313      assert( this->getCreatorID() == syncHeader2.getCreatorID() );
     314      mem += SynchronisableHeader::getSize();
     315      std::vector<SynchronisableVariableBase *>::iterator i;
     316      for(i=syncList_.begin(); i!=syncList_.end(); i++)
     317      {
     318        assert( mem <= data+syncHeader2.getDataSize()+SynchronisableHeader::getSize() ); // always make sure we don't exceed the datasize in our stream
     319        (*i)->putData( mem, mode, forceCallback );
     320      }
     321      assert(mem == data+syncHeaderLight.getDataSize()+SynchronisableHeader::getSize() );
     322    }
     323    else
     324    {
     325      mem += SynchronisableHeaderLight::getSize();
     326//       COUT(0) << "objectID: " << this->objectID_ << endl;
     327      while( mem < data+syncHeaderLight.getDataSize()+SynchronisableHeaderLight::getSize() )
     328      {
     329        VariableID varID = *(VariableID*)mem;
     330//         COUT(0) << "varID: " << varID << endl;
     331        assert( varID < syncList_.size() );
     332        mem += sizeof(VariableID);
     333        syncList_[varID]->putData( mem, mode, forceCallback );
     334      }
     335      assert(mem == data+syncHeaderLight.getDataSize()+SynchronisableHeaderLight::getSize() );
     336    }
    335337    return true;
    336338  }
     
    342344  * @return amount of bytes
    343345  */
    344   uint32_t Synchronisable::getSize(int32_t id, uint8_t mode){
    345     int tsize=SynchronisableHeader::getSize();
     346  uint32_t Synchronisable::getSize(int32_t id, uint8_t mode)
     347  {
     348    uint32_t tsize=SynchronisableHeader::getSize();
    346349    if (mode==0x0)
    347350      mode=state_;
     
    351354    tsize += this->dataSize_;
    352355    std::vector<SynchronisableVariableBase*>::iterator i;
    353     for(i=stringList.begin(); i!=stringList.end(); ++i){
     356    for(i=stringList_.begin(); i!=stringList_.end(); ++i)
     357    {
    354358      tsize += (*i)->getSize( mode );
    355359    }
     
    362366   * @return true/false
    363367   */
    364   bool Synchronisable::doSync(int32_t id, uint8_t mode){
     368  bool Synchronisable::doSync(int32_t id, uint8_t mode)
     369  {
    365370    if(mode==0x0)
    366371      mode=state_;
    367     return ( (this->objectMode_ & mode)!=0 && (!syncList.empty() ) );
    368   }
    369 
    370   /**
    371    * This function looks at the header located in the bytestream and checks wheter objectID_ and classID_ match with the Synchronisables ones
    372    * @param mem pointer to the bytestream
    373    */
    374   bool Synchronisable::isMyData(uint8_t* mem)
    375   {
    376     SynchronisableHeader header(mem);
    377     assert(header.getObjectID()==this->objectID_);
    378     return header.isDataAvailable();
     372    return ( (this->objectMode_ & mode)!=0 && (!syncList_.empty() ) );
    379373  }
    380374
     
    387381   * @param mode same as in registerVar
    388382   */
    389   void Synchronisable::setSyncMode(uint8_t mode){
     383  void Synchronisable::setSyncMode(uint8_t mode)
     384  {
    390385    assert(mode==0x0 || mode==0x1 || mode==0x2 || mode==0x3);
    391386    this->objectMode_=mode;
     
    399394    else
    400395      sv = new SynchronisableVariable<std::string>(variable, mode, cb);
    401     syncList.push_back(sv);
    402     stringList.push_back(sv);
     396    syncList_.push_back(sv);
     397    stringList_.push_back(sv);
     398  }
     399
     400template <> void Synchronisable::unregisterVariable( std::string& variable )
     401  {
     402    bool unregistered_nonexistent_variable = true;
     403    std::vector<SynchronisableVariableBase*>::iterator it = syncList_.begin();
     404    while(it!=syncList_.end())
     405    {
     406      if( ((*it)->getReference()) == &variable )
     407      {
     408        delete (*it);
     409        syncList_.erase(it);
     410        unregistered_nonexistent_variable = false;
     411        break;
     412      }
     413      else
     414        ++it;
     415    }
     416    assert(unregistered_nonexistent_variable == false);
     417   
     418    it = stringList_.begin();
     419    while(it!=stringList_.end())
     420    {
     421      if( ((*it)->getReference()) == &variable )
     422      {
     423        delete (*it);
     424        stringList_.erase(it);
     425        return;
     426      }
     427      else
     428        ++it;
     429    }
     430    unregistered_nonexistent_variable = true;
     431    assert(unregistered_nonexistent_variable == false); //if we reach this point something went wrong:
     432    // the variable has not been registered before
    403433  }
    404434
  • code/branches/presentation3/src/libraries/network/synchronisable/Synchronisable.h

    r7127 r7153  
    6565    };
    6666  }
     67 
     68  typedef uint8_t VariableID;
    6769
    6870  /**
     
    7274   * in an emulated bitset.
    7375   * Bit 1 to 31 store the size of the Data the synchronisable consumes in the stream
    74    * Bit 32 is a bool and defines whether the data is actually stored or is just filled up with 0
     76   * Bit 32 is a bool and defines whether the variables are stored in diff mode
    7577   * Byte 5 to 8: objectID_
    7678   * Byte 9 to 12: classID_
     
    7880   */
    7981  class _NetworkExport SynchronisableHeader{
     82    friend class SynchronisableHeaderLight;
    8083    private:
    81       uint8_t *data_;
     84      uint8_t* data_;
    8285    public:
    8386      SynchronisableHeader(uint8_t* data)
    8487        { data_ = data; }
    8588      inline static uint32_t getSize()
    86         { return 16; }
    87       inline uint32_t getDataSize() const
    88         { return (*(uint32_t*)data_) & 0x7FFFFFFF; } //only use the first 31 bits
    89       inline void setDataSize(uint32_t size)
    90         { *(uint32_t*)(data_) = (size & 0x7FFFFFFF) | (*(uint32_t*)(data_) & 0x80000000 ); }
    91       inline bool isDataAvailable() const
    92         { return ( (*(uint32_t*)data_) & 0x80000000 ) == 0x80000000; }
    93       inline void setDataAvailable( bool b)
    94         { *(uint32_t*)(data_) = (b << 31) | (*(uint32_t*)(data_) & 0x7FFFFFFF ); }
     89        { return 14; }
     90      inline uint16_t getDataSize() const
     91        { return (*(uint16_t*)data_) & 0x7FFF; } //only use the first 31 bits
     92      inline void setDataSize(uint16_t size)
     93        { *(uint16_t*)(data_) = (size & 0x7FFFFFFF) | (*(uint16_t*)(data_) & 0x8000 ); }
     94      inline bool isDiffed() const
     95        { return ( (*(uint16_t*)data_) & 0x8000 ) == 0x8000; }
     96      inline void setDiffed( bool b)
     97        { *(uint16_t*)(data_) = (b << 15) | (*(uint16_t*)(data_) & 0x7FFF ); }
    9598      inline uint32_t getObjectID() const
    96         { return *(uint32_t*)(data_+4); }
     99        { return *(uint32_t*)(data_+2); }
    97100      inline void setObjectID(uint32_t objectID_)
    98         { *(uint32_t*)(data_+4) = objectID_; }
     101        { *(uint32_t*)(data_+2) = objectID_; }
    99102      inline uint32_t getClassID() const
    100         { return *(uint32_t*)(data_+8); }
     103        { return *(uint32_t*)(data_+6); }
    101104      inline void setClassID(uint32_t classID_)
    102         { *(uint32_t*)(data_+8) = classID_; }
     105        { *(uint32_t*)(data_+6) = classID_; }
    103106      inline uint32_t getCreatorID() const
    104         { return *(uint32_t*)(data_+12); }
     107        { return *(uint32_t*)(data_+10); }
    105108      inline void setCreatorID(uint32_t creatorID_)
    106         { *(uint32_t*)(data_+12) = creatorID_; }
     109        { *(uint32_t*)(data_+10) = creatorID_; }
    107110      inline void operator=(SynchronisableHeader& h)
    108111        { memcpy(data_, h.data_, getSize()); }
    109112  };
    110113
     114    /**
     115   * @brief: stores information about a Synchronisable (light version)
     116   *
     117   * This class stores the information about a Synchronisable (objectID_, dataSize)
     118   * in an emulated bitset.
     119   * Bit 1 to 31 store the size of the Data the synchronisable consumes in the stream
     120   * Bit 32 is a bool and defines whether the variables are stored in diff mode
     121   * Byte 5 to 8: objectID_
     122   */
     123  class _NetworkExport SynchronisableHeaderLight{
     124    private:
     125      uint8_t* data_;
     126    public:
     127      SynchronisableHeaderLight(uint8_t* data)
     128        { data_ = data; }
     129      inline static uint32_t getSize()
     130        { return 6; }
     131      inline uint16_t getDataSize() const
     132        { return (*(uint16_t*)data_) & 0x7FFF; } //only use the first 31 bits
     133      inline void setDataSize(uint16_t size)
     134        { *(uint16_t*)(data_) = (size & 0x7FFFFFFF) | (*(uint16_t*)(data_) & 0x8000 ); }
     135      inline bool isDiffed() const
     136        { return ( (*(uint16_t*)data_) & 0x8000 ) == 0x8000; }
     137      inline void setDiffed( bool b)
     138        { *(uint16_t*)(data_) = (b << 15) | (*(uint16_t*)(data_) & 0x7FFF ); }
     139      inline uint32_t getObjectID() const
     140        { return *(uint32_t*)(data_+2); }
     141      inline void setObjectID(uint32_t objectID_)
     142        { *(uint32_t*)(data_+2) = objectID_; }
     143      inline void operator=(SynchronisableHeader& h)
     144        { memcpy(data_, h.data_, getSize()); }
     145  };
    111146
    112147  /**
     
    135170
    136171    void setSyncMode(uint8_t mode);
     172   
     173    inline uint32_t getNrOfVariables(){ return this->syncList_.size(); }
     174    inline uint32_t getVarSize( VariableID ID )
     175    { return this->syncList_[ID]->getSize(state_); }
    137176
    138177  protected:
     
    140179    template <class T> void registerVariable(T& variable, uint8_t mode=0x1, NetworkCallbackBase *cb=0, bool bidirectional=false);
    141180    template <class T> void registerVariable(std::set<T>& variable, uint8_t mode=0x1, NetworkCallbackBase *cb=0, bool bidirectional=false);
     181    template <class T> void unregisterVariable(T& var);
    142182
    143183    void setPriority(unsigned int freq){ objectFrequency_ = freq; }
     
    145185
    146186  private:
    147     uint32_t getData(uint8_t*& men, int32_t id, uint8_t mode=0x0);
     187    uint32_t getData(uint8_t*& mem, std::vector<uint32_t>& sizes, int32_t id, uint8_t mode);
    148188    uint32_t getSize(int32_t id, uint8_t mode=0x0);
    149189    bool updateData(uint8_t*& mem, uint8_t mode=0x0, bool forceCallback=false);
    150     bool isMyData(uint8_t* mem);
    151190    bool doSync(int32_t id, uint8_t mode=0x0);
    152191
     
    158197    uint32_t classID_;
    159198
    160     std::vector<SynchronisableVariableBase*> syncList;
    161     std::vector<SynchronisableVariableBase*> stringList;
     199    std::vector<SynchronisableVariableBase*> syncList_;
     200    std::vector<SynchronisableVariableBase*> stringList_;
    162201    uint32_t dataSize_; //size of all variables except strings
    163202    static uint8_t state_; // detemines wheter we are server (default) or client
     
    173212    if (bidirectional)
    174213    {
    175       syncList.push_back(new SynchronisableVariableBidirectional<T>(variable, mode, cb));
    176       this->dataSize_ += syncList.back()->getSize(state_);
     214      syncList_.push_back(new SynchronisableVariableBidirectional<T>(variable, mode, cb));
     215      this->dataSize_ += syncList_.back()->getSize(state_);
    177216    }
    178217    else
    179218    {
    180       syncList.push_back(new SynchronisableVariable<T>(variable, mode, cb));
     219      syncList_.push_back(new SynchronisableVariable<T>(variable, mode, cb));
    181220      if ( this->state_ == mode )
    182         this->dataSize_ += syncList.back()->getSize(state_);
     221        this->dataSize_ += syncList_.back()->getSize(state_);
    183222    }
     223  }
     224 
     225  template <class T> void Synchronisable::unregisterVariable(T& variable){
     226    std::vector<SynchronisableVariableBase*>::iterator it = syncList_.begin();
     227    while(it!=syncList_.end()){
     228      if( ((*it)->getReference()) == &variable ){
     229        this->dataSize_ -= (*it)->getSize(Synchronisable::state_);
     230        delete (*it);
     231        syncList_.erase(it);
     232        return;
     233      }
     234      else
     235        it++;
     236    }
     237    bool unregistered_nonexistent_variable = false;
     238    assert(unregistered_nonexistent_variable); //if we reach this point something went wrong:
     239    // the variable has not been registered before
    184240  }
    185241
     
    191247    else
    192248      sv = new SynchronisableVariable<std::set<T> >(variable, mode, cb);
    193     syncList.push_back(sv);
    194     stringList.push_back(sv);
     249    syncList_.push_back(sv);
     250    stringList_.push_back(sv);
    195251  }
    196252
    197253  template <> _NetworkExport void Synchronisable::registerVariable( std::string& variable, uint8_t mode, NetworkCallbackBase *cb, bool bidirectional);
    198254//   template <class T> _NetworkExport void Synchronisable::registerVariable<std::set<T> >( std::set<T>& variable, uint8_t mode, NetworkCallbackBase *cb, bool bidirectional);
     255  template <> _NetworkExport void Synchronisable::unregisterVariable( std::string& variable );
    199256
    200257
Note: See TracChangeset for help on using the changeset viewer.