Difference between revisions of "AlliedModders Planning"

From AlliedModders Wiki
Jump to: navigation, search
m
(Phase 7)
 
(58 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__FORCETOC__
 
__FORCETOC__
  
The complexity of SourceMod's branching (even as trivial as it is) is too much for Subversion and our build process.  I'd like to discuss a move to Mercurial.  Almost everything in this document can be done without Mercurial, but such a move would require the changes anyway.
+
This is sort of a major push for AlliedModders to be a bit more streamlined.  We're encountering growth problems, especially as our personnel has dwindled quite low recentlyThis document discusses some changes I'm proposing.  Anyone is free to discuss this on the forums or add comments into this document.
  
Some of the benefits we'd gain:
+
Everything related to source code management in this document refers to Metamod:Source and SourceMod.  AMX Mod X is considered "mature" and is no longer maintained except for critical or high priority bugs.  If and when we do a move past Subversion, it is unlikely AMX Mod X will follow. 
*Much easier branching
 
*Merging changesets would be FAR easier
 
*Merges between branches would be tracked
 
*All the benefits of a distributed system -- pulling changes from other parties is much easier
 
*Getting rid of revision numbers
 
*Making fetchdlls work seamlessly
 
*Getting rid of package/symbol svn and doing 30day rotation to save disk space
 
  
 +
=The Problems=
 +
==Short Term==
 +
*We're finding it hard to manage multiple projects in a unified way.
 +
*There are site disparities, Metamod:Source and SourceMod and AMX Mod X each have entirely different backends.
 +
*Similarly, each site has a different version of the mirror system script. 
 +
*Subversion doesn't cut it -- Mercurial might handle things better.  Subversion basically has no branching or tagging support, and it has no real branch merging capabilities.  This is a real problem for SourceMod which has pretty active development.
 +
*The packaging system is disorganized and fundamentally broken.  It's inconsistent, inaccurate, and takes up 1.7GB of wasted space and growing.
  
=Overview=
+
==Long Term==
Subversion doesn't let us branch nicely or create user-specific branches without forever mucking up the central repository.  It's difficult to do merges.  Mercurial seems to solve these problems, but our build process will be majorly affected.
+
*AlliedModders has plans past SourceMod.  We need to be able to grow our project base without adding exponential amounts of work.
 +
*We still don't have a main site
 +
*MediaWiki still has authentication problems since its handling of usernames is broken
 +
*Flyspray is buggy, definitely non-production, and doesn't get maintained frequently
 +
*It's impossible to maintain the AMXX/SM/MM:S sites right now
  
=The Revision Problem=
 
Mercurial tracks revisions with 160-bit IDs (40 digits of hex), called "changeset IDs."  Mercurial has aesthetic revision numbers only; they're not guarantees like they are in Subversion.  Revision numbers are properties of a repository clone, not the overall repository.  This means that if two people make changes locally, those revisions will be different, and will change again once pushed upstream.
 
  
This problem is somewhat mitigated by the fact that the central repository will have reliable revision numbers, but that's still not good enough since branching will generate multiple revisions.  Branching also makes the revision numbers awkward since users assign meaning to them where none exists (for example, "1.0.1.1234 versus 1.1.0.1231 doesn't make sense because 1.1 is later than 1.0.1").
+
=Mercurial=
 +
Subversion doesn't let us branch nicely or create user-specific branches without forever mucking up the central repository.  It's difficult to do merges.
  
This means we must change SourceMod to not use revision numbers, a change we should make regardless of a Mercurial merge. The major problems to keep in mind are: '''What do we display for the version number?''' and '''How do we keep fetchdlls working?'''  (Fetchdlls needs to be able to get a changeset ID from the MINIDUMP_MODULE struct, which has a checksum and version info.)
+
An excellent tutorial for how Mercurial works is [http://www.selenic.com/mercurial/wiki/index.cgi/UnderstandingMercurial here].
  
==Solutions==
 
There are a few ways to go about this.  These are the two I came up with while writing this.
 
  
*Revision numbers that are per major release.  We'd have a "build number server" that would dish out new numbers on request.  These numbers would be used by the build scripts.
+
=Phases=
**A decent bit of work but would preserve the most compatibility with fetchdlls.
 
**[svnrev] (or [hgrev] or whatever) would have mismatching revision/build # ids which could get confusing.  Thus we'd have to try and not display the revision numbers publicly (they'd only be used for linking).
 
*Simply assign 0 to the build number and ignore it entirely.
 
**Seems easy but we'd need to have a mapping between VS's "checksum" values and a changeset ID if we wanted fetchdlls to work.  Not too difficult really as this could be done with a simple HTTP push.
 
**For visual display, we'd totally eliminate the build number.  It'd only be visible on Windows from the file information.
 
**We'd add a secret date+time field to plugins that would be filled in by the compiler.
 
  
For plugins, displaying a timestamp is not a problem. We could put some sort of "public String:__date[] = __DATE__" into core.inc.
+
==Phase 0 - Done ==
 +
'''DONE:''' We've eliminated build numbers and are back on the x.y.z system.
  
=Automation=
+
*<strike>Apply new versioning scheme, whatever it may be.</strike>
Right now we use subversion for all of the packages.  This is getting to be troublesome.  It makes fetchdlls extraordinarily complicated when it really does not have to be, and the hourly builds just accumulate with no way of being deleted.  The package repository is 1.7GB and growing.
 
  
It would be a lot simpler if we could just throw a single package on the webserver and forget about it.  We could even keep a rotation of, say, 30 days' worth of packages in a rotation.  This would let us remove cruft and keep enough binaries around for debugging.  The problem is that people rely on the repositories to perform diffs.
+
==Phase 1 - Done==
 +
'''DONE!'''
  
I don't have any good ideas on solving that problem, because there's no way to selectively rotate things out of a versioning system.  The only solution I can think of is providing people with, say, a perl or bash script that does the job for them.  This could go through two routes: using local repositories, or simply doing a HTTP fetch from the web server and then doing a diff.
+
<strike>Move from Sente to Iroh so we can get away from ThePlanet and clean up/optimize some infrastructure.  This is documented at [[Iroh_Migration|Iroh Migration]].</strike>
  
=License Changes=
+
==Phase 2==
I don't want to keep hacking up our private->public sync script.  DS has faithfully maintained it until now, but I believe he will be as glad as I to do away with it.  A move to Mercurial would have either of the following benefits:
+
Expected date: Mid-July
*We could keep the JIT closed source and shove it in a private repository, OR
+
 
*Just open source the thing finally, it's not very special, and have everything be together.
+
*<strike>Redo automation so the "packaging" versus "sending upstream" processes are fundamentally separate.</strike>
 +
*<strike>Redo "sending upstream" process so it simply sends over FTP.</strike>
 +
*<strike>Use an SSH tunnel to notify of new packages, so we don't have to do something idiotic like mirrors.pl for the mirror system, or using post-commit scripts on the Packages repository.</strike>
 +
*Redo the package system so only 30 days worth of builds are available.
 +
*<strike>Write a script to help users diff between packages? (Update: No one asked for it.)</strike>
 +
*<strike>Remove the Packages repository entirely (transitioning AMX Mod X to this will be trivial).</strike>
 +
*<strike>Update symbol server to include binaries and maybe even sourcecode? Removes the need for fetchdll's.</strike>
 +
 
 +
==Phase 3 - Done==
 +
'''DONE!'''
 +
 
 +
*<strike>{{bz|3257}}: Transition SourceMod to vs2k8.</strike>
 +
*<strike>{{bz|3258}}: Transition Metamod:Source to vs2k8.</strike>
 +
 
 +
==Phase 4 - Done==
 +
'''DONE!'''
 +
 
 +
*<strike>Move the pdbstore to be centralized client-side.  This can be accomplished by making a more advanced symstore wrapper that will remove anything older than 30 days, and then (in a similar SSH tunnel method as above), rsync all changes upstream to the webserverThe exact mechanism is still up in the air, but rsync would probably suffice (as long as we can stomach cygwin).</strike>
 +
*<strike>Remove the Symbols repository.</strike>
 +
*<strike>Rewrite fetchdlls to support the new layout.</strike>
 +
 
 +
==Phase 5 - Done==
 +
'''DONE!'''
 +
 
 +
*<strike>Add hg.alliedmods.net pointing to our "repository roots," which will be per-project.  For example, hg.alliedmods.net/sourcemod.</strike>
 +
*<strike>From there, import trunk as "sourcemod."</strike>
 +
*<strike>Branch every major release off as separate repositories, from the appropriate revisions.</strike>
 +
*<strike>Tag minor releases.</strike>
 +
*<strike>Update all links we can find on the site and in the docs.</strike>
 +
 
 +
==Phase 6 - Done==
 +
'''DONE!'''
 +
 
 +
*<strike>Import mmsource into Mercurial.</strike>
 +
*<strike>Import hl2sdk/hl2sdk-ob into Mercurial.</strike>
 +
*<strike>Update all links we can find on the site and in the docs.</strike>
 +
 
 +
==Phase 7==
 +
'''DONE!'''
 +
 
 +
*<strike>{{bz|3259}}: We need to update vBulletin to the 3.7 branch.  This is potentially a huge task.</strike>
 +
 
 +
==Phase 8==
 +
Expected date: Q1 2009
 +
 
 +
We really, really still need a CMS to make this packaging, mirroring, etc business much more streamlined.  But this phase is so far in the future I expect other phases to creep in before it.  This is more a mind dump than anything, but here goes --
 +
 
 +
*<strike>Moving from flyspray to bugzilla.  After using bugzilla, I'm convinced that its massive feature set far outweights the few permissions issues we ran into.  flyspray is severely lacking, and even though bugzilla isn't the nicest looking tool, it's templated and professionally done.  It has little things that really count, like..</strike>
 +
**<strike>The input system isn't broken and convoluted like Flyspray's embedded dokuwiki (which seems to be less a product than a bunch of bugs someone coded)</strike>
 +
**<strike>A much, MUCH better attachment system that allows for attachment reviews
 +
**More focused on triaging and patch management than flyspray, which is simply a list of tasks with some basic statistics</strike>
 +
*Moving from MediaWiki, which (I view) as a very, very outdated piece of software.  From version 1.5 to 1.10 I have noticed no real usability or feature set changes, and the installation/upgrade process is always very buggy for us.  Its administration and permissions model is laughably limited.  A possible target for this is DekiWiki which Mozilla is supposedly converting to.  It's open source and it's actually a CMS, which (perhaps) could kill two birds with one stone.

Latest revision as of 22:03, 15 March 2011


This is sort of a major push for AlliedModders to be a bit more streamlined. We're encountering growth problems, especially as our personnel has dwindled quite low recently. This document discusses some changes I'm proposing. Anyone is free to discuss this on the forums or add comments into this document.

Everything related to source code management in this document refers to Metamod:Source and SourceMod. AMX Mod X is considered "mature" and is no longer maintained except for critical or high priority bugs. If and when we do a move past Subversion, it is unlikely AMX Mod X will follow.

The Problems

Short Term

  • We're finding it hard to manage multiple projects in a unified way.
  • There are site disparities, Metamod:Source and SourceMod and AMX Mod X each have entirely different backends.
  • Similarly, each site has a different version of the mirror system script.
  • Subversion doesn't cut it -- Mercurial might handle things better. Subversion basically has no branching or tagging support, and it has no real branch merging capabilities. This is a real problem for SourceMod which has pretty active development.
  • The packaging system is disorganized and fundamentally broken. It's inconsistent, inaccurate, and takes up 1.7GB of wasted space and growing.

Long Term

  • AlliedModders has plans past SourceMod. We need to be able to grow our project base without adding exponential amounts of work.
  • We still don't have a main site
  • MediaWiki still has authentication problems since its handling of usernames is broken
  • Flyspray is buggy, definitely non-production, and doesn't get maintained frequently
  • It's impossible to maintain the AMXX/SM/MM:S sites right now


Mercurial

Subversion doesn't let us branch nicely or create user-specific branches without forever mucking up the central repository. It's difficult to do merges.

An excellent tutorial for how Mercurial works is here.


Phases

Phase 0 - Done

DONE: We've eliminated build numbers and are back on the x.y.z system.

  • Apply new versioning scheme, whatever it may be.

Phase 1 - Done

DONE!

Move from Sente to Iroh so we can get away from ThePlanet and clean up/optimize some infrastructure. This is documented at Iroh Migration.

Phase 2

Expected date: Mid-July

  • Redo automation so the "packaging" versus "sending upstream" processes are fundamentally separate.
  • Redo "sending upstream" process so it simply sends over FTP.
  • Use an SSH tunnel to notify of new packages, so we don't have to do something idiotic like mirrors.pl for the mirror system, or using post-commit scripts on the Packages repository.
  • Redo the package system so only 30 days worth of builds are available.
  • Write a script to help users diff between packages? (Update: No one asked for it.)
  • Remove the Packages repository entirely (transitioning AMX Mod X to this will be trivial).
  • Update symbol server to include binaries and maybe even sourcecode? Removes the need for fetchdll's.

Phase 3 - Done

DONE!

  • bug 3257: Transition SourceMod to vs2k8.
  • bug 3258: Transition Metamod:Source to vs2k8.

Phase 4 - Done

DONE!

  • Move the pdbstore to be centralized client-side. This can be accomplished by making a more advanced symstore wrapper that will remove anything older than 30 days, and then (in a similar SSH tunnel method as above), rsync all changes upstream to the webserver. The exact mechanism is still up in the air, but rsync would probably suffice (as long as we can stomach cygwin).
  • Remove the Symbols repository.
  • Rewrite fetchdlls to support the new layout.

Phase 5 - Done

DONE!

  • Add hg.alliedmods.net pointing to our "repository roots," which will be per-project. For example, hg.alliedmods.net/sourcemod.
  • From there, import trunk as "sourcemod."
  • Branch every major release off as separate repositories, from the appropriate revisions.
  • Tag minor releases.
  • Update all links we can find on the site and in the docs.

Phase 6 - Done

DONE!

  • Import mmsource into Mercurial.
  • Import hl2sdk/hl2sdk-ob into Mercurial.
  • Update all links we can find on the site and in the docs.

Phase 7

DONE!

  • bug 3259: We need to update vBulletin to the 3.7 branch. This is potentially a huge task.

Phase 8

Expected date: Q1 2009

We really, really still need a CMS to make this packaging, mirroring, etc business much more streamlined. But this phase is so far in the future I expect other phases to creep in before it. This is more a mind dump than anything, but here goes --

  • Moving from flyspray to bugzilla. After using bugzilla, I'm convinced that its massive feature set far outweights the few permissions issues we ran into. flyspray is severely lacking, and even though bugzilla isn't the nicest looking tool, it's templated and professionally done. It has little things that really count, like..
    • The input system isn't broken and convoluted like Flyspray's embedded dokuwiki (which seems to be less a product than a bunch of bugs someone coded)
    • A much, MUCH better attachment system that allows for attachment reviews
    • More focused on triaging and patch management than flyspray, which is simply a list of tasks with some basic statistics
  • Moving from MediaWiki, which (I view) as a very, very outdated piece of software. From version 1.5 to 1.10 I have noticed no real usability or feature set changes, and the installation/upgrade process is always very buggy for us. Its administration and permissions model is laughably limited. A possible target for this is DekiWiki which Mozilla is supposedly converting to. It's open source and it's actually a CMS, which (perhaps) could kill two birds with one stone.