Talk:Architecture guidelines

From mediawiki.org
Latest comment: 9 years ago by Anomie in topic Clear separation of concerns

Suggestions[edit]

Could you summarize what the status is of the PHP features which impact on architecture? Right now it is just a list and I can't tell if it is a list of things to not do ever, things to be careful with, or things that are super awesome and we should use them whenever they fit. NEverett (WMF) (talk) 22:15, 5 August 2013 (UTC)Reply

Removal notes[edit]

  • Removed the two sections about encouraging the use of commercial IDEs. To the extent that it is relevant to an architecture discussion, I think I am happy to veto it.
  • Removed the section on naming, since it is dealt with in the style guide, and also the duplicate comment about MWCryptRand naming.
  • Removed near-empty redundant section "Role of the architects in the code review process"
  • Removed sections "Candidate design patterns for consideration" , "One way to do things" and "Things to Read"

-- Tim Starling (talk)

I removed the sections "Templates for common requirements" & "Declaring unit tests in an extension", after thinking over and agreeing with Daniel's claim that they'd be more appropriate for a cookbook. --Ori.livneh (talk) 01:49, 2 June 2013 (UTC)Reply

More complete removed sections have been copied to this talk page. -- Tim Starling (talk) 04:59, 6 August 2013 (UTC)Reply

What is MediaWiki?[edit]

Before embarking on architecture guidelines and considering a dramatic change to the RFC process, I think it would be helpful to define what MediaWiki is. Has that be done anywhere? If so, where? If not, wouldn't that be a sensible starting point? --MZMcBride (talk) 22:21, 26 May 2013 (UTC)Reply

