||This page is about how Launchpad's Code Hosting component. Please [[Help|ask for help]] right away if you have any questions. || = Launchpad Code Hosting = Launchpad hosts source code using [[http://bazaar-vcs.org|Bazaar]] branches. However dealing with code in Launchpad covers many more areas than just hosting branches. Code for the web application is only part of the Launchpad codehosting system. The major sub-systems are: * The bzr client * Connectivity to Launchpad (sftp and bzr+ssh) * Hosting infrastructure * The underlying object model * The web application * Email processing * Code imports (from CVS, Subversion, git and Mercurial) * Branch source code browser ([[/Loggerhead|loggerhead]]) * Source package recipes (bzr-builder integration with [[Soyuz|Soyuz]]) Each of these subsystems also have multiple moving parts and some have other asynchronous jobs associated with them. The [[attachment:codehosting.png|codehosting overview diagram]] summarizes how some of these systems interact. You can [[/HowToUseCodehostingLocally|run the codehosting system locally]]. == The bzr client == This is what users install on their systems to use Bazaar. The bzr application is also installed on the server side for Launchpad to use to access the information in the Bazaar branches. '''Parts [and responsibilities] ''' * bzr client [shared with the bzr team] * bzr.plugins.launchpad [shared with the bzr team] * server side of lp name resolution == Connectivity to Launchpad == Connecting to the code hosting system from the outside world is done either through SSH using SFTP or the bzr+ssh protocol, or through HTTP. Apache handles the HTTP routing using a number of mod-rewrite rules. '''Parts [and responsibilities] ''' * HTTP apache configuration [shared with LOSAs] * branch location rewrite script (called by mod-rewrite rule) * ssh server * authentication * sftp implementation * smart server launching * smart server * lp-serve plugin * bzr's smart server [shared with bzr team] * codehosting transport implementations * codehosting interfaces on xmlrpc.lp.internal == Hosting infrastructure == This really groups together the bits around what happens once we have a branch that a user has pushed to us, and the associated jobs that get kicked off. '''Parts [and responsibilities] ''' * puller * scanner * revision email jobs * scalability concerns - efficient storage and responsiveness [shared with LOSAs] * stacking * reclaimation cleanup jobs * backup support scripts == The web application == Code that is executed as part of the Launchpad web application. The core [[/Concepts|concepts]] are documented on the [[/Concepts|Code/Concepts]] page. '''Major features''' * general information * listings for various registry objects - people, teams, projects, distros, packages * privacy * code reviews * merge management * branch gardening * linking to other launchpad apps (bugs, blueprints, rosetta (soyuz soon)) * translation jobs [rosetta team primarily responsible for this] * asynchronous generation of review diffs == Email processing == There is also the processing of incoming email to the code.launchpad.net domain. Currently there are two main things are triggered with incoming email: * creating a new merge proposal (an possibly a source branch) from a merge directive * processing email comments (with possible commands) == Code imports == Launchpad provides a way for users to get access to source code from other systems as Bazaar branches. (from CVS, Subversion, git and Mercurial) * code import jobs * integration of import tools * cscvs for CVS (and legacy Subversion imports) * bzr-svn and subvertpy for all new Subversion imports * bzr-git and dulwich for git * bzr-hg for mercurial imports == Branch source code browser (loggerhead) == Launchpad uses [[https://launchpad.net/loggerhead|loggerhead]] to provide a web view of the branch contents. We try not to have any Launchpad specific code in loggerhead itself, but instead keep that in the [[https://code.launchpad.net/~launchpad-pqm/loggerhead/devel|lp:~launchpad-pqm/loggerhead/devel]] branch. * loggerhead itself - community project but with major contributions from Canonical See [[/Loggerhead|Loggerhead for Launchpad developers]] for details on how to land changes to Launchpad loggerhead. == Source package recipes == See [[https://help.launchpad.net/Packaging/SourceBuilds|the help wiki]] for more details on what recipes are.