Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124587 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 347E21A00B7 for ; Thu, 25 Jul 2024 14:46:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1721918913; bh=s8W0JQjPE27HeZteBaqj/MJ+/AwgCGDrtRkeTqtWq0w=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=IOPEAitw50LC8yBXls4BONFh/RF1Mlc5t6gf2OgvNrWiRzUVivShiTJAgV5Gj0ire 0SUxtW0d1ucpsHWpRD4CNnGZR0ubhYiUBVwc4evHg4mHM/qsbFvhcyyWDoz+C8RVvX e+ynDHAhfW25zxXDNRr8vtBTKIjqcQb5EiMUKEmBdZpgBsXfkV8QaBpqhwtpwnzuTW UnKDz94fgYwOqn45EAopGZeSMp88ihb7srZRGr7SO5+9RsRRuL4pfMKOPPTD8R2zWM 8EWYeL/DK1QoGXjbm5DfBXSGYLMvXG4hmnazSjAbfCU/cfeQLOXLeUZVbRK6Tvtzj4 TEv3QQ2gfuP3w== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id E2C6C180068 for ; Thu, 25 Jul 2024 14:48:32 +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 autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No 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 ; Thu, 25 Jul 2024 14:48:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1721918815; bh=wn3FbHv4go79ktjcdKAHNoZQkJBkDeA7fwchKUsbRlg=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=n4HPweXfydQ2YZiIPuZzTRiGxRxk0ZG/ZP10XJz+wnP/C6BiS6DQ+hfhaHKe1lZPp rzXVjnHKC9GuKMC8Dqb0nHPj0NqqEazPprXociaLDBQTzJlsFYT0/NqM4X5FTwmnz0 1zRFK45pbe2ptlzEh4J0TBX5mveHEYcoBtzgV2MY5sNhWzaxo5lFJnlU3F3d3ssCyg M5M2FY6jfImxpRXIbaDFng9+sTcsTZlCVMSgvQOk2y75rS/tVgoLtRHNNb8hQZDQzH r272zqYDWPsPwge7iRzKU+jHpGi9R5mGmYcDUJH0uKt2hAlhigmEe2dJerzVOs25AJ uO0mslZeThygQ== Message-ID: Date: Thu, 25 Jul 2024 16:46:52 +0200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 Subject: Re: [PHP-DEV] [RFC] Lazy Objects To: Nicolas Grekas Cc: Rob Landers , =?UTF-8?Q?Benjamin_Au=C3=9Fenhofer?= , PHP Internals List References: <45847b93-02bf-459f-bcd2-81ba35a12c24@bastelstu.be> <46bd4098-2936-4e46-98e9-fe55118325c2@bastelstu.be> <61ab36bc-b045-452a-84e0-87367d4c680e@bastelstu.be> <07e065f2-8f64-4bad-9a98-51f4eaf63ddb@app.fastmail.com> <2a0a4650-c2c5-4c6d-ad3a-25365b3391b2@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 On 7/24/24 17:23, Nicolas Grekas wrote: > Cloning has kept us busy in the last days and after many brainstorming > sessions, we've decided to follow your initial proposal : make the clone > operator trigger the initialization of the original object before cloning > it. Thank you. That cloning behavior certainly is much easier to reason about. > I invite everybody to give the RFC a new read. > I'm seeing there are some more changes and not just to the cloning section. I've went through the entire RFC once again and here are my (hopefully final) five remarks. They are only about textual clarification of some behaviors, I don't have any further semantic concerns. 1. `__destruct()` is still called `__destructor()` in some places. 2. In the "Initialization Triggers" section, it says > The following special cases do not trigger initialization of a lazy > object: > Cloning, unless __clone() is implemented and accesses a property. This is no longer true with the latest changes. 3. In the "Proxy objects" initialization section, it says: > The value of properties used with > ReflectionProperty::skipLazyInitialization() or > setRawValueWithoutLazyInitialization() is discarded. I assume that the destructors of the values will be called if the reference count drops to zero? Then perhaps add "as if unset() was called" or "as if null was assigned to them" to make it clear that this is a regular reassignment and not some lazy object speciality. 4. In the "Proxy objects" initialization section, it says: > get_class() or the ::class constant evaluate to the class name of > the proxy, regardless of the actual instance. This feels misplaced, because my understanding it that it is not something about the initialization, but rather proxy objects in general? Perhaps this is best moved to the "Real instance implementation" section in the Notes. It should also mention the behavior of the `instanceof` operator and also type declarations. Perhaps some phrasing like the following is best: "The externally visible type of a lazy proxy is the type of the proxy object, even if the real object is of a parent type. This includes the get_class() function, the ::class constant, the instanceof operator and type checking in parameter, return and property types." 5. In the explanation of "ReflectionClass::markLazyObjectAsInitialized()", it says: > Its behavior is the same as described for Ghost Objects in the > Initialization Sequence section, except that the initializer is not > called. > This means that calling `markLazyObjectAsInitialized()` on a lazy proxy turns it into a regular object of the proxy class, as if `newInstanceWithoutConstructor()` was used, right? Best regards Tim Düsterhus