Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124437 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 4F3331A00B7 for ; Mon, 15 Jul 2024 20:08:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1721074219; bh=R4/2krlqAWBbSvMB6XJOnGTVuAhUzHH50KrzO6Q+MmE=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=SROmwfv9tPSQnX1LZIDuXWoIqrec5yfOet31FWNyOi73fEWi3w8IpSvMz0XcqKlYp Axmo//gsJiDIBiHkzR5PiP5gGeL0JHZDSbnssUMshk6SVbJxgCvwecSNc7qPo5MH5L YY5vGHpQ5xsGWGkOiamEAxJVr+HykbezeVm2YWSdLu5niTWnS2bBE38mo7vppwR87d i/4qQkyj/dPp6LK9gdwktduFPk5y27fqDCpXGbA1ftPkweqR3JPg8njpTGxxA50+3R Upp4m7amRHKZE5xbQLxQXqui8HxeyV8kM1zgjC+eftDl8CMkwMMInU5RttKzu4zDur H82K2RMi/nInQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 420691808C0 for ; Mon, 15 Jul 2024 20:10:15 +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 ; Mon, 15 Jul 2024 20:10:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1721074124; bh=M2uuXigM1TSJlskO7alzPpn5WErSlEGhzAm0GvPH2g8=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=OMd5KnmsvDGCCGwe5Kkjkt1oKcdPft9Hc3xwmfmxFeu4aDSPJbZ1aIKK16OD4txu3 UHgz5LASBLPMM+P6shjGpGvVRldHCABbH/WiEChg3VrRnG4WGOf7CtEeZo76cnE8pC xJvlt1CjH5gUO1CqTXSBA636aJCsLHJS8yWS6uHFhTGZ2AmhYJgY5lXspQtZY8evdw 9NVHtZi/cLxGHFCCvuCGObWJK2c6KnUlZi9jj0oqts55+u4EVShoZ+VGIHbdvpEI/o Hwl4Bi2VBw9XitIRWYJ6ZUd4ZvDSeqDVKScMP7+4g+bFZG3avP3pMDsP111FumluDN 0red2RXfq6/MA== Message-ID: <9191a6b3-91f6-4339-99b5-42913bebdaac@bastelstu.be> Date: Mon, 15 Jul 2024 22:08:42 +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: Nicolas Grekas , =?UTF-8?Q?Benjamin_Au=C3=9Fenhofer?= Cc: PHP Internals List References: <1118bbcd-a7b4-47bf-bf35-1a36ab4628e1@bastelstu.be> <45847b93-02bf-459f-bcd2-81ba35a12c24@bastelstu.be> <46bd4098-2936-4e46-98e9-fe55118325c2@bastelstu.be> <61ab36bc-b045-452a-84e0-87367d4c680e@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/15/24 11:59, Nicolas Grekas wrote: > With refactoring, we can fix all design issues in all softwares. Yet that's > too theoretical and this is missing the point IMHO. What we want to provide > is a complete coverage of the lazy object domain. Simplifying too much can > lead to an incomplete solution that'd be too restrictive. I disagree that the right solution to avoiding refactoring in a PHP library is pushing the effort upstream into the PHP project itself, because performing refactoring in PHP is much much harder, due to the larger impact of any change. Yes, you said that providing the `reset*()` methods is only a small incremental change over the lazy object functionality in general, but it doesn't stop there. For any bit of API surface we provide, the following needs to happen: - Documentation pages need to be written. - Documentation pages need to be translated. - In case of bug reports, the person triaging the report will need to reference the documentation and RFC to find out what the intended behavior is. - In case it actually is a bug, someone will need to fix the bug. - In case the bug is not fixable due to a bad choice made in the design phase, either the API needs to stay buggy or a replacement API needs to be provided and the old one deprecated. - Any bugfix needs to be weighted against possible breakage, because Hyrum's Law exists. - Any new RFC will need to take the API and the interactions between the RFC topic and the API in question into account (for example if lazy objects came first and hooks afterwards, then the hook authors would need to think about the interaction with lazy objects). Any bit of API surface we add to PHP will need to remain stable for the next 20+ years, because that's the backwards compatibility expectations our users have. These expectations are so strong, that users expect us to not even deprecate things (see the bulk deprecation discussion thread). I want to see strong arguments in favor of the inclusion in PHP itself that make it clear that the benefits to the users of PHP outweigh the maintenance effort for the next generation of PHP maintainers. This feature is a complex feature, because of all the interaction with other features (case in point: The number of edge cases I pointed out), thus it needs stronger arguments compared to the addition of a new function (e.g. the array_find() function in PHP 8.4). I see these arguments in favor of the inclusion in PHP for the new*() methods, I do not see these arguments for the resetAs*() methods. > I share this angle: figuring out the minimal API to cover the domain. > > Yet I showed reset methods proved useful already (see also my example about > refreshable fixtures) - not only as "just tools", but more importantly from > a theoretical aspect as a useful API to cover all situations that userland > will encounter (and does already). If we don't have them, I know I will > have to maintain a library that already provides this resetting capability > because there are valid use cases for them. That'd be a failure to address > the needs of userland on the topic to me. Best regards Tim Düsterhus