php Protobuf-Extension-ExtensionFieldMap类(方法)实例源码

下面列出了php Protobuf-Extension-ExtensionFieldMap 类(方法)源码代码实例,从而了解它的用法。

作者:protobuf-ph    项目:protobu   
/**
  * @expectedException InvalidArgumentException
  * @expectedExceptionMessage Invalid extendee, ProtobufTest\Protos\Extension\Animal is expected but ProtobufTest\Protos\Extension\Cat given
  */
 public function testInvalidArgumentExceptionExtendee()
 {
     $animal = new Cat();
     $extensions = new ExtensionFieldMap(Animal::CLASS);
     $extension = new ExtensionField(Cat::CLASS, 'animal', 200, function () {
     }, function () {
     }, function () {
     });
     $extensions->put($extension, $animal);
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->modified_timestamp_ms !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->modified_timestamp_ms);
     }
     if ($this->deleted_item !== null) {
         $innerSize = $this->deleted_item->serializedSize($context);
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->inventory_item_data !== null) {
         $innerSize = $this->inventory_item_data->serializedSize($context);
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->success !== null) {
         $size += 1;
         $size += 1;
     }
     if ($this->awarded_badges !== null) {
         foreach ($this->awarded_badges as $val) {
             $size += 1;
             $size += $calculator->computeVarintSize($val->value());
         }
     }
     if ($this->awarded_badge_levels !== null) {
         foreach ($this->awarded_badge_levels as $val) {
             $size += 1;
             $size += $calculator->computeVarintSize($val);
         }
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->encounter_id !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->spawn_point_id !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->spawn_point_id);
     }
     if ($this->player_latitude !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->player_longitude !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->max_pokemon !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->max_pokemon);
     }
     if ($this->max_bag_items !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->max_bag_items);
     }
     if ($this->base_pokemon !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->base_pokemon);
     }
     if ($this->base_bag_items !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->base_bag_items);
     }
     if ($this->base_eggs !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->base_eggs);
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->result !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->result->value());
     }
     if ($this->items_awarded !== null) {
         foreach ($this->items_awarded as $val) {
             $innerSize = $val->serializedSize($context);
             $size += 1;
             $size += $innerSize;
             $size += $calculator->computeVarintSize($innerSize);
         }
     }
     if ($this->items_unlocked !== null) {
         foreach ($this->items_unlocked as $val) {
             $size += 1;
             $size += $calculator->computeVarintSize($val->value());
         }
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->result !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->result->value());
     }
     if ($this->currency_type !== null) {
         foreach ($this->currency_type as $val) {
             $size += 1;
             $size += $calculator->computeStringSize($val);
         }
     }
     if ($this->currency_awarded !== null) {
         foreach ($this->currency_awarded as $val) {
             $size += 1;
             $size += $calculator->computeVarintSize($val);
         }
     }
     if ($this->defenders_count !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->defenders_count);
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->pokemon_data !== null) {
         $innerSize = $this->pokemon_data->serializedSize($context);
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->trainer_public_profile !== null) {
         $innerSize = $this->trainer_public_profile->serializedSize($context);
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->training_pokemon !== null) {
         $innerSize = $this->training_pokemon->serializedSize($context);
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->disk_radius_m !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->cylinder_radius_m !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->cylinder_height_m !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->cylinder_ground_m !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->shoulder_mode_scale !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:protobuf-ph    项目:google-protobuf-prot   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->name !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->name);
     }
     if ($this->value !== null) {
         foreach ($this->value as $val) {
             $innerSize = $val->serializedSize($context);
             $size += 1;
             $size += $innerSize;
             $size += $calculator->computeVarintSize($innerSize);
         }
     }
     if ($this->options !== null) {
         $innerSize = $this->options->serializedSize($context);
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->equip_badge_cooldown_ms !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->equip_badge_cooldown_ms);
     }
     if ($this->catch_probability_bonus !== null) {
         foreach ($this->catch_probability_bonus as $val) {
             $size += 1;
             $size += 4;
         }
     }
     if ($this->flee_probability_bonus !== null) {
         foreach ($this->flee_probability_bonus as $val) {
             $size += 1;
             $size += 4;
         }
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->pokeball_type !== null) {
         $innerSize = 0;
         foreach ($this->pokeball_type as $val) {
             $innerSize += $calculator->computeVarintSize($val->value());
         }
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->capture_probability !== null) {
         $innerSize = 0;
         foreach ($this->capture_probability as $val) {
             $innerSize += 4;
         }
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->reticle_difficulty_scale !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->gym_state !== null) {
         $innerSize = $this->gym_state->serializedSize($context);
         $size += 1;
         $size += $innerSize;
         $size += $calculator->computeVarintSize($innerSize);
     }
     if ($this->name !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->name);
     }
     if ($this->urls !== null) {
         foreach ($this->urls as $val) {
             $size += 1;
             $size += $calculator->computeStringSize($val);
         }
     }
     if ($this->result !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->result->value());
     }
     if ($this->description !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->description);
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->platform !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->platform->value());
     }
     if ($this->device_manufacturer !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->device_manufacturer);
     }
     if ($this->device_model !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->device_model);
     }
     if ($this->locale !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->locale);
     }
     if ($this->app_version !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->app_version);
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->item_effect !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->item_effect->value());
     }
     if ($this->capture_multi !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->capture_multi_effect !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->item_effect_mod !== null) {
         $size += 1;
         $size += 4;
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->modifier_type !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->modifier_type->value());
     }
     if ($this->fort_id !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->fort_id);
     }
     if ($this->player_latitude !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->player_longitude !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->gym_id !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->gym_id);
     }
     if ($this->attacking_pokemon_ids !== null) {
         foreach ($this->attacking_pokemon_ids as $val) {
             $size += 1;
             $size += 8;
         }
     }
     if ($this->defending_pokemon_id !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->player_latitude !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->player_longitude !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->interaction_range_meters !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->max_total_deployed_pokemon !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->max_total_deployed_pokemon);
     }
     if ($this->max_player_deployed_pokemon !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->max_player_deployed_pokemon);
     }
     if ($this->deploy_stamina_multiplier !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->deploy_attack_multiplier !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->far_interaction_range_meters !== null) {
         $size += 1;
         $size += 8;
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->badge_type !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->badge_type->value());
     }
     if ($this->badge_rank !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->badge_rank);
     }
     if ($this->targets !== null) {
         foreach ($this->targets as $val) {
             $size += 1;
             $size += $calculator->computeVarintSize($val);
         }
     }
     if ($this->capture_reward !== null) {
         foreach ($this->capture_reward as $val) {
             $innerSize = $val->serializedSize($context);
             $size += 1;
             $size += $innerSize;
             $size += $calculator->computeVarintSize($innerSize);
         }
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }

作者:jaspervd    项目:pogoprotos-ph   
/**
  * {@inheritdoc}
  */
 public function serializedSize(\Protobuf\ComputeSizeContext $context)
 {
     $calculator = $context->getSizeCalculator();
     $size = 0;
     if ($this->codename !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->codename);
     }
     if ($this->user_message !== null) {
         $size += 1;
         $size += $calculator->computeStringSize($this->user_message);
     }
     if ($this->is_assignable !== null) {
         $size += 1;
         $size += 1;
     }
     if ($this->status !== null) {
         $size += 1;
         $size += $calculator->computeVarintSize($this->status->value());
     }
     if ($this->extensions !== null) {
         $size += $this->extensions->serializedSize($context);
     }
     return $size;
 }


问题


面经


文章

微信
公众号

扫码关注公众号