Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124090 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id 1E3D31A009C for ; Sun, 30 Jun 2024 13:08:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1719753004; bh=YU1GAoUDkNw3YGyEFp/BxeLbgGeU/MJumPPF9rqNehY=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=lFfeg9cLy3+tTBwtAdLCKDnlyrzIWP76uegStidNv5AWjCZy13mSF3XyxVjOm4tCF y3QvOzg9HiH9vqMhg9WOWqiz8J9WvaD3zygKm+S7L030aTeL/fNDLBEQfp23UveEeb oQuHQhVuVPuSziPe0ltWk2fYI2oGznBtLSGdAYT61TPf1EjFQf/ty4WKLICXWsXoIg c048h1S4pO5TmOwFw1fP6UdYtbJeLpUdPH87siUIlgbCOfRfIUTjQd4UYFpLBmhvmu kUIM83B9Xih/PAQVPTqFa0zilbShK9A1rP016p1pseVzP6uzxR45MKbT9pC+bcbPNF W/L2/dXxQsfIw== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id D6A771801D5 for ; Sun, 30 Jun 2024 13:10:03 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: Error (Cannot connect to unix socket '/var/run/clamav/clamd.ctl': connect: Connection refused) X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Sun, 30 Jun 2024 13:10:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1719752921; bh=GHK/Tl4jqo4p5n6Fdo5H7kpjEMIVuGDJAIw8Aaf5pD0=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=GEIA34QlfsfEIkkIbPQKeMUo+JnML159pfY4Rvy4zXo0roPodF23Eb202BBLxofnr aI/6nyD/Rn50em8H57cb3ZjtQ6VYlkETxzwZhRzww9YwG8Es+5w7o8d9g+5A4nmmSH mfKOBdYmpJ2f+luG5zgBq5xbJ+zdi8wDtW9A+uuwzSblTIvGD659U8njowjhW1WO7+ FiK1bO8P7kZwsC53+4J0EQpJmdPe7OYcrY65ETFstKnTuYwere5l/lcgzmiPX3x1b5 Cqe2zAk85Gfs2u14dcEPa0E0nFbH1+ghMCth4wuiZzlgp3gV9sV43IqpldKBpybuqt 6c6SVdxD7uVsQ== Message-ID: <45847b93-02bf-459f-bcd2-81ba35a12c24@bastelstu.be> Date: Sun, 30 Jun 2024 15:08:40 +0200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net MIME-Version: 1.0 Subject: Re: [PHP-DEV] [RFC] Lazy Objects To: Arnaud Le Blanc Cc: Nicolas Grekas , PHP Internals List References: <1118bbcd-a7b4-47bf-bf35-1a36ab4628e1@bastelstu.be> Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi I finally got around to giving the RFC another read. Please apologize if this email asks questions that have already been answered elsewhere, as the current mailing list volume makes it hard for me to keep up. On 6/14/24 14:13, Arnaud Le Blanc wrote: >> Is there any reason to call the makeLazyX() methods on an object that >> was not just freshly created with ->newInstanceWithoutConstructor() >> then? > > There are not many reasons to do that. The only indented use-case that > doesn't involve an object freshly created with > ->newInstanceWithoutConstructor() is to let an object manage its own > laziness by making itself lazy in its constructor: > Okay. But the RFC (and your email) does not explain why I would want do that. It appears that much of the RFC's complexity (e.g. around readonly properties and destructors) stems from the wish to support turning an existing object into a lazy object. If there is no strong reason to support that, I would suggest dropping that. It could always be added in a future PHP version. >>>> - The return value of the initializer has to be an instance of a parent >>>> or a child class of the lazy-object and it must have the same properties. >>>> >>>> Would returning a parent class not violate the LSP? Consider the >>>> following example: >>>> >>>> class A { public string $s; } >>>> class B extends A { public function foo() { } } >>>> >>>> $o = new B(); >>>> ReflectionLazyObject::makeLazyProxy($o, function (B $o) { >>>> return new A(); >>>> }); >>>> >>>> $o->foo(); // works >>>> $o->s = 'init'; >>>> $o->foo(); // breaks >>> >>> $o->foo() calls B::foo() in both cases here, as $o is always the proxy >>> object. We need to double check, but we believe that this rule doesn't >>> break LSP. >> >> I don't understand what happens with the 'A' object then, but perhaps >> this will become clearer once you add the requested examples. > > The 'A' object is what is called the "actual instance" in the RFC. $o > acts as a proxy to the actual instance: Any property access on $o is > forwarded to the actual instance A. I've read the updated RFC and it's still not clear to me that returning an arbitrary “actual instance” object is sound. Especially when private properties - which for all intents and purposes are not visible outside of the class - are involved. Consider the following: class A { public function __construct( public string $property, ) {} } class B extends A { public function __construct( string $property, private string $foo, ) { parent::__construct($property); } public function getFoo() { return $this->foo; } } $r = new ReflectionClass(B::class); $obj = $r->newLazyProxy(function ($obj) { return new A('value'); }); var_dump($obj->property); // 'value' var_dump($obj->getFoo()); // Implicitly accesses A::${'\0B\0foo'} (i.e. the mangled B::$foo property)? Now you might say that B does not have the same properties as A and creating the proxy is not legal, but then the addition of a new private property would immediately break the use of the lazy proxy, which specifically is something that private properties should not be able to do. Best regards Tim Düsterhus