I didn't realise that was subject to debate. -- Tim Starling (talk) 01:11, 31 May 2013 (UTC)Reply
A statement of purpose or list of principles or a set of pillars would be good, I think. (I started some notes at principles, but I'm not sure I feel comfortable writing something of this nature.)
"MediaWiki is open source wiki software." This seems like a good principle, though... should it be open source? Is MediaWiki a CMS? "MediaWiki is written in PHP." Is this a principle? I think defining (or attempting to define) what MediaWiki is will help in shaping architecture guidelines, at a high level. For example, in the context of considering MediaWiki 2.0, what is negotiable and what is non-negotiable? --MZMcBride (talk) 06:00, 1 June 2013 (UTC)Reply
It sounds like you want a definition of what MediaWiki will be, rather than what MediaWiki is. You're looking for properties of MediaWiki that will be conserved through change, which is really more about limiting future changes than describing the current situation. I think we're already doing that here, in terms of architecture. In terms of choice of features, that's not a subject for this document. -- Tim Starling (talk) 00:21, 3 June 2013 (UTC)Reply
I was curious if there was any other document describing (what you call) how MediaWiki will be. I call it how MediaWiki is and what we strive for it to be (principles). I agree that it's outside the scope of this document, but it still seems to be missing and I think it's important to have.
It isn't about limiting future changes as much as it's about figuring out what the priorities of the software are. And yes, I think this will impact (not limit, but impact) guidelines like these; that's why I think it's important that defining what MediaWiki is and will be should be done first, if it hasn't been done already. (I searched around this wiki, but didn't find anything. There's likely something on Meta-Wiki, maybe.) --MZMcBride (talk) 00:25, 4 June 2013 (UTC)Reply

Where are we going?[edit]

One thing I'd like to see come out of this would be a 10000-foot overview document to just show what we'd want the class structure in core to look like. E.g. "We have Title, and X, Y, and Z service classes. And User and X, Y, and Z service classes. And then we have MovePageControllerThing, etc.". Anomie (talk) 17:23, 29 May 2013 (UTC)Reply

Thanks for the suggestion! Perhaps I'll set up a "pipe dream" page and collect some ideas of how mediawiki could work if we could re-design it from scratch now. Not as a proposal for a rewrite or even refactoring, just as food for thought. -- Duesentrieb 13:21, 3 June 2013 (UTC)Reply
Maybe we can pick one of our class and propose various way to refactor it. Maybe Title which everyone should be familiar with. Antoine "hashar" Musso (talk) 19:50, 5 June 2013 (UTC)Reply


Known problems[edit]

Section moved from article
  • Testability is limited due to lack of separation of concerns
  • High levels of abstraction / complexity / non-conformity are leading to bad security (chunked uploads).
    • This seems to be more an example of a bad abstraction / missing separation of concerns -- Gabriel
    • I don't see what the chunked upload security issue had to do with abstraction or architecture or readability. -- Tim Starling (talk) 03:23, 4 June 2013 (UTC)Reply
  • Lack of high-level documentation (how classes fit together)
  • Readability of the overall codebase (where do I find this object that is being used?)
    • Might standardize how we name class: compare AjaxResponse, DatabaseMysql, ParserOptions versus RedisBagOStuff, DuplicateJob, DeleteAction. PHPUnit uses class names where underscore triggers a new subdirectory: PHPUnit_TextUI_Command is found in /PHPUnit/TextUI/Command.php . That is recommended by PSR-2. Antoine "hashar" Musso (talk)
  • Lot of inter-class dependencies, lack of separations and "do it all" class (ex: Title has user permissions handling).

Goals[edit]

Section moved from article
  • Self-documenting, easy to follow code
  • More maintainable code
  • Separable and generic elements (e.g., reuse just the Http class, or just the Parser, or just the DB classes, without pulling in the entire framework)
  • Easier, stabler third party development in the future
  • True unit tests (via, for example, making it easier to mock interfaces)
  • Warning: we will have to break some old interfaces and kill some deprecated things. This will make future versions have more stable interfaces for implementations.
  • Make it easier to parallelize and distribute processing; potentially implement parts in other languages
  • Use the same code paths (controllers) from both UI and API code


Requests for comment (RFC)[edit]

Section moved from article

The requirements for writing an RFC should be made more stringent. An RFC should be written when you have a concrete implementation in mind and when you explicitly intend to realize it fully and deploy it if you get the go-ahead. If not a working prototype, you should at least have some pseudo-code to illustrate your intent.

The current set of RFCs on MediaWiki.org contain a number of RFCs that are:

  1. written by someone who is hoping to motivate other people to actually implement something but who has no intent of implementing it herself.
  2. are thin on concrete implementation details, preferring instead to express a vague "wouldn't it be nice if..." aspiration.

--Ori

I think you mean "accepting an RFC" instead of "writing an RFC." It also seems fairly misguided to suggest that a requests for comment process only be used in cases where there's a clear execution path. --MZ

Our RFC workflow is mostly about dumping some text under RFC, we should probably look at the IETF workflow. Some randoms ideas:

  • designate a committee of persons responsible for the RFC process
  • write down: a glossary of terms, process and an overall workflow. Random ideas:
    • We definitely need deadlines for each step (ex: a draft with no activity after 3 months will be dismissed).
    • Acceptance criteria to enter the workflow
  • Each RFC should really have an owner in charge of driving it from idea to implementation/rejection.
  • review the current backlog and clear out the old scruff.
  • Ideally, each RFC should receives a number such as the IETF RFC or the PEP (Python Enhancement Proposal).


Clear separation of concerns[edit]

Section moved from article

This proposal suggests that most objects in MediaWiki should handle one (and only one) of the following concerns:

Values
Plain old PHP objects (POPO) - data is stored and validated internally, but no outside calls (especially network / DB) are done from this object. The object could be mutable or not. The object could contain other POPO objects, but should not reference services/controllers. Should easily serialize to JSON. Should not know or use services.
Examples SHOULD be Title, User, etc.
Services
Narrow interfaces, could in principle be web services with JSON (see value objects); long life time (application, request). Usually only one instance (but don't use singne instance (but don't use singletons). Stateless.
Examples SHOULD be: BlobStore, LinkStore, RCNotifier, JobQueue, etc.
Controllers
Models busines logic (typically a "process" or "action", like "rename page" or "block user"); usually local, short lifetime. Stateful. Uses services.
examples SHOULD be: Edit (with permission checks, conflict resolution, etc), MovePage, BlockUser, etc.

...with a catch-all for "'misc."' that doesn't fit into the first three.

  • Examples: exceptions, interators, callbacks, and other glue code.

Even with the current (3:07pm) definitions, these terms are somewhat opaque to me. -Ori

  • Me too. And what does this mean for users of these classes: if some function needs a Title object, how does it get the TitleService (or whatever it's called) to be able to create one? Anomie (talk) 14:36, 25 May 2013 (UTC)Reply
If Title is a simple Value object, you just create it with new Title(). If you need a service to do something to the title, e.g. a PageStore with a movePage() operation, your class (which would probably be a controller) would require a PageStore in the constructor and store it as a member. -- Duesentrieb 13:27, 26 May 2013 (UTC)Reply
  • Isn't that exactly the opposite of the proposal here, where "Value" objects should not be accessing the database themselves? Anomie (talk) 13:59, 28 May 2013 (UTC)Reply
    • You don't need a factory to create a Title, but yes, you'll need a service to load a Title. But that would not be a TitleService or TitleFactory, it would rather be a PageStore, corresponding to the page table and implementing more or less the functionality of WikiPage, just as a stateless service instead of an active record. -- Duesentrieb 18:27, 30 May 2013 (UTC)Reply

Keep aspects/concerns separate. Don't mix these in the same class:

  • Database / storage code
  • UI Code
  • Business Logic
  • HTTP handling
  • ...more?...

An example, though not perfect, is the separation between File objects, Store objects, and MediaHandler classes. This lets us use the same handlers regardless of storage backend, etc.

Where do process caches go? The File/FileRepo split was basically designed around the caches, i.e. File is basically a container for cached information about the file. It's hard to see how a "value object" can have references to rich and useful in-process caching.

  • How does this interact with the bit above about "values" and "services"? Do we end up with many services for each value, one for Database, one for UI, one for Business logic, and so on? Or is a "service" some sort of GenericValueFactory that handles getting all different types of Value objects? Anomie (talk) 14:36, 25 May 2013 (UTC)Reply
    • You really don't need factories for value objects, because there is generally only one implementation. You may need factories for controllers or services when constructing them in a static context. But that should generally only happen in the set up phase.
    • Yes, there would be separate services for rendering, storing, etc, for different things. E.g. we could have a PageContentRenderer interface, and a PageTsore interface, as well as a RevisionStore and LinkStore interface. They may all be implemented by the same class though (e.g. SqlWikiStuffStore). Business logic would usually be covered by a controller, which can be instantiated locally with new ContentEditController() or some such. Controllers can also be injected, directly or via a factory, but I don't think that this will often be necessary. -- Duesentrieb 13:42, 26 May 2013 (UTC)Reply
      • See above, isn't the point of "Value" objects that they don't access the database? So how do you get the Title object for a particular page without some "factory" that fetches the necessary information from the "storage" code?
        And from your second paragraph, I guess the answer to my other question is "Yes, there would be several service objects for each kind of Value object." Which seems like potentially a lot of classes. Anomie (talk) 13:59, 28 May 2013 (UTC)Reply
        • Yes, as I said above, you need a service if you want to load a title from somewhere. You don't need a factory to create a title.
        • And yes, there would be different service interfaces for doing different things - having more granularity is the point, it makes code reuse and testing easier. However, also note that just because there may be a PageStore and a RevisionStore interface, that does not mean they can't be implemented by the same class, if that is convenient.
        • Also note that services are not bound to specific kinds of values. A serialization service might implement serialization for several kinds of values (that's quite OK if the values are strongly related, I think).
        • -- Duesentrieb 18:27, 30 May 2013 (UTC)Reply

What is the rationale for introducing value objects? This sounds very much like the Content/ContentHandler split, which I criticised during code review. I didn't manage to get a satisfactory answer out of Daniel at the time. To me, encapsulation, i.e. the close association of code with the data it uses, is fundamental to OOP design. It's certainly possible to separate code from data, and that is routinely done in non-OOP languages, but I hadn't heard it discussed as a defensible design principle in OOP. -- Tim Starling (talk) 23:52, 30 May 2013 (UTC)Reply

"Value Objects" come from Domain-Driven Design (DDD makes another distinction between "Entities" and "Values", but that's not very relevant here; It does not differentiate between Services and Controllers, a distinction I find useful, but not critical). Keeping Services and Values/Entities separate ("newableas" vs. "injectable") seems to be a best practice for writing testable code [1][2][3]
There should be two kinds of objects in your application. (1) Value-objects, these tend to have lots of getters / setters and are very easy to construct are never mocked, and probably don't need an interface. (Example: LinkedList, Map, User, EmailAddress, Email, CreditCard, etc...). (2) Service-objects which do the interesting work, their constructors ask for lots of other objects for colaboration, are good candidates for mocking, tend to have an interface and tend to have multiple implementations (Example: MailServer, CreditCardProcessor, UserAthenticator, AddressValidator). A value-object should never take a service object in its constructor (since than it is not easy to construct). [4]
To me, keeping service logic separate from value objects solves three problems:
  1. A value object can be constructed on the fly. An "active record" otoh either global state internally, or access to services when constructing it. This means that it's hard to use them as input for tests cases and requires big and complicated fixtures for testing. The ORMRow class recently introduced into core had this problem, we are trying to fix this now.
  2. A value object can easily be serialized, converted and passed around. An object bound to services can't. This is a serious problem with the Content interface - it doesn't allow the Content to be a simple value object. For Wikibase, this forced us to have a hierarchy of value objects (Entity, Item, Property) separate from the corresponding Content objects (EntityContent, ItemContent, PropertyContent). The value objects can be passed to and used on the client wiki, while the Content objects can't. This is quite anyoing.
  3. A value object does not need to guess which operations are useful. Binding logic to values leads to a random collection of functionality on the record. Title is a good (bad) example for this: it has functionality for moving a page, while the functionality for deleting a page is in WikiPage. Also, it leads to a tangle of dependencies: If an objects knows how to store itself and render itself, it depends on the storage layer code and the output layer code. It seems that splitting the responsibility of objects along the axis of what is being done and how (and what is needed for that) is better than splitting along the axis of what is being acted on. It makes more sense to me for a booking service to be able to process credit cards than for a credit card to know how to process charges.
More generally, it seems to me that designing for testability, extensibility and maintainability means departing from some traditional OO principles. Most importantly:
  • Code sharing via inheritance is bad. Use composition. That makes it easier to replace individual components, to mix and match.
  • Binding logic to data (active record pattern) is bad. In traditional OO, the credit card would know how to process a charge, and hair would know how to comb itself. This is inflexible, since the behavior can't be replaced at runtime.
I'm still struggling with the old habits myself, though, especially with the inheritance bit. -- Duesentrieb 09:53, 31 May 2013 (UTC)Reply
When I refactored page moves, I asked Brion where the new UI-independent code should go. He said that Article deals with page contents (i.e. wikitext), and Title does not, so therefore the move page code should go in Title. The Article/Title split seemed arbitrary to me at the time, since an Article could be constructed simply from a Title, making them equivalent in some sense.
If it was me designing it from scratch (even the younger, stupider me from 2003), I would have put the split between backend and frontend, which would have led to a Title-like class which included the non-UI functions of Article, so that the choice of where to put storage logic would have been less arbitrary. Yes, it still would have been hair that knows how to comb itself, but you can progressively refactor it to delegate such tasks to service objects. Compare:
// Encapsulated object
class Hair {
    ...
    function comb() {
        $this->context->getHairdresser()->comb( $this );
    }
}
$hair = $this->context->newHair();
$hair->comb(); // <-- shorter

// Value object
$hair = new Hair;
$this->context->getHairdresser()->comb( $hair ); // <-- longer
I'm concerned not just by the extra code length, but also by the potential for complexity in calling code to be daunting for new developers. Both examples above have service objects, both can easily support batch queries. Testability of the service object would be almost identical.
Perhaps, a more fundamental problem with the testability of Title is its dependence on localisation. If you provide both Title::newFromText() and getNamespace(), then you need localisation; or if you provide both Title::makeTitle() and getNsText() then you need localisation. If Title was a value object, as you describe it, it would be limited to the numeric namespace. Then, if there was a storage backend that needed text namespaces, it would need a different Title class. And there would be no way for a text-only Title class to validate its own contents.
I think the role of the "plain old Java object" in existing MediaWiki code is somewhat fulfilled by associative arrays, for example the parameter arrays passed to some constructors, and the data arrays stored in memcached. Plain strings and integers fill that role in other contexts, such as the message keys passed to Message/MessageCache/Language/LocalisationCache, or the URLs passed to ExternalStore::fetchFromURL() or FileRepo::streamFile(). -- Tim Starling (talk) 02:55, 3 June 2013 (UTC)Reply
The issue I see with "active records" like Title is that in order to perform operations like localization, permission checks, or database access, it needs to know how these things are done. There are four options:
  1. hardcode the bahavior (resp. hardcode the dependency on a specific service implementation). That's bad for extensibility, and may lead to an aggregation of lots of unrelated functionality in the same class. If we later decide that the dependency must be decided at run time, the only options we have are the ones described below, which are bad.
  2. rely on a global registry of some sort for acquiring services. That's bad for testability.
  3. require all dependencies to be injected in the constructor. That makes the on-the-fly construction of such objects cumbersome and requires code that needs a Title for any reason to know about all the services a Title may need for any operation. And if Title's dependencies change, all places that create a Title object would need to be updated.
  4. inject a Context object instead of individual services. That's bad for re-usability but especially for unit testing: in order to test a Title object, I need to provide a mock context. How do I construct it? What does it need? How do I find out? What if the requirements change? How will the test code notice? The Context object couples the Title object to the rest of the system, making it depend on essentially everything. Here's some discussion of the context class (aka kitchen sink) issue: Breaking the Law of Demeter is Like Looking for a Needle in the Haystack. That approach is of course still better than global state, and can be acceptable in some cases - though not for value objects (because then, they wouldn't be value objects).
So: just factoring functionality out of the Title class itself into services doesn't help if the operations are available via the Title class, because this requires Title to somehow get the respective service instances. It would probably a good start and a viable way of slowly refactoring, yes, but it's not sufficient - I think, by itself, it wouldn't even help much with the current issues.
In my mind, Title could work like this:
  • Title itself is a value object, with a numeric namespace (and I think we'd also need a Link value object).
  • TitleParser is a service that turns a string into a Title, and knows about namespaces (LinkParser would know about interwiki prefixes, etc).
  • Page would be a value object that knows a pages Title and it's ID (and essentially everythign in the page table).
  • PageStore would be a service that can load Page objects by ID or Title, and could also perform other operations on pages, like update(), move() or delete(). PageStore may use a RevisionStore store for some of these.
    • It may be useful to have a "raw" PageStore and a "high level" PageStore, where the latter would use a LogStore and ChangesStore for logging. Access control could also be performed on this level, using a PermissionManager service.
  • RevisionStore would load Revision objects, and allow for deleting/hiding reivsions, and loading revision content.
    • It would be nice if Revision could have a getContent() method; But that would mean the content would always have to be available when a Revision is constructed (or Revision would need knowledge of the RevisionStore). Lazy loading is indeed somethign that does not work with value objects, and makes them a bit less convenient. OTOH, putting the loadContent method into the RevisionStore service allows for batching.
  • PermissionManager would be used for permission checkes on Title (and perhaps Page) objects. Currently, much of the permission system is hardwired in Title.
That's 6 classes for the functionality of what we currently have in 3: Title, WikiPage, and Revision. I have omitted some functionality, so let's say it turns out to be 12. Sounds like a lot (four times the classes!) but considering that these 3 classes together have about 10k lines, splitting them up to less than 1000 lines per class seems sensible (i have heard people use 100 (executable) lines per class as a rule of thumb, but I think that's overly strict). -- Duesentrieb 13:01, 3 June 2013 (UTC)Reply
One issue that you've glossed over in the above is that you just pushed the "how is the i18n service object obtained?" problem into still another service object and then ignored it. How does anything that needs to parse a string or obtain the string version of a title with namespace obtain this title service object, now? And the i18n service object that the title service object needs, for that matter? Anomie (talk) 14:52, 3 June 2013 (UTC)Reply
Code that needs to turn a string into a Title needs a TitleParser. It doesn't need an i18n object, since TitleParser already has that, and the calling code shouldn't even know that it is needed. This means that the conversion between string and Title can not happen in a value object. But then, why should it?
Generally: Service objects are free to know about many service objects. They get them in their constructor. In the textbook case, the network of service objects is build in the initialization phase of the program by code that either reads or is the configuration. Construction of individual services may be delegated to Builder classes, but that's just so you don't have the entire setup code in one file.
This however means loading and instantiation all services always, for every request. Ugh. If we want to avoid that, we could to inject builders instead of proper services (or inject magic stub services). This can be useful and even necessary, but as a general principle, I don't much like this approach.
I think it would be OK to live with a limited number of "static entry points" that would indeed have access to a global service registry / factory (which is indeed somewhat like the context object) and that build the part of the service graph that is needed to handle that entry point. In the case of MedaWiki, these would be action classes, hook functions, special pages, and API modules. As things are, we don't have control over their instantiation anyway (or they are static), so the only way to inject anything is via a global registry.
This does violate the "no static stuff" and "inject everything" principles; the idea is to strike a balance between the architectural need to isolate components and the practical need for performance (and thus partial initialization) and backwards compatibility (static hook functions aren't going to go away soon).
I think strictly confining the access to the service registry to static entry points is a good compromise. And we should further try to reduce the number of such entry points, as far as this is sensible, and the split isn't needed for performance reasons. -- Duesentrieb 15:37, 3 June 2013 (UTC)Reply
I asked in IRC for some help understanding the difference between value and service classes, and figured what Roan said to me was useful enough I should paste it here. Edited for length and to remove irrelevant asides/thinking aloud. Original logs here.
<sumanah> RoanKattouw: if you have a moment I'd love some examples re something from the architecture guidelines
<sumanah> "It has been proposed that service classes (with complex logic and external dependencies) be separated from value classes (which are lightweight and easily constructed)." can you gimme an example of each of those types?
<sumanah> from the MediaWiki codebase, core preferably?
<RoanKattouw> OK so Message would probably be a good example of a value class
<RoanKattouw> It's lightweight to construct, and we construct Message objects all the time (every time you call wfMessage() for instance)
<RoanKattouw> It has some internal state, but not much, and its only job is to represent a message with parameters, which you can then resolve into a string
<RoanKattouw> And then you typically just throw it away
<RoanKattouw> It doesn't depend on anything, it doesn't have complex interactions with other subsystems (well, except for the message fetching system I suppose), and there are no side effects or other reasons why you couldn't create an instance and then throw it away 2 lines of code later, hundreds of times over; which in fact is exactly what we do all the time
<RoanKattouw> I guess things like ObjectCache and Database would be service classes
<RoanKattouw> They don't represent values, instead they perform actions
<RoanKattouw> IIRC Daniel's main thing about this split is that you shouldn't have objects that represent values, but also perform actions
<RoanKattouw> But instead you should have a service object that performs actions, and is given a value object that it gets information from
<RoanKattouw> For instance, right now a Title can move itself
<RoanKattouw> (Title is the one Daniel picked on, because it's something that should semi-obviously be a value class but instead is a total behemoth that depends on almost everything it could possibly depend on)
<RoanKattouw> So instead of a Title moving itself, you'd have a Title just represent the name of a page and have logic to do with formatting that name and stuff, and have a service object that will perform a move given a source Title and a target Title
<RoanKattouw> Same for existence: instead of doing $title->exists() , you'd have an existence checking service that you hand $title to and it tells you if it exists or not
<RoanKattouw> This kind of hooks into Service-Oriented Architecture too because it allows you to detach things. For instance, if you wanted to check whether a title existed on some other wiki, you would just pass the same object to a different checker service
<RoanKattouw> The current way is there mostly because it's convenient ($title->exists() vs PageService::singleton()->exists( $title ) or whatever) for simple cases, but it makes dealing with complex cases much harder, and it makes the dependency situation more complex
<RoanKattouw> I'd never heard of a "value object" until Kinzler started talking about it
<RoanKattouw> But it seems like a sensible concept to me
<sumanah> when you summarize Daniel's belief "you shouldn't have objects that represent values, but also perform actions" - you mean Daniel believes that objects should not BOTH represent values and perform actions. Correct?
<sumanah> RoanKattouw: because if that's right, then I think your explanation makes sense to me
<RoanKattouw> sumanah: Yes, each individual class should choose one or the other but not both
Sharihareswara (WMF) (talk) 20:16, 22 July 2014 (UTC)Reply
I think, though, that Daniel might object to Message's __toString(), toString(), parse(), text(), and so on, as well as exists(), isBlank(); in other words what people actually do with Message objects. I'd think he'd prefer instead that we have to instantiate some sort of message parsing service and use that to convert each Message to a string. Anomie (talk) 14:07, 31 July 2014 (UTC)Reply

Context and object lifetime[edit]

Section moved from article page
  • Registration systems in which class names are used instead of object instances (ie special pages or API modules) prevent control over object lifecycle and thus proper dependency injection
    • On the other hand, using objects means that you have to actually instantiate a possibly large number of classes every time when only a few will actually be used—wastes time and memory. --Brad
    • I agree that it would be bad to instantiate the entire object graph in the setup phase. There should be a limited number of static entry points that just construct the things they need, using the relevant configuration, factories, etc. E.g. an API module or a hook function may construct/request the services and controller it needs just in time.
    • In other cases, lazy instantiation can be implemented using the holder or factory pattern, though I find that a bot awkward/annoying. -- Duesentrieb 13:56, 26 May 2013 (UTC)Reply
  • Singletons are problematic for unit testing, and lifetime control generally, but they are an improvement over global variables
    • [for an example we should refactor the Wiki class to actually encapsulate configuration state, so multiple object trees could exist in one process -- makes cross-wiki stuff more feasible]
    • how are they an improvement? For all intents and purposes, they are global variables. -- Duesentrieb 13:56, 26 May 2013 (UTC)Reply
Singletons are better than globals because:
  • They allow for lazy initialisation. This improves performance. Lazy initialisation can be used to reduce the overhead required for backwards compatibility, by deferring the load of backwards compatible interface code until it is actually required.
  • Singleton requests can easily be flagged with wfDeprecated().
  • A global declaration provides a reference, rather than a copy of an object handle, which has negative performance consequences as described in my recent wikitech-l post.
  • Singletons could in principle be registered in some process lifetime object, to allow them to easily be discarded in bulk at the start of each unit test run. By a singleton, we mean an object with a global scope which is retreived with a function or static method. Infinite lifetime is not inherent to the concept.
-- Tim Starling (talk) 01:06, 31 May 2013 (UTC)Reply
Such a registry might be nice anyway, so things like ForkController could more reliably destroy anything that could cause trouble before fork(). Unit testing would be another use, along with a code that wants to change wiki context (if we decide to do that, e.g. frwiki -> enwiki). Aaron (talk) 05:30, 4 June 2013 (UTC)Reply


Just-in-time abstraction[edit]

Section moved from article

This is another way of saying "You ain't going to need it"

Writing unit tests for all code immediately requires more abstraction right away. -- Duesentrieb 13:42, 26 May 2013 (UTC)Reply

As Robert Martin says "An axis of change is only an axis of change if the changes actually occur. It is not wise to apply the SRP, or any other principle for that matter, if there is no symptom." Abstraction gives you flexibility in a particular direction, the challenge (often not met) is to identify the axes of change in advance. If you know that you need unit tests, fine. The point is to avoid abstraction that gives you flexibility in unnecessary directions. -- Tim Starling (talk)
But how do you condense this into concrete recommendations? Anticipating the directions in which some code will be extended is usually a matter of experience. -- Ori
  • Isn't that basically what this is saying? Until you have the experience in how this particular thing needs to be abstracted, you're just guessing. Robla told a story about some bus tunnel built in the 80s, where they thought they were eventually going to want to run rail through it as well so they ran track. Then a few years ago when they actually built the rail, they found the tunnel had a different gague... Anomie (talk) 14:39, 25 May 2013 (UTC)Reply
"Do not introduce abstraction in advance of need unless the probability that you will need the flexibility thus provided in the short term is very high (>80%)" Obviously human judgement is needed at some point, but I think we are putting a foot in the ground by asking for a high probability of need rather than a conceivable need.-- Tim Starling (talk)
Yes, I think this works. ContentHandler is a good example: there was pre-existing evidence that the notion of "content" merited being made abstract -- namely, w/image content and stuff in the mw namespace. -- Ori
I agree that premature abstraction is bad. I would argue though that there are some boundaries that should not be crossed, and require decomposition per default (e.g. the value object / service boundary, or the database code / ui code boundary). Any abstraction beyond that should and can be done "just in time"; Note however that the requirement to write (actual) unit tests may require some abstraction right away that would not be needed otherwise. -- Duesentrieb 13:46, 26 May 2013 (UTC)Reply

There is a counterpoint, which is that we know from experience that abstraction left to be done "just in time" sometimes isn't done at the time it is actually needed. Instead, the second developer hacks something up on top of whatever the first developer left, in the ugliest possible way. Consider the introduction of ApiEditPage without appropriate refactoring of EditPage, or the introduction of action=render without introducing the non-static methods that would be needed to allow generation of absolute URLs for links, dependent on ParserOptions. Also, I think it's fair to say that some developers just don't have a head for architecture and can't reasonably be expected to rearchitect a module in the course of adding a feature to it. Maybe this implies a more moderate wording for this policy, along the lines of "avoid unnecessary abstraction" rather than "just-in-time abstraction". -- Tim Starling (talk) 14:02, 26 May 2013 (UTC)Reply

"Complete rewrites of large sections of code should be avoided"[edit]

"Complete rewrites of large sections of code should be avoided" Weren't Magnus Manske Day and Tim Starling Day established to commemorate major rewrites? Then of course there was Lee Daniel Crocker's major rewrite which won the STUG award; he doesn't seem to have his own holiday yet, though. Leucosticte (talk) 03:15, 5 November 2013 (UTC)Reply

You aren't gonna need it[edit]

It might helpful to document examples of when abstraction was done and we didn't need it. The goal of doing it in advance is to avoid refactoring later, right? Plus sometimes if stuff isn't done from the beginning, people don't ever get around to it. Leucosticte (talk) 12:11, 12 March 2014 (UTC)Reply


Use dependency injection for external resources[edit]

Section moved from article

If you initialize connection objects to external resources somewhere deep in your code, it makes writing unit tests very difficult and expensive. Possible pattern:

/** A class that uses an external cache and makes HTTP requests **/
class MyClass {
        function __construct( $cache = NULL, $http = NULL ) {
                $this->cache = $cache ?: wfGetCache( CACHE_ANYTHING );
                $this->http = $http ?: new Http();
        }
}

^ This makes it very easy to write unit tests that use PHPUnit mock objects --Ori

  • Passing in NULL like this is discouraged as it makes the signature less clear
  • The tight coupling is still there
  • Production code will end up being too lazy to properly inject dependencies
    • The assumption is that the dependencies are properly instantiated by the class itself and callers can and should be lazy; the ability to inject them is put in place specifically for unit tests. --Ori
      • In that case there indeed still is tight coupling and no poper dependency injection. So most problems are not solved
        • Yes, you're right: this partially solves the testing problem but misses an opportunity to make the implementation more flexible. --Ori

I'm not really on board with this and may need some more convincing. Daniel showed a code snippet from Wikibase yesterday with half a dozen constructor parameters. I am not sure it is worthwhile making unit tests easier by making everything else several times harder and uglier. I am happier at this point with the idea of a single context object passed to the constructor, even if it does make unit testing slightly more difficult.

The problem with passing many dependencies as formal parameters to constructors is that it is difficult to know in advance how many will be required, especially if you call hooks. Wrapping up all the context into a single object makes it easier to extend.

But it makes it hard(er) to substitute individual bits; you always have to provide everything that the object might use from the context.
Example: IContextSource has a getSkin() method. So if I want to provide the contextual Title and User to something that takes an IContextSource, I also have to somehow provide a Skin. That doesn't make me happy...
It would still be an improvement over the current situation though -- Duesentrieb 14:05, 26 May 2013 (UTC)Reply

I'm not saying that all constructors should use the same context class, just that I prefer a single context parameter in constructors over a dozen.

I agree that having many parameters in the constructor is ugly. A retort I got when complaining about this is that a class needing many different services is an indication of the class doing too much. Split up the class and have less responsibilities per class, then you need fewer services in the constructor - or so they say. I can't say yet whether this always holds true, but so far, it seems like a reasonable rule of thumb. -- Duesentrieb 14:05, 26 May 2013 (UTC)Reply
A constructor that requires a dozen parameters is constructing a class that shouldn't exist. Collapsing the signature by using a Context object buries the problem without fixing it. A constructor's signature really is the appropriate place in which to enumerate a class's external dependencies, I think. --Ori.livneh (talk) 01:28, 2 June 2013 (UTC)Reply
Code changes and grows. Functions which did simple things sometimes need to start doing more complex things. And sometimes even the simplest code needs several kinds of request state. I don't think that enumerating a class's dependencies in the constructor is flexible or conducive to growth. And I think that requiring even the smallest snippet of UI code with complex dependencies to be split up into 5 or 10 classes, each with voluminous doc comments and unit tests, would be a drain on staff resources and a barrier to volunteer entry. -- Tim Starling (talk) 06:40, 3 June 2013 (UTC)Reply
Constructing service objects is hard because of all the dependencies, especially since these dependencies change change and grow, as you say. But this is solved by treating the services as "injectables": they are constructed in exactly one place, and then passed around. If you run into the problem of having to construct a service that asks for 12 parameters, and now need to figure out how to get all these objects, then you should probably not be constructing that object there, but just ask for it in the constructor of your class.
I undermined this principle somewhat by suggesting the notion of controller objects for modeling tasks/processes. Controllers may have a lot of dependencies, since they basically are services with smaller scope (and perhaps some state). If a controller ends up being very inconvenient to instantiate, it should either be created using a factory or turned into a request-scope service in order to bring the number of instantiation points down to one. -- Duesentrieb 13:18, 3 June 2013 (UTC)Reply
Isn't that exactly the opposite of what you complain about above, where having singletons or global factories or the like makes things impossible to test? Also, it seems to me that saying your class should take the already-constructed service object in its constructor instead of all that object's dependencies is just pushing the "how do I locate dependencies?" problem onto all your callers. And then, presumably, they'd push it to their callers. Where does this process end, and how does it end up different from the "context object" concept you argue against? Anomie (talk) 14:59, 3 June 2013 (UTC)Reply
The service construction is indeed pushed up the stack as far as possible, ideally all the way into init.php. Well, perhaps that would be a bit too far. But at least into some function that can be considered "top level", a "static entry point" (see further up on this page). This way, all classes further down the stack have all their dependencies cleanly injected, and can easily be tested in isolation. The further "up" we can push this, the more "clean" classes we have. But of course, it has to end somewhere, see my comments about initialization in the #Clear separation of concerns section.
Services having "request-scope" is different from having global instances / singletons in two important respects: You can't (or at least shouldn't) access such an object at will in random code using some global variable, this is only done in a static entry point (ideally, only one: index.php). "request-scope" merely refers to the lifetime of the object (perhaps I should have just referred to "persistent services" or "long lived objects"). Long lived service objects don't violate the idea of modularity / isolation, where each dependency must (or should ideally) be declared in the constructor. -- Duesentrieb 15:51, 3 June 2013 (UTC)Reply
So instead of having request globals, you simulate them by having everything everywhere take a laundry list of paramaters. This doesn't strike me as much of an improvement. Anomie (talk) 13:57, 5 June 2013 (UTC)Reply
Access to globals means everything depends on everything. Having a context object means everything depends on everything. Injecting a "laundry list" of dependencies means you list exactly what you need, when you need it.
Requiring all dependencies to be provided to the constructor (which is called in one place, in case of a service instance) means the service depends only on the things it actually needs and uses, and these are well defined and documented.
The "laundry list" can be kept short by reducing the responsibilities of the service. To which level this is taken is a matter of taste and practicality, but in general, the number of dependencies is lower when the responsibilities of the service are more narrow.
Basically - a service (or any class) needs to collaborate with others to do its job (that is, it depends on other classes). We can hardwire and hide these dependencies using globals, make them dynamic but still hidden (and effectively universal) using context objects, or we can declare them and make them explicit. Which option do you prefer? -- Duesentrieb 14:29, 5 June 2013 (UTC)Reply
Again, you're pushing problems up the call stack and then ignoring them. If you split one service into several to reduce its dependencies (and is this really a logical split, or is it just work around the huge constructor parameter list?), then callers that need those services have more dependencies. So at some level you're going to wind up with classes that have a constructor needing dozens or hundreds of these services (or you'll punt and "allow" these to use globals). You're also increasing the load on the programmer, as now they have even more service classes to know about.
Also, if changes mean your service-with-explicit-dependencies needs to add a dependency, you have to track down all of its callers, and then possibly all of their callers, etc to add it. Including third-party extensions that might be using the service. And, since the constructor is changing, you'll probably have to adjust any subclasses too. Or you might avoid all this by making yet another service. Or, I suppose, you might be able to have the new methods individually take the new dependency as a parameter.
Are the benefits worth the drawbacks? I'm not so sure. Anomie (talk) 13:52, 6 June 2013 (UTC)Reply

(reset indent) Anomie, you seem to assume that "callers" need to instantiate services. They don't. Let me given an example:

class PageMover {
  public function __construct( PermissionManager $permissionManager, PageStore $pageStore, LogStore $logtStore ) {
      $this->permissionManager = $permissionManager;
      // ...etc...
  }

  public function movePage( $from, $to, $user ) {
      $this->permissionManager->checkUserCan( $user, 'move', $from );
      $this->pageStore->move( $from, $to );
      $this->logStore->log( $user, 'moved', $from, $to );
  }
}

class RequestDispatcher {
  public function __construct( ServiceRegistry $registry ) {
      // Yes, this top level object has access to the service registry aka kitchen sink. 
      // No globals, though

      $this->serviceRegistry = $serviceRegistry;
  }

  public dispatchMove( $from, $to, $user ) {
      // The dispatcher knows how to create specific handlers/controllers
      // (which are really a special kind of service, depending on your favorite terminology).

      // We could also configure a builder or factory instead of hardcoding
      // this knowledge in the dispatcher.

      $mover = new PageMover(
          $this->serviceRegistry->getPermissionManager(),
          $this->serviceRegistry->getPageStore(),
          $this->serviceRegistry->getLogStore()
      );

      $mover->movePage( $from, $to, $user );
  }

  public handleRequest( $request ) {
      // ...
      $this->dispatchMove( $from, $to, $user );
      // ...   
  }
}

class ServiceRegistry {
  // ...

  public function getPageStore() {
      // The SeriveRegistry knows which servies to construct, and how.
      // This may or may not depend on configuration.

      // ...lazy initialize...
      $this->pageStore = new DBPageStore(
          $this->getDBConnectionManager(),
          $this->getRevisionStore(),
      );

      return $this->pageStore;
  }
}

// in the global scope of index.php, you would have something like:

$config = new Config( __DIR__ . "/config/settings.ini" );
$registry = new ServiceRegistry( $config );
$dispatcher = new RequestDispatcher( $dispatcher );
$request = new WebRequest( $_GET, $_POST, $_COOKIE );

$dispatcher->handleRequest( $request );

So my PageStore implementation, DBPageStore, depends on a DBConnectionManager and a RevisionStore. Now I discover that this is not sufficient, I also need a BlobStore and a CompressionHandler. Two new dependencies for my DBPageStore. So, what needs to change? Only one place, namely ServiceRegistry::getPageStore(), which needs to pass two more parameters to DBPageStore's constructor. That's it. The dependency of PageMover didn't change, it only depends on the three interfaces it originally depended on (since it checks permissions, changes a page and logs the result, it needs a permission manager, a page store and a log store).

  public function getPageStore() {
      $this->pageStore = new DBPageStore(
          $this->getDBConnectionManager(),
          $this->getRevisionStore(),
          $this->getBlobStore(),
          $this->getCompressionHandler(),
      );

      return $this->pageStore;
  }

Now, sublcasses of DBPageStore would need to change, but if we avoid code-reuse via subclassing, the hierarchy is going to be shallow and subclasses few.

If we decide to split a service interface, then yes, a lot of code needs to be updated (just like now). If we keep interfaces small, splitting an implementation along the interfaces it implements wouldn't require any code updates though.

With the design I outlined here, I do not see how callers have to know about so many services, or need frequent updates, or how dependencies would accumulate to huge constructor lists. This doesn't happen.

Of course, real life isn't this simple. But if you have control over the construction of the objects you are dealing with, then you can use this pattern to isolate them. If you don't have control over instantiation (e.g. in an API module or a SpecialPage), then you have a "static entry point" and need to "somehow" get a service manager to boostrap again. That's the only place where accessing a global would be ok, and that would only be done to get access to the service registry. And the respective object should offer an alternative way of providing the servies it needs, for use during testing. -- Duesentrieb 19:25, 6 June 2013 (UTC)Reply

So now anything that wants to move a page needs to have this "RequestDispatcher"? Which is basically a sort of "context object", exactly as you keep arguing against. I give up, it's impossible to discuss this if you can't even follow your own design. Anomie (talk) 13:14, 7 June 2013 (UTC)Reply
So never mind whether I'm consistent in my arguments (I try to be, but perhaps I'm not). Let's just look at the proposed design. What problems do you see with it? what advantages? Do you think it would be a good model when starting a new project from scratch? Do you think it's applicable to MediaWiki?
Below are a few clarifications I feel could be helpful. But don't let them distract from the questions above. These are the important ones. The points below are merely meant to clear up unclear issues; maybe they are not helpful at all.
  • The request dispatcher is what handles http requests and dispatches them to the respective handlers, based on the desired action in the request params.
  • Code that wants to move a page as a high level operation (i.e. including permission checks, logs, etc) needs a PageMover. Ideally, this is provided to the constructor. This could be constructed directly if we have all knowledge needed for that, but this is bad for testability (tight coupeling). Or it could come from a Builder or Factory, if desired (the latter means more classes, but less dependencies for the original caller). But it's cleaner and probably simpler to just ask for it in the constructor.
  • Code that wants to move a page as a low level operation (just rename it) needs a PageStore.
  • The RequestDispatcher is not like a context object, but it uses something like a context object: the service registry. This is a concession to performance requirements: we only want to initialize stuff that we actually need to handle a specific kind of request.
  • Some sort of registry is needed on the top level for bootstrapping. Ideally that's only in index.php, but realistically, it's anywhere you have static methods or no control over instantiation. In MediaWiki, that's a lot of places. Which is exactly the problem.
  • The idea is to minimize the number of places that have or need access to the "kitchen sink", thus increasing the number of nicely isolated classes that can be easily understood, replaced, tested and reused. It well never be 100% (you always need some bootstrapping code), but 99% is doable. For MediaWiki, 50% would be a great improvement.
-- Duesentrieb 20:47, 7 June 2013 (UTC)Reply

If you don't think your class requires RequestContext::getUser(), and don't want to set up a user in a test, why not use an IContextSource which throws an exception when getUser() is called on it? That way, if you are proved wrong and a User is actually required, you can add one without adding constructor parameters. -- Tim Starling (talk)

I see your points, but now you have to step through the code to see what it does in fact require. I'll try to refactor a class that uses optional constructor parameters to take a single context object to see how well it works. --Ori

Perhaps a compromise would be to say that individual parameters are preferable, but a context object ("service bundle") is acceptable for convenience. The downsides should be made clear though. -- Duesentrieb 14:05, 26 May 2013 (UTC)Reply


Impact on casual contributors[edit]

Section moved from article
  • Some rules can be difficult for newbies, like requiring unit tests
    • help them write their tests!
    • don't be afraid to refactor in code review
    • Differ between (hard)core mediawiki in test case requirements vs for instance non-deployed extensions
  • Advice a good IDE/toolset, because that might help
  • More separation makes code easier to understand and extend; understanding huge classes like User or Title is daunting.
    • On the other hand, mazes of tiny little classes that all depend on each other are difficult to understand too. We need a middle ground. --Brad
      • the win is usually when dependencies are one-way and limited. Avoid mazes but go for little clouds.
  • Tell users to be proactive about their changes when required (don't leave them hanging)
  • We can keep settings for most popular IDEs in source control, allowing contributors to start quickly.


Refactoring best practices[edit]

Section moved from article
  • It should be easy to identify what 'concern' a class is dealing with (without even reading the code). Naming convention or phpdoc markers ?
    • The historic lack of namespaces in PHP led to the proliferation of "bags o' vaguely related things" classes. Now we have namespaces, but they look a bit alien in the MediaWiki codebase -- can we decide on the role of namespaces in future code? Are they going to be a bit of cleverness that is tolerated, or a design pattern we encourage / enforce? Anonymous functions ditto -- there are a lot of MyExtensionHook classes that are more concisely written as $wgHooks[ 'SomeHook' ][] = function ( &$foo ) { /* ... */ }; --Ori
  • For abstract classes, have clear documentation on what is expected of children
  • Along the lines of the comment about type hinting above: there is a set of tricks and techniques for performing complex migrations "in-flight" that should be documented, like using a temporary configuration var that selects the old or new implementation.


Let's please try to focus on a) guidelines for new code and b) guidelines for careful, local, just-in-time refactoring. Let's avoid planning or even specing out a huge refactoring of the entire codebase. -- Duesentrieb 13:51, 26 May 2013 (UTC)Reply


Code structure[edit]

Section moved from article
Should this go into Manual:Coding conventions? Sharihareswara (WMF) (talk) 15:22, 24 April 2014 (UTC)Reply

Type Hinting[edit]

  • Type hinting (both in parameter lists and in doc comments) avoid errors
    • PHP provides __call() which allows for proxy objects, i.e. objects which duplicate the methods of a class but do not actually inherit from that class. Consider awesome backwards compatibility hacks like WikiPage and StubObject. Type hinting breaks this. So I am hesitant to introduce it to public interfaces. -- Tim Starling (talk)

For example:

class SomePage {
	function showForm( User $currentUser ) {
		...
	}

	function execute() {
		$this->showForm( RequestContext::getMain()->getUser() );
	}
}

Breaks if RequestContext::getMain()->getUser() is migrated to return a StubUser instead of a User. -- Tim Starling (talk) 01:10, 30 May 2013 (UTC)Reply

Oh right, subs can't "dynamically" implement interfaces. I want Java's proxy objects :) -- Duesentrieb 18:19, 30 May 2013 (UTC)Reply
    • Type hinting also prevents b/c migration hacks like
abstract class Foo {
    function foo( $obj ) {
        if ( $obj instanceof OldClass ) {
            $obj = NewClass::newFromOld( $obj );
        }
    }
}

If a core class has child classes in extensions, the type hints cannot change without generating parse errors in the derived classes. So this prevents the type of a parameter from being migrated.

Since we are discussing renaming every class and completely changing all the interfaces, I don't think support for b/c hacks can be easily dismissed. The success of any renaming/refactoring project may depend on them being available. -- Tim Starling (talk)

Personally, I don't advocate any big rewrites. I'm mostly thinking of which guidelines should apply to new code.
But this is an important point: we should make clear which rules should apply to new code, and if and how they can be applied to legacy code, and which b/c strategies are to be employed, and which pit falls are to be considered. -- Duesentrieb 13:49, 26 May 2013 (UTC)Reply

We could do handle type hinting by using interfaces. The User object is probably not the best example since it both represents the values of a User and let you act on the values just like a controller would do. Anyway here is an example of such an interface:

<?php
/** A high level interface representing a MediaWiki user value object */
interface MediaWiki_User { }
/** The real user object */
class User implements MediaWiki_User { /** lot of code */ }
/** Stub, fast loading one */
class StubUser implements MediaWiki_User { /** mostly nothing beside unstubbing */}

/** Function with high level type hinting */
function foo( MediaWiki_User $user ) {
    print get_class( $user ) . "\n";
}

# Craft objects:
$user = new User();
$stubUser = new StubUser();
# Both object matches the MediaWiki_User type hinting:
foo( $user );
foo( $stubUser );

# Outputs:
#  User
#  StubUser

-- Antoine "hashar" Musso (talk)

This is like the trick I used when I made WikiPage. Lots of "Article" type hints were just swapped out for "Page" interface hints. I'm not convinced the extra trick needed negates the utility of type hints. Aaron (talk) 05:26, 4 June 2013 (UTC)Reply
Exactly. And I love how that makes the function self documenting and nicely throw errors whenever one mis use a function. Antoine "hashar" Musso (talk) 20:10, 5 June 2013 (UTC)Reply

Other[edit]

  • One file per class makes the code more clear, and eventually may allow MediaWiki to use php autoloading without having to maintain a long list of classes and files in AutoLoader.php

Some additional thoughts for later addition or change[edit]

Some thoughts I gathered from discussion with developers that ought to be considered for later addition:

  • If you ever intend to do something that will eventually span more than 1 wiki, think about how to do it cross-wiki from the start. Or - federated sites. Think about interoperability from an early stage. Especially authn & authz.
    • How likely is this to be multi?
  • How well can you look into your own future?
  • Also: it may be tempting to expose everything (create a very transparent interface), but then you create a contract that it will remain exposed. But it's hard to predict what people will need.

Sharihareswara (WMF) (talk) 02:38, 22 July 2014 (UTC)Reply

Removing the "we"s[edit]

I took out all the "we"s, "us"s and "our"s - I don't mean to cause problems, and I hope it's not controversial, but I really don't like the use of "we" here. First, it doesn't make sense - surely none of the statements here could possibly apply to "all MediaWiki developers, past and present" (as "we" was defined at the top) - and in some cases it clearly only refers to a small group of WMF developers. And if someone doesn't actually value backwards compatibility, for instance, does that make them a non-person? Plus, it doesn't match the general style on mediawiki.org - or of any technical documentation, really, as far as I know. Yaron Koren (talk) 15:58, 22 July 2014 (UTC)Reply

I've put it back, as I think it's nicely humanizing. We are people, in fact, and should strive to remember that we're people working on software for other people as well. --brion (talk) 17:00, 22 July 2014 (UTC)Reply
It's humanizing to mention people, of course, but this particular terminology seems at best confusing, at worst alienating. Who is "we"? The beginning states that it means "all MediaWiki developers, past and present" - but a specific statement like "We want users to be able to perform most operations within two seconds" clearly couldn't apply to every single developer; it's either inaccurate or like hectoring. And by the time you get to statements like "we chose polymorphic objects over hooks", clearly the definition has changed quite a bit.
Why do I say "alienating"? Because it seems to me that the shifting definition of the word throughout the document gives off the impression to casual or aspiring developers that their presence or absence, from the perspective of core developers, is fairly irrelevant. Yaron Koren (talk) 19:44, 22 July 2014 (UTC)Reply