rfc:namespacecurlies

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
rfc:namespacecurlies [2008/08/31 13:10] hellyrfc:namespacecurlies [2017/09/22 13:28] (current) – external edit 127.0.0.1
Line 1: Line 1:
-====== Request for Comments: How to write RFCs ======+====== Request for Comments: Namespaces with curly braces ======
   * Version: 1.0   * Version: 1.0
   * Date: 2008-08-31   * Date: 2008-08-31
Line 11: Line 11:
 ===== Introduction ===== ===== Introduction =====
  
-During alpha phase of PHP 5.0 ther was a namespace implementation that was very close to the one of C++. Because an inconsistency between namespace separator '::' and ternary operator's ':' could not be solved, namespace were finally removed. Durning development of PHP 5.3 namespace came up again and a solution for the conflict was found. The implementation did undergo several steps and small changes and finally settled down with support for multiple namespaces per file using the keyword 'namespace' in a simple statement that would be closed by a ';' and changed all name lookup in the code that follows.+During alpha phase of PHP 5.0 there was a namespace implementation that was very close to the one of C++. Because an inconsistency between namespace separator '::' and ternary operator's ':' could not be solved, namespace were finally removed. Durning development of PHP 5.3 namespace came up again and a solution for the conflict was found. The implementation did undergo several steps and small changes and finally settled down with support for multiple namespaces per file using the keyword 'namespace' in a simple statement that would be closed by a ';' and changed all name lookup in the code that follows.
  
 The following issues have been identified: The following issues have been identified:
Line 34: Line 34:
      - Nearly all C++ editors are set to not indent on namespaces.      - Nearly all C++ editors are set to not indent on namespaces.
  
-   Comparision:+   Comparison:
      - Java and C++ are the closest, wide spread languages that support namespaces.      - Java and C++ are the closest, wide spread languages that support namespaces.
-     - C++ uses the keywords 'namespace' and 'use' and only allows blocks. Netsing and multiple namespaces are allowed.+     - C++ uses the keywords 'namespace' and 'use' and only allows blocks. Nesting and multiple namespaces are allowed.
      - Java uses the keywords 'package' and 'import' and requires the file system to reflect what is defined in the code. Packages are defined in a single statement and only one package is allowed per file.      - Java uses the keywords 'package' and 'import' and requires the file system to reflect what is defined in the code. Packages are defined in a single statement and only one package is allowed per file.
  
Line 44: Line 44:
      - With the new implementation and no blocks, many people expected one namespace per file.      - With the new implementation and no blocks, many people expected one namespace per file.
      - Since fewer files means faster execution, many people simply concatenate PHP scripts. Their expectation is to be able to do this for code that uses namespaces as well.      - Since fewer files means faster execution, many people simply concatenate PHP scripts. Their expectation is to be able to do this for code that uses namespaces as well.
-     - PHP will add [[php.net/phar|Phar archive]] support and thus does not really require source concatenation any longer.+     - PHP will add [[http://php.net/phar|Phar archive]] support and thus does not really require source concatenation any longer.
  
    * Consistency:    * Consistency:
Line 50: Line 50:
      - The alternative is to use 'namespace name:' rather than 'namespace name; /*...*/ endnamespace;' is done for all other alternate forms.      - The alternative is to use 'namespace name:' rather than 'namespace name; /*...*/ endnamespace;' is done for all other alternate forms.
      - Only control structures can be followed by a statement without either ';' or ':', however they only allow a single statement.      - Only control structures can be followed by a statement without either ';' or ':', however they only allow a single statement.
 +
 +   * Issues:
 +     - When concatenating a file with a namespace and one without a namespace, the second file gets pulled into the namespace unless the namespace used curly braces.
  
 ==== Statements outside namespaces ==== ==== Statements outside namespaces ====
Line 58: Line 61:
  
 --foo.php --foo.php
-namespce foo; +  namespace foo; 
-function test{} { +  function test{} { 
-  echo __NAMESPACE__ . "\n"; +    echo __NAMESPACE__ . "\n"; 
-  include 'bar.php'; +    include 'bar.php'; 
-  echo __NAMESPACE__ . "\n"; +    echo __NAMESPACE__ . "\n"; 
-}+  }
  
 --bar.php --bar.php
-// namespace bar; +  // namespace bar; 
-echo __NAMESPACE__ . "\n";+  echo __NAMESPACE__ . "\n";
  
 The above shows 'foo', '', 'foo'. Further more the namespace statement in bar.php is legal and leads to 'foo', 'bar', foo'. It also means we kind of allow nested namespaces. The reason we need to allow include/require inside functions/methods is to support the common way of dynamic module loading. The above shows 'foo', '', 'foo'. Further more the namespace statement in bar.php is legal and leads to 'foo', 'bar', foo'. It also means we kind of allow nested namespaces. The reason we need to allow include/require inside functions/methods is to support the common way of dynamic module loading.
Line 75: Line 78:
 This leaves us with define() as well as with require and include without carrying over the current namespace. For define we clearly allow name resolution: This leaves us with define() as well as with require and include without carrying over the current namespace. For define we clearly allow name resolution:
  
-$> php -r 'class C { const c=42; } define("F", C::c);'+$> php -r 'class C { const c = 42; } define("F", C::c);'
  
 This in some way also applies to require and include because the both allow constants and variables. However define is a function and does not allow special treatment in the parser. Require and include on the other hand are parser states and take single expression as parameter. This expression can easily be turned into two different things. A full expression and a string only. The string only version can be allowed outside namespaces. This in some way also applies to require and include because the both allow constants and variables. However define is a function and does not allow special treatment in the parser. Require and include on the other hand are parser states and take single expression as parameter. This expression can easily be turned into two different things. A full expression and a string only. The string only version can be allowed outside namespaces.
  
 ==== Nested namespace support ==== ==== Nested namespace support ====
 +
 +PHP uses simple text replacement for namespace resolution and thus can easily allow nested namespaces without any technical issue whatsoever.
  
 ===== Proposal and Patch ===== ===== Proposal and Patch =====
  
-We propose to add namespaces as block structures and drop 'namespace foo;' in favor of 'namespace foo: ; endnamespace;', as in this [[http://felipe.ath.cx/diff/namespace-braces-5_3.diff|patch]].+We propose to add namespaces as block structures and drop 'namespace foo;' in favor of 'namespace foo: ; endnamespace;', as in this [[http://felipe.ath.cx/diff/namespace-braces-5_3.diff|patch]]. The tests are provided in a [[http://felipe.ath.cx/diff/ns-tests-53.diff|second patch]]. 
 + 
 +In a second step nesting namespaces should be supported. This can easily be done by simply removing the corresponding error messages.
  
 ===== Changelog ===== ===== Changelog =====
rfc/namespacecurlies.1220188210.txt.gz · Last modified: 2017/09/22 13:28 (external edit)