Mercurial > hgbook
annotate es/hook.tex @ 562:0ab26d50eba3
corrected a typo in a perl regexp. \o/ \o/ \o/ therefore I know quantum mechanics!!! see xkcd
author | Javier Rojas <jerojasro@devnull.li> |
---|---|
date | Tue, 23 Dec 2008 17:45:08 -0500 |
parents | 5389bef3a95b |
children | 951bf84ca8e2 |
rev | line source |
---|---|
536 | 1 \chapter{Manejo de eventos en repositorios mediante ganchos} |
435 | 2 \label{chap:hook} |
3 | |
534 | 4 Mercurial ofrece un poderoso mecanismo para permitirle a usted |
5 automatizar la ejecución de acciones en respuesta a eventos que | |
6 ocurran en un repositorio. En algunos casos, usted puede controlar | |
7 incluso la respuesta de Mercurial a dichos eventos. | |
435 | 8 |
534 | 9 Mercurial usa el término \emph{gancho} para identificar estas |
10 acciones. Los ganchos son conocidos como ``disparadores'' en algunos | |
11 sistemas de control de revisiones, pero los dos nombres se refieren al | |
12 mismo concepto. | |
435 | 13 |
534 | 14 \section{Vistazo general de ganchos en Mercurial} |
435 | 15 |
534 | 16 A continuación se encuentra una breve lista de los ganchos que |
17 Mercurial soporta. Volveremos a cada uno de estos ganchos con más | |
18 detalle después, en la sección~\ref{sec:hook:ref}. | |
435 | 19 |
20 \begin{itemize} | |
534 | 21 \item[\small\hook{changegroup}] Es ejecutado luego de que un grupo de |
22 conjuntos de cambios ha sido traído al repositorio desde algún | |
23 otro sitio. | |
24 \item[\small\hook{commit}] Es ejecutado después de la creación de | |
25 un conjunto de cambios en el repositorio local. | |
26 \item[\small\hook{incoming}] Es ejecutado una vez por cada conjunto de | |
27 cambios traído al repositorio desde otra ubicación. Note la | |
28 diferencia respecto al gancho \hook{changegroup}, que es ejecutado | |
29 una vez por cada \emph{grupo} de conjuntos de cambios que se | |
30 traiga. | |
31 \item[\small\hook{outgoing}] Es ejecutado luego de que un grupo de | |
32 conjuntos de cambios ha sido transmitido desde el repositorio. | |
33 \item[\small\hook{prechangegroup}] Es ejecutado antes de iniciar la | |
34 recepción de un grupo de conjuntos de cambios en el repositorio. | |
35 \item[\small\hook{precommit}] De control. Es ejecutado antes de | |
36 iniciar una consignación. | |
37 \item[\small\hook{preoutgoing}] De control. Es ejecutado antes de | |
38 iniciar la transmisión de un grupo de conjuntos de cambios desde | |
39 el repositorio. | |
40 \item[\small\hook{pretag}] De control. Es ejecutado antes de crear una | |
41 etiqueta. | |
42 \item[\small\hook{pretxnchangegroup}] De control. Es ejecutado después | |
43 de haber recibido un grupo de conjuntos de cambios en el | |
44 repositorio local, pero antes de que la transacción se complete y | |
45 los cambios sean permanentes dentro del repositorio. | |
46 \item[\small\hook{pretxncommit}] De control. Es ejecutado luego de la | |
47 creación de un conjunto de cambios en el repositorio local, pero | |
48 antes de que la transacción que hace permanente el cambio sea | |
49 completada. | |
50 \item[\small\hook{preupdate}] De control. Es ejecutado antes de | |
51 iniciar una actualización o fusión en el directorio de trabajo. | |
52 \item[\small\hook{tag}] Es ejecutado después de la creación de una | |
53 etiqueta. | |
54 \item[\small\hook{update}] Es ejecutado después de que termina una | |
55 actualización o una fusión. | |
435 | 56 \end{itemize} |
534 | 57 Cada uno de los ganchos cuya descripción empieza con la frase |
58 ``de control'' tiene la facultad de determinar si una actividad puede | |
59 continuar. Si el gancho se ejecuta con éxito, la actividad puede | |
60 continuar; si falla, o bien la actividad no es permitida, o se | |
61 deshacen los cambios que se puedan haber llevado a cabo, dependiendo | |
62 del gancho involucrado. | |
435 | 63 |
534 | 64 \section{Ganchos y seguridad} |
435 | 65 |
534 | 66 \subsection{Los ganchos se ejecutan con sus privilegios de usuario} |
435 | 67 |
534 | 68 Cuando usted ejecuta un comando de Mercurial en un repositorio, y el |
69 comando causa la ejecución de un gancho, dicho gancho se ejecuta en | |
70 \emph{su} sistema, en \emph{su} cuenta de usuario, con \emph{sus} | |
71 privilegios. Ya que los ganchos son elementos arbitrarios de código | |
72 ejecutable, usted debería tratarlos con un nivel adecuado de | |
73 desconfianza. No instale un gancho a menos en que confíe en quien lo | |
74 creó y en lo que el gancho hace. | |
435 | 75 |
534 | 76 En algunos casos, usted puede estar expuesto a ganchos que usted no |
77 %TODO acá introduzco algo de texto por mi cuenta, por claridad | |
78 instaló. Si usted usa Mercurial en un sistema extraño, tenga en cuenta | |
79 que Mercurial ejecutará los ganchos definidos en el fichero \hgrc. | |
435 | 80 |
534 | 81 Si está trabajando con un repositorio propiedad de otro usuario, |
82 Mercurial podrá ejecutar los ganchos definidos en el repositorio de | |
83 dicho usuario, pero los ejecutará como ``usted''. Por ejemplo, si | |
84 usted jala (\hgcmd{pull}) desde ese repositorio, y el | |
85 \sfilename{.hg/hgrc} define un gancho saliente (\hook{outgoing}), | |
86 dicho gancho se ejecuta bajo su cuenta de usuario, aun cuando usted no | |
87 es el propietario del repositorio. | |
435 | 88 |
89 \begin{note} | |
534 | 90 Esto sólo aplica si usted está jalando desde un repositorio en un |
91 sistema de ficheros local o de red. Si está jalando a través de http | |
92 o ssh, cualquier gancho saliente (\hook{outgoing}) se ejecutará bajo | |
93 la cuenta que está ejecutando el proceso servidor, en el servidor. | |
435 | 94 \end{note} |
95 | |
534 | 96 XXX Para ver qué ganchos han sido definidos en un repositorio, use el |
97 comando \hgcmdargs{config}{hooks}. Si usted está trabajando en un | |
98 repositorio, pero comunicándose con otro que no le pertenece | |
99 (por ejemplo, usando \hgcmd{pull} o \hgcmd{incoming}), recuerde que | |
100 los ganchos que debe considerar son los del otro repositorio, no los | |
101 del suyo. | |
435 | 102 |
534 | 103 \subsection{Los ganchos no se propagan} |
435 | 104 |
534 | 105 En Mercurial, no se hace control de revisiones de los ganchos, y no se |
106 propagan cuando usted clona, o jala de, un repositorio. El motivo para | |
107 esto es simple: un gancho es código ejecutable arbitrario. Se ejecuta | |
108 bajo su identidad, con su nivel de privilegios, en su máquina. | |
435 | 109 |
534 | 110 Sería extremadamente descuidado de parte de cualquier sistema |
111 distribuido de control de revisiones el implementar control de | |
112 revisiones para ganchos, ya que esto ofrecería maneras fácilmente | |
113 %TODO subvertir | |
114 aprovechables de subvertir las cuentas de los usuarios del sistema de | |
115 control de revisiones. | |
435 | 116 |
534 | 117 Ya que Mercurial no propaga los ganchos, si usted está colaborando con |
118 otras personas en un proyecto común, no debería asumir que ellos están | |
119 usando los mismos ganchos para Mercurial que usted usa, o que los de | |
120 ellos están configurado correctamente. Usted debería documentar los | |
121 ganchos que usted espera que la gente use. | |
435 | 122 |
536 | 123 En una intranet corporativa, esto es algo más fácil de manejar, ya que |
124 usted puede, por ejemplo, proveer una instalación ``estándar'' de | |
125 Mercurial en un sistema de ficheros NFS, y usar un fichero \hgrc\ | |
126 global para definir los ganchos que verán todos los usuarios. Sin | |
127 embargo, este enfoque tiene sus límites; vea más abajo. | |
435 | 128 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
129 \subsection{Es posible hacer caso omiso de los ganchos} |
435 | 130 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
131 Mercurial le permite hacer caso omiso de la deficinión de un gancho, |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
132 a través de la redefinición del mismo. Usted puede deshabilitar el |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
133 gancho fijando su valor como una cadena vacía, o cambiar su |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
134 comportamiento como desee. |
435 | 135 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
136 Si usted instala un fichero \hgrc\ a nivel de sistema o sitio completo |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
137 que define algunos ganchos, debe entender que sus usuarios pueden |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
138 deshabilitar o hacer caso omiso de los mismos. |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
139 |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
140 \subsection{Asegurarse de que ganchos críticos sean ejecutados} |
435 | 141 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
142 Algunas veces usted puede querer hacer respetar una política, y no |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
143 permitir que los demás sean capaces de evitarla. Por ejemplo, usted |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
144 puede tener como requerimiento que cada conjunto de cambios debe pasar |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
145 un riguroso conjunto de pruebas. Definir este requerimientos a través |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
146 de un gancho en un fichero \hgrc\ global no servirá con usuarios |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
147 remotos en computadoras portátiles, y por supuesto que los usuarios |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
148 locales pueden evitar esto a voluntad haciendo caso omiso del gancho. |
435 | 149 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
150 En vez de eso, usted puede definir las políticas para usar Mercurial |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
151 de tal forma que se espere que los usuarios propaguen los cambios a |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
152 través de un servidor ``canónico'' bien conocido que usted ha |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
153 asegurado y configurado apropiadamente. |
435 | 154 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
155 Una manera de hacer esto es a través de una combinación de ingeniería |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
156 socual y tecnología. Cree una cuenta de acceso restringido; los |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
157 usuarios pueden empujar cambios a través de la red a los repositorios |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
158 administrados por esta cuenta, pero no podrán ingresar a dicha cuenta |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
159 para ejecutar órdenes en el intérprete de comandos. En este escenario, |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
160 un usuario puede enviar un conjunto de cambios que contenga la |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
161 porquería que él desee. |
435 | 162 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
163 Cuando alguien empuja un conjunto de cambios al servidor del que todos |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
164 jalan, el servidor probará el conjunto de cambios antes de aceptarlo |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
165 como permanente, y lo rechazará si no logra pasar el conjunto de |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
166 pruebas. Si la gente sólo jala cambios desde este servidor de filtro, |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
167 servirá para asegurarse de que todos los cambios que la gente jala han |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
168 sido examinados automáticamente |
435 | 169 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
170 \section{Precauciones con ganchos \texttt{pretxn} en un repositorio de |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
171 acceso compartido} |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
172 |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
173 Si usted desea usar ganchos para llevar a cabo automáticamente algún |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
174 trabajo en un repositorio al que varias personas tienen acceso |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
175 compartido, debe tener cuidado con la forma de hacerlo. |
435 | 176 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
177 Mercurial sólo bloquea un repositorio cuando está escribiendo al |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
178 mismo, y sólo las partes de Mercurial que escriben al repositorio le |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
179 prestan atención a los bloqueos. Los bloqueos de escritura son |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
180 necesarios para evitar que múltiples escritores simultáneos |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
181 interfieran entre sí, corrompiendo el repositorio. |
435 | 182 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
183 Ya que Mercurial tiene cuidado con el orden en que lee y escribe |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
184 datos, no necesita adquirir un bloqueo cuando desea leer datos del |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
185 repositorio. Las partes de Mercurial que leen del repositorio nunca le |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
186 prestan atención a los bloqueos. Este esquema de lectura libre de |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
187 bloqueos incremententa en gran medida el desempeño y la concurrencia. |
435 | 188 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
189 Sin embargo, para tener un gran desempeño es necesario hacer |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
190 sacrificios, uno de los cuales tiene el potencial de causarle |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
191 problemas a menos de que usted esté consciente de él. Describirlo |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
192 requiere algo de detalle respecto a cómo Mercurial añade conjuntos de |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
193 cambios al repositorio y cómo lee esos cambios de vuelta. |
435 | 194 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
195 Cuando Mercurial \emph{escribe} metadatos, los escribe directamente en |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
196 el fichero de destino. Primero escribe los datos del fichero, luego |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
197 los datos del manifiesto (que contienen punteros a los nuevos datos |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
198 del fichero), luego datos de la bitácora de cambios (que contienen |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
199 punteros a los nuevos datos del manifiesto). Antes de la primera |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
200 escritura a cada fichero, se guarda un registro de dónde estaba el |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
201 final de fichero en su registro de transacciones. Si la transacción |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
202 debe ser deshecha, Mercurial simplemente trunca cada fichero de vuelta |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
203 al tamaño que tenía antes de que empezara la transacción. |
435 | 204 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
205 Cuando Mercurial \emph{lee} metadatos, lee la bitácora de cambios |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
206 primero, y luego todo lo demás. Como un lector sólo accederá a las |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
207 partes del manifiesto o de los metadatos de fichero que él puede ver |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
208 en la bitácora de cambios, nunca puede ver datos parcialmente |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
209 escritos. |
435 | 210 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
211 Algunos ganchos de control (\hook{pretxncommit} y |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
212 \hook{pretxnchangegroup}) se ejecutan cuando una transacción está casi |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
213 completa. Todos los metadatos han sido escritos, pero Mercurial aún |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
214 puede deshacer la transacción y hacer que los datos recién escritos |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
215 desaparezcan. |
435 | 216 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
217 Si alguno de estos ganchos permanece en ejecución por mucho tiempo, |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
218 abre una ventana de tiempo en la que un lector puede ver los metadatos |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
219 de conjuntos de cambios que aún no son permanentes y que no debería |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
220 considerarse que estén ``realmante ahí''. Entre más tiempo tome la |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
221 ejecución del gancho, más tiempo estará abierta esta ventana. |
435 | 222 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
223 \subsection{Ilustración del problema} |
435 | 224 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
225 En principio, un buen uso del gancho \hook{pretxnchangegroup} sería |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
226 ensamblar y probar automáticamente todos los cambios entrantes antes |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
227 de que sean aceptados en un repositorio central. Esto le permitiría a |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
228 usted garantizar que nadie pueda empujar cambios que ``rompan el |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
229 ensamblaje''. Pero si un cliente puede jalar cambios mientras están |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
230 siendo probados, la utilidad de esta prueba es nula; alguien confiado |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
231 puede jalar cambios sin probar, lo que potencialmente podría romper su |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
232 proceso de ensamblaje. |
435 | 233 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
234 La respuesta técnica más segura frente a este retos es montar dicho |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
235 repositorio ``guardián'' como \emph{unidireccional}. Permita que |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
236 reciba cambios desde el exterior, pero no permita que nadie jale |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
237 cambios de él (use el gancho \hook{preoutgoing} para bloquear esto). |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
238 Configure un gancho \hook{changegroup} para que si el ensamblaje o |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
239 prueba tiene éxito, el gancho empuje los nuevos cambios a otro |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
240 repositorio del que la gente \emph{pueda} jalar. |
435 | 241 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
242 En la práctica, montar un cuello de botella centralizado como éste a |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
243 menudo no es una buena idea, y la visibilidad de las transacciones no |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
244 tiene nada que ver con el problema. A medida que el tamaño de un |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
245 proyecto---y el tiempo que toma ensamblarlo y probarlo---crece, usted |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
246 se acerca rápidamente a un límite con este enfoque ``pruebe antes de |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
247 comprar'', en el que tiene más conjuntos de cambios a probar que |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
248 tiempo para ocuparse de ellos. El resultado inevitable es frustración |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
249 para todos los que estén involucrados. |
435 | 250 |
540
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
251 Una aproximación que permite manejar mejor el crecimiento es hacer que |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
252 la gente ensamble y pruebe antes de empujar, y ejecutar el ensamble y |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
253 pruebas automáticas centralmente \emph{después} de empujar, para |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
254 asegurarse de que todo esté bien. La ventaja de este enfoque es que no |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
255 impone un límite a la rata en la que un repositorio puede aceptar |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
256 cambios. |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
257 |
4e0684e824e1
translated up to the tutorial on using hooks
jerojasro@abu.no-ip.org
parents:
536
diff
changeset
|
258 \section{Tutorial corto de uso de ganchos} |
435 | 259 \label{sec:hook:simple} |
260 | |
541 | 261 Escribir un gancho para Mercurial es fácil. Empecemos con un gancho |
262 que se ejecute cuando usted termine un \hgcmd{commit}, y simplemente | |
263 muestre el hash del conjunto de cambios que usted acaba de crear. El | |
264 gancho se llamará \hook{commit}. | |
435 | 265 |
266 \begin{figure}[ht] | |
267 \interaction{hook.simple.init} | |
541 | 268 \caption{Un gancho simple que se ejecuta al hacer la consignación de |
269 un conjunto de cambios} | |
435 | 270 \label{ex:hook:init} |
271 \end{figure} | |
272 | |
541 | 273 Todos los ganchos siguen el patrón del ejemplo~\ref{ex:hook:init}. |
274 Usted puede añadir una entrada a la sección \rcsection{hooks} de su | |
275 fichero \hgrc. A la izquierda está el nombre del evento respecto al | |
276 cual dispararse; a la derecha está la acción a llevar a cabo. Como | |
277 puede ver, es posible ejecutar cualquier orden de la línea de comandos | |
278 en un gancho. Mercurial le pasa información extra al gancho usando | |
279 variables de entorno (busque \envar{HG\_NODE} en el ejemplo). | |
435 | 280 |
541 | 281 \subsection{Llevar a cabo varias acciones por evento} |
435 | 282 |
541 | 283 A menudo, usted querrá definir más de un gancho para un tipo de evento |
284 particular, como se muestra en el ejemplo~\ref{ex:hook:ext}. | |
285 Mercurial le permite hacer esto añadiendo una \emph{extensión} al | |
286 final del nombre de un gancho. Usted extiende el nombre del gancho | |
287 %TODO Yuk, no me gusta ese "parada completa" | |
288 poniendo el nombre del gancho, seguido por una parada completa (el | |
289 caracter ``\texttt{.}''), seguido de algo más de texto de su elección. | |
290 Por ejemplo, Mercurial ejecutará tanto \texttt{commit.foo} como | |
291 \texttt{commit.bar} cuando ocurra el evento \texttt{commit}. | |
435 | 292 |
293 \begin{figure}[ht] | |
294 \interaction{hook.simple.ext} | |
541 | 295 \caption{Definición de un segundo gancho \hook{commit}} |
435 | 296 \label{ex:hook:ext} |
297 \end{figure} | |
298 | |
541 | 299 Para dar un orden bien definido de ejecución cuando hay múltiples |
300 ganchos definidos para un evento, Mercurial ordena los ganchos de | |
301 acuerdo a su extensión, y los ejecuta en dicho orden. En el ejemplo de | |
302 arribam \texttt{commit.bar} se ejecutará antes que | |
303 \texttt{commit.foo}, y \texttt{commit} se ejecutará antes de ambos. | |
435 | 304 |
541 | 305 Es una buena idea usar una extensión descriptiva cuando usted define |
306 un gancho. Esto le ayudará a recordar para qué se usa el gancho. Si el | |
307 gancho falla, usted recibirá un mensaje de error que contiene el | |
308 nombre y la extensión del gancho, así que usar una extensión | |
309 descriptiva le dará una pista inmediata de porqué el gancho falló (vea | |
310 un ejemplo en la sección~\ref{sec:hook:perm}). | |
435 | 311 |
541 | 312 \subsection{Controlar cuándo puede llevarse a cabo una actividad} |
435 | 313 \label{sec:hook:perm} |
314 | |
541 | 315 En los ejemplos anteriores, usamos el gancho \hook{commit}, que es |
316 ejecutado después de que se ha completado una consignación. Este es | |
317 uno de los varios ganchos que Mercurial ejecuta luego de que una | |
318 actividad termina. Tales ganchos no tienen forma de influenciar la | |
319 actividad como tal. | |
435 | 320 |
541 | 321 Mercurial define un número de eventos que ocurren antes de que una |
322 actividad empiece; o luego de que empiece, pero antes de que termine. | |
323 Los ganchos que se disparan con estos eventos tienen la capacidad | |
324 adicional de elegir si la actividad puede continuar, o si su ejecución | |
325 es abortada. | |
435 | 326 |
541 | 327 El gancho \hook{pretxncommit} se ejecuta justo antes de que una |
328 consignación se ejecute. En otras palabras, los metadatos que | |
329 representan el conjunto de cambios han sido escritos al disco, pero no | |
330 se ha terminado la transacción. El gancho \hook{pretxncommit} tiene la | |
331 capacidad de decidir si una transacción se completa, o debe | |
332 deshacerse. | |
435 | 333 |
541 | 334 Si el gancho \hook{pretxncommit} termina con un código de salida de |
335 cero, se permite que la transacción se complete; la consignación | |
336 termina; y el gancho \hook{commit} es ejecutado. Si el gancho | |
337 \hook{pretxncommit} termina con un código de salida diferente de cero, | |
338 la transacción es revertida; los metadatos representando el conjunto | |
339 de cambios son borrados; y el gancho \hook{commit} no es ejecutado. | |
435 | 340 |
341 \begin{figure}[ht] | |
342 \interaction{hook.simple.pretxncommit} | |
541 | 343 \caption{Uso del gancho \hook{pretxncommit} hook to control commits} |
435 | 344 \label{ex:hook:pretxncommit} |
345 \end{figure} | |
346 | |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
347 El gancho en el ejemplo~\ref{ex:hook:pretxncommit} revisa si el |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
348 mensaje de consignación contiene el ID de algún fallo. Si lo contiene, |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
349 la consignación puede continuar. Si no, la consignación es cancelada. |
435 | 350 |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
351 \section{Escribir sus propios ganchos} |
435 | 352 |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
353 Cuando usted escriba un gancho, puede encontrar útil el ejecutar |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
354 Mercurial o bien pasándole la opción \hggopt{-v}, o con el valor de |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
355 configuración \rcitem{ui}{verbose} fijado en ``true'' (verdadero). |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
356 Cuando lo haga, Mercurial imprimirá un mensaje antes de llamar cada |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
357 gancho. |
435 | 358 |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
359 \subsection{Escoger cómo debe ejecutarse su gancho} |
435 | 360 \label{sec:hook:lang} |
361 | |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
362 Usted puede escribir un gancho que funcione como un programa normal |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
363 ---típicamente un guión de línea de comandos---o como una función de |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
364 Python que se ejecuta dentro del proceso Mercurial. |
435 | 365 |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
366 Escribir un gancho como un programa externo tiene la ventaja de que no |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
367 requiere ningún conocimiento del funcionamiento interno de Mercurial. |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
368 Usted puede ejecutar comandos Mercurial normales para obtener la |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
369 informción extra que pueda necesitar. La contraparte de esto es que |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
370 los ganchos externos son más lentos que los ganchos internos |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
371 ejecutados dentro del proceso. |
435 | 372 |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
373 Un gancho Python interno tiene acceso completo a la API de Mercurial, |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
374 y no se ``externaliza'' a otro proceso, así que es inherentemente más |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
375 rápido que un gancho externo. Adicionalmente es más fácil obtener la |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
376 mayoría de la información que un gancho requiere a través de llamadas |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
377 directas a la API de Mercurial que hacerlo ejecutando comandos |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
378 Mercurial. |
435 | 379 |
551
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
380 Si se siente a gusto con Python, o requiere un alto desempeño, |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
381 escribir sus ganchos en Python puede ser una buena elección. Sin |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
382 embargo, cuando usted tiene un gancho bastante directo por escribir y |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
383 no le importa el desempeño (el caso de la mayoría de los ganchos), es |
5a0401ba9faa
translated some paragraphs of hooks
jerojasro@abu.no-ip.org
parents:
541
diff
changeset
|
384 perfectamente admisible un guión de línea de comandos. |
435 | 385 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
386 \subsection{Parámetros para ganchos} |
435 | 387 \label{sec:hook:param} |
388 | |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
389 Mercurial llama cada gancho con un conjunto de paŕametros bien |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
390 definidos. En Python, un parámetro se pasa como argumento de palabra |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
391 clave a su función de gancho. Para un programa externo, los parámetros |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
392 son pasados como variables de entornos. |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
393 |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
394 Sin importar si su gancho está escrito en Python o como guión de línea |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
395 de comandos, los nombres y valores de los parámetros específicos de |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
396 los ganchos serán los mismos. Un parámetro booleano será representado |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
397 como un valor booleano en Python, pero como el número 1 (para |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
398 ``verdadero'') o 0 (para falso) en una variable de entorno para un |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
399 gancho externo. Si un parámetro se llama \texttt{foo}, el argumento de |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
400 palabra clave para un gancho en Python también se llamará |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
401 \texttt{foo}, mientras que la variable de entorno para un gancho |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
402 externo se llamará \texttt{HG\_FOO}. |
435 | 403 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
404 \subsection{Valores de retorno de ganchos y control de actividades} |
435 | 405 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
406 Un gancho que se ejecuta exitosamente debe terminar con un código de |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
407 salida de cero, si es externo, o retornar el valor booleano |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
408 ``falso'', si es interno. Un fallo se indica con un código de salida |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
409 diferente de cero desde un gancho externo, o un valor de retorno |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
410 booleano ``verdadero''. Si un gancho interno genera una excepción, se |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
411 considera que el gancho ha fallado. |
435 | 412 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
413 Para los ganchos que controlan si una actividad puede continuar o no, |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
414 cero/falso quiere decir ``permitir'', mientras que |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
415 % TODO me suena mejor "no permitir" que "denegar" |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
416 no-cero/verdadero/excepción quiere decir ``no permitir''. |
435 | 417 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
418 \subsection{Escribir un gancho externo} |
435 | 419 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
420 Cuando usted define un gancho externo en su fichero \hgrc\ y el mismo |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
421 es ejecutado, dicha definición pasa a su intérprete de comandos, que |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
422 hace la interpretación correspondiente. Esto significa que usted puede |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
423 usar elementos normales del intérprete en el cuerpo del gancho. |
435 | 424 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
425 Un gancho ejecutable siempre es ejecutado con su directorio actual |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
426 fijado al directorio raíz del repositorio. |
435 | 427 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
428 Cada parámetro para el gancho es pasado como una variable de entorno; |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
429 el nombre está en mayúsculas, y tiene como prefijo la cadena |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
430 ``\texttt{HG\_}''. |
435 | 431 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
432 Con la excepción de los parámetros para los ganchos, Mercurial no |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
433 define o modifica ninguna variable de entorno al ejecutar un gancho. |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
434 Es útil recordar esto al escribir un gancho global que podría ser |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
435 ejecutado por varios usuarios con distintas variables de entorno |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
436 fijadas. En situaciones con múltiples usuarios, usted no debería |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
437 asumir la existencia de ninguna variable de entorno, ni que sus |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
438 valores sean los mismos que tenían cuando usted probó el gancho en su |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
439 ambiente de trabajo. |
435 | 440 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
441 \subsection{Indicar a Mercurial que use un gancho interno} |
435 | 442 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
443 La sintaxis para definir un gancho interno en el fichero \hgrc\ es |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
444 ligeramente diferente de la usada para un gancho externo. El valor del |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
445 gancho debe comenzar con el texto ``\texttt{python:}'', y continuar |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
446 con el nombre completamente cualificado de un objeto invocable que se |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
447 usará como el valor del gancho. |
435 | 448 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
449 El módulo en que vive un gancho es importado automáticamente cuando se |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
450 ejecuta un gancho. Siempre que usted tenga el nombre del módulo y la |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
451 variable de entorno \envar{PYTHONPATH} ajustada adecuadamente, todo |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
452 debería funcionar sin problemas. |
435 | 453 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
454 El siguiente fragmento de ejemplo de un fichero \hgrc\ ilustra la |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
455 sintaxis y significado de los conceptos que acabamos de describir. |
435 | 456 \begin{codesample2} |
457 [hooks] | |
458 commit.example = python:mymodule.submodule.myhook | |
459 \end{codesample2} | |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
460 Cuando Mercurial ejecuta el gancho \texttt{commit.example}, importa |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
461 \texttt{mymodule.submodule}, busca el objeto invocable llamado |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
462 \texttt{myhook}, y lo invoca (llama). |
435 | 463 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
464 \subsection{Escribir un gancho interno} |
435 | 465 |
560
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
466 El gancho interno más sencillo no hace nada, pero ilustra la |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
467 estructura básica de la API\footnote{\emph{Application Progamming |
67d34d8b6ba0
translated up to the "writing an in-process hook" section
Javier Rojas <jerojasro@devnull.li>
parents:
551
diff
changeset
|
468 Interface}, Interfaz para Programación de Aplicaciones} para ganchos: |
435 | 469 \begin{codesample2} |
470 def myhook(ui, repo, **kwargs): | |
471 pass | |
472 \end{codesample2} | |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
473 El primer argumento para un gancho Python siempre es un objeto |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
474 \pymodclass{mercurial.ui}{ui}. El segundo es un objeto repositorio; |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
475 de momento, siempre es una instancia de |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
476 \pymodclass{mercurial.localrepo}{localrepository}. Después de estos |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
477 dos argumentos están los argumentos de palabra clave. Los argumentos |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
478 que se pasen dependerán del tipo de gancho que se esté llamando, pero |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
479 un gancho siempre puede ignorar los argumentos que no le interesen, |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
480 relegándolos a un diccionario de argumentos por palabras clave, como se |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
481 hizo arriba con \texttt{**kwargs}. |
435 | 482 |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
483 \section{Ejemplos de ganchos} |
435 | 484 |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
485 \subsection{Escribir mensajes de consignación significativos} |
435 | 486 |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
487 Es difícil de imaginar un mensaje de consignación útil y al mismo |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
488 tiempo muy corto. El simple gancho \hook{pretxncommit} de la |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
489 figura~\ref{ex:hook:msglen.go} evitará que usted consigne un conjunto |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
490 de cambios con un mensaje de menos de 10 bytes de longitud. |
435 | 491 |
492 \begin{figure}[ht] | |
493 \interaction{hook.msglen.go} | |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
494 \caption{Un gancho que prohíbe mensajes de consignación demasiado |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
495 cortos} |
435 | 496 \label{ex:hook:msglen.go} |
497 \end{figure} | |
498 | |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
499 \subsection{Comprobar espacios en blanco finales} |
435 | 500 |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
501 Un uso interesante para ganchos relacionados con consignaciones es |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
502 ayudarle a escribir código más limpio. Un ejemplo simple de |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
503 %TODO dictum => regla |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
504 ``código más limpio'' es la regla de que un cambio no debe añadir |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
505 líneas de texto que contengan ``espacios en blanco finales''. El |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
506 espacio en blanco final es una serie de caracteres de espacio y |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
507 tabulación que se encuentran al final de una línea de texto. En la |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
508 mayoría de los casos, el espacio en blanco final es innecesario, ruido |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
509 invisible, pero ocasionalmente es problemático, y la gente en general |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
510 prefiere deshacerse de él. |
435 | 511 |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
512 Usted puede usar cualquiera de los ganchos \hook{precommit} o |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
513 \hook{pretxncommit} para revisar si tiene el problema de los espacios |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
514 en blanco finales. Si usa el gancho \hook{precommit}, el gancho no |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
515 sabrá qué ficheros se están consignando, por lo que se tendrá que |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
516 revisar cada fichero modificado en el repositorio para ver si tiene |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
517 espacios en blanco finales. Si usted sólo quiere consignar un cambio |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
518 al fichero \filename{foo}, y el fichero \filename{bar} contiene |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
519 espacios en blanco finales, hacer la revisión en el gancho |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
520 \hook{precommit} evitará que usted haga la consignación de |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
521 \filename{foo} debido al problem en \filename{bar}. Este no parece el |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
522 enfoque adeucado. |
435 | 523 |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
524 Si usted escogiera el gancho \hook{pretxncommit}, la revisión no |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
525 ocurriría sino hasta justo antes de que la transacción para la |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
526 consignación se complete. Esto le permitirá comprobar por posibles |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
527 problemas sólo en los ficheros que serán consignados. Sin embargo, si |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
528 usted ingresó el mensaje de consignación de manera interactiva y el |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
529 %TODO roll-back |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
530 gancho falla, la transacción será deshecha; usted tendrá que |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
531 reingresar el mensaje de consignación luego de que corrija el problema |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
532 con los espacios en blanco finales y ejecute \hgcmd{commit} de nuevo. |
435 | 533 |
534 \begin{figure}[ht] | |
535 \interaction{hook.ws.simple} | |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
536 \caption{Un gancho simple que revisa si hay espacios en blanco |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
537 finales} |
435 | 538 \label{ex:hook:ws.simple} |
539 \end{figure} | |
540 | |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
541 La figura~\ref{ex:hook:ws.simple} presenta un gancho |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
542 \hook{pretxncommit} simple que comprueba la existencia de espacios en |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
543 blanco finales. Este gancho es corto, pero no brinda mucha ayuda. |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
544 Termina con un código de salida de error si un cambio añade una línea |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
545 con espacio en blanco final a cualquier fichero, pero no muestra |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
546 ninguna información que pueda ser útil para identificar el fichero o |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
547 la línea de texto origen del problema. También tiene la agradable |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
548 propiedad de no prestar atención a las líneas que no sufrieron |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
549 modificaciones; sólo las líneas que introducen nuevos espacios en |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
550 blanco finales causan problemas. |
435 | 551 |
552 \begin{figure}[ht] | |
553 \interaction{hook.ws.better} | |
554 \caption{A better trailing whitespace hook} | |
555 \label{ex:hook:ws.better} | |
556 \end{figure} | |
557 | |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
558 El ejemplo de la figura~\ref{ex:hook:ws.better} es mucho más complejo, |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
559 pero también más útil. El gancho procesa un diff unificado para |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
560 revisar si alguna línea añade espacios en blanco finales, e imprime el |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
561 nombre del fichero y el número de línea de cada ocurrencia. Aún mejor, |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
562 si el cambio añade espacios en blanco finales, este gancho guarda el |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
563 mensaje de consignación e imprime el nombre del fichero en el que el |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
564 mensaje fue guardado, antes de terminar e indicarle a Mercurial que |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
565 deshaga la transacción, para que uste pueda usar |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
566 \hgcmdargs{commit}{\hgopt{commit}{-l}~\emph{nombre\_fichero}} para |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
567 reutilizar el mensaje de consignación guardado anteriormente, una vez |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
568 usted haya corregido el problema. |
435 | 569 |
561
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
570 Como anotación final, note que en la figura~\ref{ex:hook:ws.better} el |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
571 %TODO on-site => in-situ ? |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
572 uso de la característica de edición \emph{in-situ} de \command{perl} |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
573 para eliminar los espacios en blanco finales en un fichero. Esto es |
5389bef3a95b
translated up to the "Bundled hooks" section
Javier Rojas <jerojasro@devnull.li>
parents:
560
diff
changeset
|
574 lo suficientemente conciso y poderoso para que lo presente aquí. |
562
0ab26d50eba3
corrected a typo in a perl regexp. \o/ \o/ \o/ therefore I know quantum mechanics!!! see xkcd
Javier Rojas <jerojasro@devnull.li>
parents:
561
diff
changeset
|
575 % TODO corregí el backslash, y comprobé por mi cuenta un archivo |
0ab26d50eba3
corrected a typo in a perl regexp. \o/ \o/ \o/ therefore I know quantum mechanics!!! see xkcd
Javier Rojas <jerojasro@devnull.li>
parents:
561
diff
changeset
|
576 % aparte, y el comando hace lo que debe hacer. Favor copiar del pdf el |
0ab26d50eba3
corrected a typo in a perl regexp. \o/ \o/ \o/ therefore I know quantum mechanics!!! see xkcd
Javier Rojas <jerojasro@devnull.li>
parents:
561
diff
changeset
|
577 % comando perl y comprobar con un archivo con espacios en blanco |
0ab26d50eba3
corrected a typo in a perl regexp. \o/ \o/ \o/ therefore I know quantum mechanics!!! see xkcd
Javier Rojas <jerojasro@devnull.li>
parents:
561
diff
changeset
|
578 % finales, y si todo está bien (que debería), borrar esta nota |
435 | 579 \begin{codesample2} |
562
0ab26d50eba3
corrected a typo in a perl regexp. \o/ \o/ \o/ therefore I know quantum mechanics!!! see xkcd
Javier Rojas <jerojasro@devnull.li>
parents:
561
diff
changeset
|
580 perl -pi -e 's,\textbackslash{}s+\$,,' nombre\_fichero |
435 | 581 \end{codesample2} |
582 | |
583 \section{Bundled hooks} | |
584 | |
585 Mercurial ships with several bundled hooks. You can find them in the | |
586 \dirname{hgext} directory of a Mercurial source tree. If you are | |
587 using a Mercurial binary package, the hooks will be located in the | |
588 \dirname{hgext} directory of wherever your package installer put | |
589 Mercurial. | |
590 | |
591 \subsection{\hgext{acl}---access control for parts of a repository} | |
592 | |
593 The \hgext{acl} extension lets you control which remote users are | |
594 allowed to push changesets to a networked server. You can protect any | |
595 portion of a repository (including the entire repo), so that a | |
596 specific remote user can push changes that do not affect the protected | |
597 portion. | |
598 | |
599 This extension implements access control based on the identity of the | |
600 user performing a push, \emph{not} on who committed the changesets | |
601 they're pushing. It makes sense to use this hook only if you have a | |
602 locked-down server environment that authenticates remote users, and | |
603 you want to be sure that only specific users are allowed to push | |
604 changes to that server. | |
605 | |
606 \subsubsection{Configuring the \hook{acl} hook} | |
607 | |
608 In order to manage incoming changesets, the \hgext{acl} hook must be | |
609 used as a \hook{pretxnchangegroup} hook. This lets it see which files | |
610 are modified by each incoming changeset, and roll back a group of | |
611 changesets if they modify ``forbidden'' files. Example: | |
612 \begin{codesample2} | |
613 [hooks] | |
614 pretxnchangegroup.acl = python:hgext.acl.hook | |
615 \end{codesample2} | |
616 | |
617 The \hgext{acl} extension is configured using three sections. | |
618 | |
619 The \rcsection{acl} section has only one entry, \rcitem{acl}{sources}, | |
620 which lists the sources of incoming changesets that the hook should | |
621 pay attention to. You don't normally need to configure this section. | |
622 \begin{itemize} | |
623 \item[\rcitem{acl}{serve}] Control incoming changesets that are arriving | |
624 from a remote repository over http or ssh. This is the default | |
625 value of \rcitem{acl}{sources}, and usually the only setting you'll | |
626 need for this configuration item. | |
627 \item[\rcitem{acl}{pull}] Control incoming changesets that are | |
628 arriving via a pull from a local repository. | |
629 \item[\rcitem{acl}{push}] Control incoming changesets that are | |
630 arriving via a push from a local repository. | |
631 \item[\rcitem{acl}{bundle}] Control incoming changesets that are | |
632 arriving from another repository via a bundle. | |
633 \end{itemize} | |
634 | |
635 The \rcsection{acl.allow} section controls the users that are allowed to | |
636 add changesets to the repository. If this section is not present, all | |
637 users that are not explicitly denied are allowed. If this section is | |
638 present, all users that are not explicitly allowed are denied (so an | |
639 empty section means that all users are denied). | |
640 | |
641 The \rcsection{acl.deny} section determines which users are denied | |
642 from adding changesets to the repository. If this section is not | |
643 present or is empty, no users are denied. | |
644 | |
645 The syntaxes for the \rcsection{acl.allow} and \rcsection{acl.deny} | |
646 sections are identical. On the left of each entry is a glob pattern | |
647 that matches files or directories, relative to the root of the | |
648 repository; on the right, a user name. | |
649 | |
650 In the following example, the user \texttt{docwriter} can only push | |
651 changes to the \dirname{docs} subtree of the repository, while | |
652 \texttt{intern} can push changes to any file or directory except | |
653 \dirname{source/sensitive}. | |
654 \begin{codesample2} | |
655 [acl.allow] | |
656 docs/** = docwriter | |
657 | |
658 [acl.deny] | |
659 source/sensitive/** = intern | |
660 \end{codesample2} | |
661 | |
662 \subsubsection{Testing and troubleshooting} | |
663 | |
664 If you want to test the \hgext{acl} hook, run it with Mercurial's | |
665 debugging output enabled. Since you'll probably be running it on a | |
666 server where it's not convenient (or sometimes possible) to pass in | |
667 the \hggopt{--debug} option, don't forget that you can enable | |
668 debugging output in your \hgrc: | |
669 \begin{codesample2} | |
670 [ui] | |
671 debug = true | |
672 \end{codesample2} | |
673 With this enabled, the \hgext{acl} hook will print enough information | |
674 to let you figure out why it is allowing or forbidding pushes from | |
675 specific users. | |
676 | |
677 \subsection{\hgext{bugzilla}---integration with Bugzilla} | |
678 | |
679 The \hgext{bugzilla} extension adds a comment to a Bugzilla bug | |
680 whenever it finds a reference to that bug ID in a commit comment. You | |
681 can install this hook on a shared server, so that any time a remote | |
682 user pushes changes to this server, the hook gets run. | |
683 | |
684 It adds a comment to the bug that looks like this (you can configure | |
685 the contents of the comment---see below): | |
686 \begin{codesample2} | |
687 Changeset aad8b264143a, made by Joe User <joe.user@domain.com> in | |
688 the frobnitz repository, refers to this bug. | |
689 | |
690 For complete details, see | |
691 http://hg.domain.com/frobnitz?cmd=changeset;node=aad8b264143a | |
692 | |
693 Changeset description: | |
694 Fix bug 10483 by guarding against some NULL pointers | |
695 \end{codesample2} | |
696 The value of this hook is that it automates the process of updating a | |
697 bug any time a changeset refers to it. If you configure the hook | |
698 properly, it makes it easy for people to browse straight from a | |
699 Bugzilla bug to a changeset that refers to that bug. | |
700 | |
701 You can use the code in this hook as a starting point for some more | |
702 exotic Bugzilla integration recipes. Here are a few possibilities: | |
703 \begin{itemize} | |
704 \item Require that every changeset pushed to the server have a valid | |
705 bug~ID in its commit comment. In this case, you'd want to configure | |
706 the hook as a \hook{pretxncommit} hook. This would allow the hook | |
707 to reject changes that didn't contain bug IDs. | |
708 \item Allow incoming changesets to automatically modify the | |
709 \emph{state} of a bug, as well as simply adding a comment. For | |
710 example, the hook could recognise the string ``fixed bug 31337'' as | |
711 indicating that it should update the state of bug 31337 to | |
712 ``requires testing''. | |
713 \end{itemize} | |
714 | |
715 \subsubsection{Configuring the \hook{bugzilla} hook} | |
716 \label{sec:hook:bugzilla:config} | |
717 | |
718 You should configure this hook in your server's \hgrc\ as an | |
719 \hook{incoming} hook, for example as follows: | |
720 \begin{codesample2} | |
721 [hooks] | |
722 incoming.bugzilla = python:hgext.bugzilla.hook | |
723 \end{codesample2} | |
724 | |
725 Because of the specialised nature of this hook, and because Bugzilla | |
726 was not written with this kind of integration in mind, configuring | |
727 this hook is a somewhat involved process. | |
728 | |
729 Before you begin, you must install the MySQL bindings for Python on | |
730 the host(s) where you'll be running the hook. If this is not | |
731 available as a binary package for your system, you can download it | |
732 from~\cite{web:mysql-python}. | |
733 | |
734 Configuration information for this hook lives in the | |
735 \rcsection{bugzilla} section of your \hgrc. | |
736 \begin{itemize} | |
737 \item[\rcitem{bugzilla}{version}] The version of Bugzilla installed on | |
738 the server. The database schema that Bugzilla uses changes | |
739 occasionally, so this hook has to know exactly which schema to use. | |
740 At the moment, the only version supported is \texttt{2.16}. | |
741 \item[\rcitem{bugzilla}{host}] The hostname of the MySQL server that | |
742 stores your Bugzilla data. The database must be configured to allow | |
743 connections from whatever host you are running the \hook{bugzilla} | |
744 hook on. | |
745 \item[\rcitem{bugzilla}{user}] The username with which to connect to | |
746 the MySQL server. The database must be configured to allow this | |
747 user to connect from whatever host you are running the | |
748 \hook{bugzilla} hook on. This user must be able to access and | |
749 modify Bugzilla tables. The default value of this item is | |
750 \texttt{bugs}, which is the standard name of the Bugzilla user in a | |
751 MySQL database. | |
752 \item[\rcitem{bugzilla}{password}] The MySQL password for the user you | |
753 configured above. This is stored as plain text, so you should make | |
754 sure that unauthorised users cannot read the \hgrc\ file where you | |
755 store this information. | |
756 \item[\rcitem{bugzilla}{db}] The name of the Bugzilla database on the | |
757 MySQL server. The default value of this item is \texttt{bugs}, | |
758 which is the standard name of the MySQL database where Bugzilla | |
759 stores its data. | |
760 \item[\rcitem{bugzilla}{notify}] If you want Bugzilla to send out a | |
761 notification email to subscribers after this hook has added a | |
762 comment to a bug, you will need this hook to run a command whenever | |
763 it updates the database. The command to run depends on where you | |
764 have installed Bugzilla, but it will typically look something like | |
765 this, if you have Bugzilla installed in | |
766 \dirname{/var/www/html/bugzilla}: | |
767 \begin{codesample4} | |
768 cd /var/www/html/bugzilla && ./processmail %s nobody@nowhere.com | |
769 \end{codesample4} | |
770 The Bugzilla \texttt{processmail} program expects to be given a | |
771 bug~ID (the hook replaces ``\texttt{\%s}'' with the bug~ID) and an | |
772 email address. It also expects to be able to write to some files in | |
773 the directory that it runs in. If Bugzilla and this hook are not | |
774 installed on the same machine, you will need to find a way to run | |
775 \texttt{processmail} on the server where Bugzilla is installed. | |
776 \end{itemize} | |
777 | |
778 \subsubsection{Mapping committer names to Bugzilla user names} | |
779 | |
780 By default, the \hgext{bugzilla} hook tries to use the email address | |
781 of a changeset's committer as the Bugzilla user name with which to | |
782 update a bug. If this does not suit your needs, you can map committer | |
783 email addresses to Bugzilla user names using a \rcsection{usermap} | |
784 section. | |
785 | |
786 Each item in the \rcsection{usermap} section contains an email address | |
787 on the left, and a Bugzilla user name on the right. | |
788 \begin{codesample2} | |
789 [usermap] | |
790 jane.user@example.com = jane | |
791 \end{codesample2} | |
792 You can either keep the \rcsection{usermap} data in a normal \hgrc, or | |
793 tell the \hgext{bugzilla} hook to read the information from an | |
794 external \filename{usermap} file. In the latter case, you can store | |
795 \filename{usermap} data by itself in (for example) a user-modifiable | |
796 repository. This makes it possible to let your users maintain their | |
797 own \rcitem{bugzilla}{usermap} entries. The main \hgrc\ file might | |
798 look like this: | |
799 \begin{codesample2} | |
800 # regular hgrc file refers to external usermap file | |
801 [bugzilla] | |
802 usermap = /home/hg/repos/userdata/bugzilla-usermap.conf | |
803 \end{codesample2} | |
804 While the \filename{usermap} file that it refers to might look like | |
805 this: | |
806 \begin{codesample2} | |
807 # bugzilla-usermap.conf - inside a hg repository | |
808 [usermap] | |
809 stephanie@example.com = steph | |
810 \end{codesample2} | |
811 | |
812 \subsubsection{Configuring the text that gets added to a bug} | |
813 | |
814 You can configure the text that this hook adds as a comment; you | |
815 specify it in the form of a Mercurial template. Several \hgrc\ | |
816 entries (still in the \rcsection{bugzilla} section) control this | |
817 behaviour. | |
818 \begin{itemize} | |
819 \item[\texttt{strip}] The number of leading path elements to strip | |
820 from a repository's path name to construct a partial path for a URL. | |
821 For example, if the repositories on your server live under | |
822 \dirname{/home/hg/repos}, and you have a repository whose path is | |
823 \dirname{/home/hg/repos/app/tests}, then setting \texttt{strip} to | |
824 \texttt{4} will give a partial path of \dirname{app/tests}. The | |
825 hook will make this partial path available when expanding a | |
826 template, as \texttt{webroot}. | |
827 \item[\texttt{template}] The text of the template to use. In addition | |
828 to the usual changeset-related variables, this template can use | |
829 \texttt{hgweb} (the value of the \texttt{hgweb} configuration item | |
830 above) and \texttt{webroot} (the path constructed using | |
831 \texttt{strip} above). | |
832 \end{itemize} | |
833 | |
834 In addition, you can add a \rcitem{web}{baseurl} item to the | |
835 \rcsection{web} section of your \hgrc. The \hgext{bugzilla} hook will | |
836 make this available when expanding a template, as the base string to | |
837 use when constructing a URL that will let users browse from a Bugzilla | |
838 comment to view a changeset. Example: | |
839 \begin{codesample2} | |
840 [web] | |
841 baseurl = http://hg.domain.com/ | |
842 \end{codesample2} | |
843 | |
844 Here is an example set of \hgext{bugzilla} hook config information. | |
845 \begin{codesample2} | |
846 [bugzilla] | |
847 host = bugzilla.example.com | |
848 password = mypassword | |
849 version = 2.16 | |
850 # server-side repos live in /home/hg/repos, so strip 4 leading | |
851 # separators | |
852 strip = 4 | |
853 hgweb = http://hg.example.com/ | |
854 usermap = /home/hg/repos/notify/bugzilla.conf | |
855 template = Changeset \{node|short\}, made by \{author\} in the \{webroot\} | |
856 repo, refers to this bug.\\nFor complete details, see | |
857 \{hgweb\}\{webroot\}?cmd=changeset;node=\{node|short\}\\nChangeset | |
858 description:\\n\\t\{desc|tabindent\} | |
859 \end{codesample2} | |
860 | |
861 \subsubsection{Testing and troubleshooting} | |
862 | |
863 The most common problems with configuring the \hgext{bugzilla} hook | |
864 relate to running Bugzilla's \filename{processmail} script and mapping | |
865 committer names to user names. | |
866 | |
867 Recall from section~\ref{sec:hook:bugzilla:config} above that the user | |
868 that runs the Mercurial process on the server is also the one that | |
869 will run the \filename{processmail} script. The | |
870 \filename{processmail} script sometimes causes Bugzilla to write to | |
871 files in its configuration directory, and Bugzilla's configuration | |
872 files are usually owned by the user that your web server runs under. | |
873 | |
874 You can cause \filename{processmail} to be run with the suitable | |
875 user's identity using the \command{sudo} command. Here is an example | |
876 entry for a \filename{sudoers} file. | |
877 \begin{codesample2} | |
878 hg_user = (httpd_user) NOPASSWD: /var/www/html/bugzilla/processmail-wrapper %s | |
879 \end{codesample2} | |
880 This allows the \texttt{hg\_user} user to run a | |
881 \filename{processmail-wrapper} program under the identity of | |
882 \texttt{httpd\_user}. | |
883 | |
884 This indirection through a wrapper script is necessary, because | |
885 \filename{processmail} expects to be run with its current directory | |
886 set to wherever you installed Bugzilla; you can't specify that kind of | |
887 constraint in a \filename{sudoers} file. The contents of the wrapper | |
888 script are simple: | |
889 \begin{codesample2} | |
890 #!/bin/sh | |
891 cd `dirname $0` && ./processmail "$1" nobody@example.com | |
892 \end{codesample2} | |
893 It doesn't seem to matter what email address you pass to | |
894 \filename{processmail}. | |
895 | |
896 If your \rcsection{usermap} is not set up correctly, users will see an | |
897 error message from the \hgext{bugzilla} hook when they push changes | |
898 to the server. The error message will look like this: | |
899 \begin{codesample2} | |
900 cannot find bugzilla user id for john.q.public@example.com | |
901 \end{codesample2} | |
902 What this means is that the committer's address, | |
903 \texttt{john.q.public@example.com}, is not a valid Bugzilla user name, | |
904 nor does it have an entry in your \rcsection{usermap} that maps it to | |
905 a valid Bugzilla user name. | |
906 | |
907 \subsection{\hgext{notify}---send email notifications} | |
908 | |
909 Although Mercurial's built-in web server provides RSS feeds of changes | |
910 in every repository, many people prefer to receive change | |
911 notifications via email. The \hgext{notify} hook lets you send out | |
912 notifications to a set of email addresses whenever changesets arrive | |
913 that those subscribers are interested in. | |
914 | |
915 As with the \hgext{bugzilla} hook, the \hgext{notify} hook is | |
916 template-driven, so you can customise the contents of the notification | |
917 messages that it sends. | |
918 | |
919 By default, the \hgext{notify} hook includes a diff of every changeset | |
920 that it sends out; you can limit the size of the diff, or turn this | |
921 feature off entirely. It is useful for letting subscribers review | |
922 changes immediately, rather than clicking to follow a URL. | |
923 | |
924 \subsubsection{Configuring the \hgext{notify} hook} | |
925 | |
926 You can set up the \hgext{notify} hook to send one email message per | |
927 incoming changeset, or one per incoming group of changesets (all those | |
928 that arrived in a single pull or push). | |
929 \begin{codesample2} | |
930 [hooks] | |
931 # send one email per group of changes | |
932 changegroup.notify = python:hgext.notify.hook | |
933 # send one email per change | |
934 incoming.notify = python:hgext.notify.hook | |
935 \end{codesample2} | |
936 | |
937 Configuration information for this hook lives in the | |
938 \rcsection{notify} section of a \hgrc\ file. | |
939 \begin{itemize} | |
940 \item[\rcitem{notify}{test}] By default, this hook does not send out | |
941 email at all; instead, it prints the message that it \emph{would} | |
942 send. Set this item to \texttt{false} to allow email to be sent. | |
943 The reason that sending of email is turned off by default is that it | |
944 takes several tries to configure this extension exactly as you would | |
945 like, and it would be bad form to spam subscribers with a number of | |
946 ``broken'' notifications while you debug your configuration. | |
947 \item[\rcitem{notify}{config}] The path to a configuration file that | |
948 contains subscription information. This is kept separate from the | |
949 main \hgrc\ so that you can maintain it in a repository of its own. | |
950 People can then clone that repository, update their subscriptions, | |
951 and push the changes back to your server. | |
952 \item[\rcitem{notify}{strip}] The number of leading path separator | |
953 characters to strip from a repository's path, when deciding whether | |
954 a repository has subscribers. For example, if the repositories on | |
955 your server live in \dirname{/home/hg/repos}, and \hgext{notify} is | |
956 considering a repository named \dirname{/home/hg/repos/shared/test}, | |
957 setting \rcitem{notify}{strip} to \texttt{4} will cause | |
958 \hgext{notify} to trim the path it considers down to | |
959 \dirname{shared/test}, and it will match subscribers against that. | |
960 \item[\rcitem{notify}{template}] The template text to use when sending | |
961 messages. This specifies both the contents of the message header | |
962 and its body. | |
963 \item[\rcitem{notify}{maxdiff}] The maximum number of lines of diff | |
964 data to append to the end of a message. If a diff is longer than | |
965 this, it is truncated. By default, this is set to 300. Set this to | |
966 \texttt{0} to omit diffs from notification emails. | |
967 \item[\rcitem{notify}{sources}] A list of sources of changesets to | |
968 consider. This lets you limit \hgext{notify} to only sending out | |
969 email about changes that remote users pushed into this repository | |
970 via a server, for example. See section~\ref{sec:hook:sources} for | |
971 the sources you can specify here. | |
972 \end{itemize} | |
973 | |
974 If you set the \rcitem{web}{baseurl} item in the \rcsection{web} | |
975 section, you can use it in a template; it will be available as | |
976 \texttt{webroot}. | |
977 | |
978 Here is an example set of \hgext{notify} configuration information. | |
979 \begin{codesample2} | |
980 [notify] | |
981 # really send email | |
982 test = false | |
983 # subscriber data lives in the notify repo | |
984 config = /home/hg/repos/notify/notify.conf | |
985 # repos live in /home/hg/repos on server, so strip 4 "/" chars | |
986 strip = 4 | |
987 template = X-Hg-Repo: \{webroot\} | |
988 Subject: \{webroot\}: \{desc|firstline|strip\} | |
989 From: \{author\} | |
990 | |
991 changeset \{node|short\} in \{root\} | |
992 details: \{baseurl\}\{webroot\}?cmd=changeset;node=\{node|short\} | |
993 description: | |
994 \{desc|tabindent|strip\} | |
995 | |
996 [web] | |
997 baseurl = http://hg.example.com/ | |
998 \end{codesample2} | |
999 | |
1000 This will produce a message that looks like the following: | |
1001 \begin{codesample2} | |
1002 X-Hg-Repo: tests/slave | |
1003 Subject: tests/slave: Handle error case when slave has no buffers | |
1004 Date: Wed, 2 Aug 2006 15:25:46 -0700 (PDT) | |
1005 | |
1006 changeset 3cba9bfe74b5 in /home/hg/repos/tests/slave | |
1007 details: http://hg.example.com/tests/slave?cmd=changeset;node=3cba9bfe74b5 | |
1008 description: | |
1009 Handle error case when slave has no buffers | |
1010 diffs (54 lines): | |
1011 | |
1012 diff -r 9d95df7cf2ad -r 3cba9bfe74b5 include/tests.h | |
1013 --- a/include/tests.h Wed Aug 02 15:19:52 2006 -0700 | |
1014 +++ b/include/tests.h Wed Aug 02 15:25:26 2006 -0700 | |
1015 @@ -212,6 +212,15 @@ static __inline__ void test_headers(void *h) | |
1016 [...snip...] | |
1017 \end{codesample2} | |
1018 | |
1019 \subsubsection{Testing and troubleshooting} | |
1020 | |
1021 Do not forget that by default, the \hgext{notify} extension \emph{will | |
1022 not send any mail} until you explicitly configure it to do so, by | |
1023 setting \rcitem{notify}{test} to \texttt{false}. Until you do that, | |
1024 it simply prints the message it \emph{would} send. | |
1025 | |
1026 \section{Information for writers of hooks} | |
1027 \label{sec:hook:ref} | |
1028 | |
1029 \subsection{In-process hook execution} | |
1030 | |
1031 An in-process hook is called with arguments of the following form: | |
1032 \begin{codesample2} | |
1033 def myhook(ui, repo, **kwargs): | |
1034 pass | |
1035 \end{codesample2} | |
1036 The \texttt{ui} parameter is a \pymodclass{mercurial.ui}{ui} object. | |
1037 The \texttt{repo} parameter is a | |
1038 \pymodclass{mercurial.localrepo}{localrepository} object. The | |
1039 names and values of the \texttt{**kwargs} parameters depend on the | |
1040 hook being invoked, with the following common features: | |
1041 \begin{itemize} | |
1042 \item If a parameter is named \texttt{node} or | |
1043 \texttt{parent\emph{N}}, it will contain a hexadecimal changeset ID. | |
1044 The empty string is used to represent ``null changeset ID'' instead | |
1045 of a string of zeroes. | |
1046 \item If a parameter is named \texttt{url}, it will contain the URL of | |
1047 a remote repository, if that can be determined. | |
1048 \item Boolean-valued parameters are represented as Python | |
1049 \texttt{bool} objects. | |
1050 \end{itemize} | |
1051 | |
1052 An in-process hook is called without a change to the process's working | |
1053 directory (unlike external hooks, which are run in the root of the | |
1054 repository). It must not change the process's working directory, or | |
1055 it will cause any calls it makes into the Mercurial API to fail. | |
1056 | |
1057 If a hook returns a boolean ``false'' value, it is considered to have | |
1058 succeeded. If it returns a boolean ``true'' value or raises an | |
1059 exception, it is considered to have failed. A useful way to think of | |
1060 the calling convention is ``tell me if you fail''. | |
1061 | |
1062 Note that changeset IDs are passed into Python hooks as hexadecimal | |
1063 strings, not the binary hashes that Mercurial's APIs normally use. To | |
1064 convert a hash from hex to binary, use the | |
1065 \pymodfunc{mercurial.node}{bin} function. | |
1066 | |
1067 \subsection{External hook execution} | |
1068 | |
1069 An external hook is passed to the shell of the user running Mercurial. | |
1070 Features of that shell, such as variable substitution and command | |
1071 redirection, are available. The hook is run in the root directory of | |
1072 the repository (unlike in-process hooks, which are run in the same | |
1073 directory that Mercurial was run in). | |
1074 | |
1075 Hook parameters are passed to the hook as environment variables. Each | |
1076 environment variable's name is converted in upper case and prefixed | |
1077 with the string ``\texttt{HG\_}''. For example, if the name of a | |
1078 parameter is ``\texttt{node}'', the name of the environment variable | |
1079 representing that parameter will be ``\texttt{HG\_NODE}''. | |
1080 | |
1081 A boolean parameter is represented as the string ``\texttt{1}'' for | |
1082 ``true'', ``\texttt{0}'' for ``false''. If an environment variable is | |
1083 named \envar{HG\_NODE}, \envar{HG\_PARENT1} or \envar{HG\_PARENT2}, it | |
1084 contains a changeset ID represented as a hexadecimal string. The | |
1085 empty string is used to represent ``null changeset ID'' instead of a | |
1086 string of zeroes. If an environment variable is named | |
1087 \envar{HG\_URL}, it will contain the URL of a remote repository, if | |
1088 that can be determined. | |
1089 | |
1090 If a hook exits with a status of zero, it is considered to have | |
1091 succeeded. If it exits with a non-zero status, it is considered to | |
1092 have failed. | |
1093 | |
1094 \subsection{Finding out where changesets come from} | |
1095 | |
1096 A hook that involves the transfer of changesets between a local | |
1097 repository and another may be able to find out information about the | |
1098 ``far side''. Mercurial knows \emph{how} changes are being | |
1099 transferred, and in many cases \emph{where} they are being transferred | |
1100 to or from. | |
1101 | |
1102 \subsubsection{Sources of changesets} | |
1103 \label{sec:hook:sources} | |
1104 | |
1105 Mercurial will tell a hook what means are, or were, used to transfer | |
1106 changesets between repositories. This is provided by Mercurial in a | |
1107 Python parameter named \texttt{source}, or an environment variable named | |
1108 \envar{HG\_SOURCE}. | |
1109 | |
1110 \begin{itemize} | |
1111 \item[\texttt{serve}] Changesets are transferred to or from a remote | |
1112 repository over http or ssh. | |
1113 \item[\texttt{pull}] Changesets are being transferred via a pull from | |
1114 one repository into another. | |
1115 \item[\texttt{push}] Changesets are being transferred via a push from | |
1116 one repository into another. | |
1117 \item[\texttt{bundle}] Changesets are being transferred to or from a | |
1118 bundle. | |
1119 \end{itemize} | |
1120 | |
1121 \subsubsection{Where changes are going---remote repository URLs} | |
1122 \label{sec:hook:url} | |
1123 | |
1124 When possible, Mercurial will tell a hook the location of the ``far | |
1125 side'' of an activity that transfers changeset data between | |
1126 repositories. This is provided by Mercurial in a Python parameter | |
1127 named \texttt{url}, or an environment variable named \envar{HG\_URL}. | |
1128 | |
1129 This information is not always known. If a hook is invoked in a | |
1130 repository that is being served via http or ssh, Mercurial cannot tell | |
1131 where the remote repository is, but it may know where the client is | |
1132 connecting from. In such cases, the URL will take one of the | |
1133 following forms: | |
1134 \begin{itemize} | |
1135 \item \texttt{remote:ssh:\emph{ip-address}}---remote ssh client, at | |
1136 the given IP address. | |
1137 \item \texttt{remote:http:\emph{ip-address}}---remote http client, at | |
1138 the given IP address. If the client is using SSL, this will be of | |
1139 the form \texttt{remote:https:\emph{ip-address}}. | |
1140 \item Empty---no information could be discovered about the remote | |
1141 client. | |
1142 \end{itemize} | |
1143 | |
1144 \section{Hook reference} | |
1145 | |
1146 \subsection{\hook{changegroup}---after remote changesets added} | |
1147 \label{sec:hook:changegroup} | |
1148 | |
1149 This hook is run after a group of pre-existing changesets has been | |
1150 added to the repository, for example via a \hgcmd{pull} or | |
1151 \hgcmd{unbundle}. This hook is run once per operation that added one | |
1152 or more changesets. This is in contrast to the \hook{incoming} hook, | |
1153 which is run once per changeset, regardless of whether the changesets | |
1154 arrive in a group. | |
1155 | |
1156 Some possible uses for this hook include kicking off an automated | |
1157 build or test of the added changesets, updating a bug database, or | |
1158 notifying subscribers that a repository contains new changes. | |
1159 | |
1160 Parameters to this hook: | |
1161 \begin{itemize} | |
1162 \item[\texttt{node}] A changeset ID. The changeset ID of the first | |
1163 changeset in the group that was added. All changesets between this | |
1164 and \index{tags!\texttt{tip}}\texttt{tip}, inclusive, were added by | |
1165 a single \hgcmd{pull}, \hgcmd{push} or \hgcmd{unbundle}. | |
1166 \item[\texttt{source}] A string. The source of these changes. See | |
1167 section~\ref{sec:hook:sources} for details. | |
1168 \item[\texttt{url}] A URL. The location of the remote repository, if | |
1169 known. See section~\ref{sec:hook:url} for more information. | |
1170 \end{itemize} | |
1171 | |
1172 See also: \hook{incoming} (section~\ref{sec:hook:incoming}), | |
1173 \hook{prechangegroup} (section~\ref{sec:hook:prechangegroup}), | |
1174 \hook{pretxnchangegroup} (section~\ref{sec:hook:pretxnchangegroup}) | |
1175 | |
1176 \subsection{\hook{commit}---after a new changeset is created} | |
1177 \label{sec:hook:commit} | |
1178 | |
1179 This hook is run after a new changeset has been created. | |
1180 | |
1181 Parameters to this hook: | |
1182 \begin{itemize} | |
1183 \item[\texttt{node}] A changeset ID. The changeset ID of the newly | |
1184 committed changeset. | |
1185 \item[\texttt{parent1}] A changeset ID. The changeset ID of the first | |
1186 parent of the newly committed changeset. | |
1187 \item[\texttt{parent2}] A changeset ID. The changeset ID of the second | |
1188 parent of the newly committed changeset. | |
1189 \end{itemize} | |
1190 | |
1191 See also: \hook{precommit} (section~\ref{sec:hook:precommit}), | |
1192 \hook{pretxncommit} (section~\ref{sec:hook:pretxncommit}) | |
1193 | |
1194 \subsection{\hook{incoming}---after one remote changeset is added} | |
1195 \label{sec:hook:incoming} | |
1196 | |
1197 This hook is run after a pre-existing changeset has been added to the | |
1198 repository, for example via a \hgcmd{push}. If a group of changesets | |
1199 was added in a single operation, this hook is called once for each | |
1200 added changeset. | |
1201 | |
1202 You can use this hook for the same purposes as the \hook{changegroup} | |
1203 hook (section~\ref{sec:hook:changegroup}); it's simply more convenient | |
1204 sometimes to run a hook once per group of changesets, while other | |
1205 times it's handier once per changeset. | |
1206 | |
1207 Parameters to this hook: | |
1208 \begin{itemize} | |
1209 \item[\texttt{node}] A changeset ID. The ID of the newly added | |
1210 changeset. | |
1211 \item[\texttt{source}] A string. The source of these changes. See | |
1212 section~\ref{sec:hook:sources} for details. | |
1213 \item[\texttt{url}] A URL. The location of the remote repository, if | |
1214 known. See section~\ref{sec:hook:url} for more information. | |
1215 \end{itemize} | |
1216 | |
1217 See also: \hook{changegroup} (section~\ref{sec:hook:changegroup}) \hook{prechangegroup} (section~\ref{sec:hook:prechangegroup}), \hook{pretxnchangegroup} (section~\ref{sec:hook:pretxnchangegroup}) | |
1218 | |
1219 \subsection{\hook{outgoing}---after changesets are propagated} | |
1220 \label{sec:hook:outgoing} | |
1221 | |
1222 This hook is run after a group of changesets has been propagated out | |
1223 of this repository, for example by a \hgcmd{push} or \hgcmd{bundle} | |
1224 command. | |
1225 | |
1226 One possible use for this hook is to notify administrators that | |
1227 changes have been pulled. | |
1228 | |
1229 Parameters to this hook: | |
1230 \begin{itemize} | |
1231 \item[\texttt{node}] A changeset ID. The changeset ID of the first | |
1232 changeset of the group that was sent. | |
1233 \item[\texttt{source}] A string. The source of the of the operation | |
1234 (see section~\ref{sec:hook:sources}). If a remote client pulled | |
1235 changes from this repository, \texttt{source} will be | |
1236 \texttt{serve}. If the client that obtained changes from this | |
1237 repository was local, \texttt{source} will be \texttt{bundle}, | |
1238 \texttt{pull}, or \texttt{push}, depending on the operation the | |
1239 client performed. | |
1240 \item[\texttt{url}] A URL. The location of the remote repository, if | |
1241 known. See section~\ref{sec:hook:url} for more information. | |
1242 \end{itemize} | |
1243 | |
1244 See also: \hook{preoutgoing} (section~\ref{sec:hook:preoutgoing}) | |
1245 | |
1246 \subsection{\hook{prechangegroup}---before starting to add remote changesets} | |
1247 \label{sec:hook:prechangegroup} | |
1248 | |
1249 This controlling hook is run before Mercurial begins to add a group of | |
1250 changesets from another repository. | |
1251 | |
1252 This hook does not have any information about the changesets to be | |
1253 added, because it is run before transmission of those changesets is | |
1254 allowed to begin. If this hook fails, the changesets will not be | |
1255 transmitted. | |
1256 | |
1257 One use for this hook is to prevent external changes from being added | |
1258 to a repository. For example, you could use this to ``freeze'' a | |
1259 server-hosted branch temporarily or permanently so that users cannot | |
1260 push to it, while still allowing a local administrator to modify the | |
1261 repository. | |
1262 | |
1263 Parameters to this hook: | |
1264 \begin{itemize} | |
1265 \item[\texttt{source}] A string. The source of these changes. See | |
1266 section~\ref{sec:hook:sources} for details. | |
1267 \item[\texttt{url}] A URL. The location of the remote repository, if | |
1268 known. See section~\ref{sec:hook:url} for more information. | |
1269 \end{itemize} | |
1270 | |
1271 See also: \hook{changegroup} (section~\ref{sec:hook:changegroup}), | |
1272 \hook{incoming} (section~\ref{sec:hook:incoming}), , | |
1273 \hook{pretxnchangegroup} (section~\ref{sec:hook:pretxnchangegroup}) | |
1274 | |
1275 \subsection{\hook{precommit}---before starting to commit a changeset} | |
1276 \label{sec:hook:precommit} | |
1277 | |
1278 This hook is run before Mercurial begins to commit a new changeset. | |
1279 It is run before Mercurial has any of the metadata for the commit, | |
1280 such as the files to be committed, the commit message, or the commit | |
1281 date. | |
1282 | |
1283 One use for this hook is to disable the ability to commit new | |
1284 changesets, while still allowing incoming changesets. Another is to | |
1285 run a build or test, and only allow the commit to begin if the build | |
1286 or test succeeds. | |
1287 | |
1288 Parameters to this hook: | |
1289 \begin{itemize} | |
1290 \item[\texttt{parent1}] A changeset ID. The changeset ID of the first | |
1291 parent of the working directory. | |
1292 \item[\texttt{parent2}] A changeset ID. The changeset ID of the second | |
1293 parent of the working directory. | |
1294 \end{itemize} | |
1295 If the commit proceeds, the parents of the working directory will | |
1296 become the parents of the new changeset. | |
1297 | |
1298 See also: \hook{commit} (section~\ref{sec:hook:commit}), | |
1299 \hook{pretxncommit} (section~\ref{sec:hook:pretxncommit}) | |
1300 | |
1301 \subsection{\hook{preoutgoing}---before starting to propagate changesets} | |
1302 \label{sec:hook:preoutgoing} | |
1303 | |
1304 This hook is invoked before Mercurial knows the identities of the | |
1305 changesets to be transmitted. | |
1306 | |
1307 One use for this hook is to prevent changes from being transmitted to | |
1308 another repository. | |
1309 | |
1310 Parameters to this hook: | |
1311 \begin{itemize} | |
1312 \item[\texttt{source}] A string. The source of the operation that is | |
1313 attempting to obtain changes from this repository (see | |
1314 section~\ref{sec:hook:sources}). See the documentation for the | |
1315 \texttt{source} parameter to the \hook{outgoing} hook, in | |
1316 section~\ref{sec:hook:outgoing}, for possible values of this | |
1317 parameter. | |
1318 \item[\texttt{url}] A URL. The location of the remote repository, if | |
1319 known. See section~\ref{sec:hook:url} for more information. | |
1320 \end{itemize} | |
1321 | |
1322 See also: \hook{outgoing} (section~\ref{sec:hook:outgoing}) | |
1323 | |
1324 \subsection{\hook{pretag}---before tagging a changeset} | |
1325 \label{sec:hook:pretag} | |
1326 | |
1327 This controlling hook is run before a tag is created. If the hook | |
1328 succeeds, creation of the tag proceeds. If the hook fails, the tag is | |
1329 not created. | |
1330 | |
1331 Parameters to this hook: | |
1332 \begin{itemize} | |
1333 \item[\texttt{local}] A boolean. Whether the tag is local to this | |
1334 repository instance (i.e.~stored in \sfilename{.hg/localtags}) or | |
1335 managed by Mercurial (stored in \sfilename{.hgtags}). | |
1336 \item[\texttt{node}] A changeset ID. The ID of the changeset to be tagged. | |
1337 \item[\texttt{tag}] A string. The name of the tag to be created. | |
1338 \end{itemize} | |
1339 | |
1340 If the tag to be created is revision-controlled, the \hook{precommit} | |
1341 and \hook{pretxncommit} hooks (sections~\ref{sec:hook:commit} | |
1342 and~\ref{sec:hook:pretxncommit}) will also be run. | |
1343 | |
1344 See also: \hook{tag} (section~\ref{sec:hook:tag}) | |
1345 | |
1346 \subsection{\hook{pretxnchangegroup}---before completing addition of | |
1347 remote changesets} | |
1348 \label{sec:hook:pretxnchangegroup} | |
1349 | |
1350 This controlling hook is run before a transaction---that manages the | |
1351 addition of a group of new changesets from outside the | |
1352 repository---completes. If the hook succeeds, the transaction | |
1353 completes, and all of the changesets become permanent within this | |
1354 repository. If the hook fails, the transaction is rolled back, and | |
1355 the data for the changesets is erased. | |
1356 | |
1357 This hook can access the metadata associated with the almost-added | |
1358 changesets, but it should not do anything permanent with this data. | |
1359 It must also not modify the working directory. | |
1360 | |
1361 While this hook is running, if other Mercurial processes access this | |
1362 repository, they will be able to see the almost-added changesets as if | |
1363 they are permanent. This may lead to race conditions if you do not | |
1364 take steps to avoid them. | |
1365 | |
1366 This hook can be used to automatically vet a group of changesets. If | |
1367 the hook fails, all of the changesets are ``rejected'' when the | |
1368 transaction rolls back. | |
1369 | |
1370 Parameters to this hook: | |
1371 \begin{itemize} | |
1372 \item[\texttt{node}] A changeset ID. The changeset ID of the first | |
1373 changeset in the group that was added. All changesets between this | |
1374 and \index{tags!\texttt{tip}}\texttt{tip}, inclusive, were added by | |
1375 a single \hgcmd{pull}, \hgcmd{push} or \hgcmd{unbundle}. | |
1376 \item[\texttt{source}] A string. The source of these changes. See | |
1377 section~\ref{sec:hook:sources} for details. | |
1378 \item[\texttt{url}] A URL. The location of the remote repository, if | |
1379 known. See section~\ref{sec:hook:url} for more information. | |
1380 \end{itemize} | |
1381 | |
1382 See also: \hook{changegroup} (section~\ref{sec:hook:changegroup}), | |
1383 \hook{incoming} (section~\ref{sec:hook:incoming}), | |
1384 \hook{prechangegroup} (section~\ref{sec:hook:prechangegroup}) | |
1385 | |
1386 \subsection{\hook{pretxncommit}---before completing commit of new changeset} | |
1387 \label{sec:hook:pretxncommit} | |
1388 | |
1389 This controlling hook is run before a transaction---that manages a new | |
1390 commit---completes. If the hook succeeds, the transaction completes | |
1391 and the changeset becomes permanent within this repository. If the | |
1392 hook fails, the transaction is rolled back, and the commit data is | |
1393 erased. | |
1394 | |
1395 This hook can access the metadata associated with the almost-new | |
1396 changeset, but it should not do anything permanent with this data. It | |
1397 must also not modify the working directory. | |
1398 | |
1399 While this hook is running, if other Mercurial processes access this | |
1400 repository, they will be able to see the almost-new changeset as if it | |
1401 is permanent. This may lead to race conditions if you do not take | |
1402 steps to avoid them. | |
1403 | |
1404 Parameters to this hook: | |
1405 \begin{itemize} | |
1406 \item[\texttt{node}] A changeset ID. The changeset ID of the newly | |
1407 committed changeset. | |
1408 \item[\texttt{parent1}] A changeset ID. The changeset ID of the first | |
1409 parent of the newly committed changeset. | |
1410 \item[\texttt{parent2}] A changeset ID. The changeset ID of the second | |
1411 parent of the newly committed changeset. | |
1412 \end{itemize} | |
1413 | |
1414 See also: \hook{precommit} (section~\ref{sec:hook:precommit}) | |
1415 | |
1416 \subsection{\hook{preupdate}---before updating or merging working directory} | |
1417 \label{sec:hook:preupdate} | |
1418 | |
1419 This controlling hook is run before an update or merge of the working | |
1420 directory begins. It is run only if Mercurial's normal pre-update | |
1421 checks determine that the update or merge can proceed. If the hook | |
1422 succeeds, the update or merge may proceed; if it fails, the update or | |
1423 merge does not start. | |
1424 | |
1425 Parameters to this hook: | |
1426 \begin{itemize} | |
1427 \item[\texttt{parent1}] A changeset ID. The ID of the parent that the | |
1428 working directory is to be updated to. If the working directory is | |
1429 being merged, it will not change this parent. | |
1430 \item[\texttt{parent2}] A changeset ID. Only set if the working | |
1431 directory is being merged. The ID of the revision that the working | |
1432 directory is being merged with. | |
1433 \end{itemize} | |
1434 | |
1435 See also: \hook{update} (section~\ref{sec:hook:update}) | |
1436 | |
1437 \subsection{\hook{tag}---after tagging a changeset} | |
1438 \label{sec:hook:tag} | |
1439 | |
1440 This hook is run after a tag has been created. | |
1441 | |
1442 Parameters to this hook: | |
1443 \begin{itemize} | |
1444 \item[\texttt{local}] A boolean. Whether the new tag is local to this | |
1445 repository instance (i.e.~stored in \sfilename{.hg/localtags}) or | |
1446 managed by Mercurial (stored in \sfilename{.hgtags}). | |
1447 \item[\texttt{node}] A changeset ID. The ID of the changeset that was | |
1448 tagged. | |
1449 \item[\texttt{tag}] A string. The name of the tag that was created. | |
1450 \end{itemize} | |
1451 | |
1452 If the created tag is revision-controlled, the \hook{commit} hook | |
1453 (section~\ref{sec:hook:commit}) is run before this hook. | |
1454 | |
1455 See also: \hook{pretag} (section~\ref{sec:hook:pretag}) | |
1456 | |
1457 \subsection{\hook{update}---after updating or merging working directory} | |
1458 \label{sec:hook:update} | |
1459 | |
1460 This hook is run after an update or merge of the working directory | |
1461 completes. Since a merge can fail (if the external \command{hgmerge} | |
1462 command fails to resolve conflicts in a file), this hook communicates | |
1463 whether the update or merge completed cleanly. | |
1464 | |
1465 \begin{itemize} | |
1466 \item[\texttt{error}] A boolean. Indicates whether the update or | |
1467 merge completed successfully. | |
1468 \item[\texttt{parent1}] A changeset ID. The ID of the parent that the | |
1469 working directory was updated to. If the working directory was | |
1470 merged, it will not have changed this parent. | |
1471 \item[\texttt{parent2}] A changeset ID. Only set if the working | |
1472 directory was merged. The ID of the revision that the working | |
1473 directory was merged with. | |
1474 \end{itemize} | |
1475 | |
1476 See also: \hook{preupdate} (section~\ref{sec:hook:preupdate}) | |
1477 | |
1478 %%% Local Variables: | |
1479 %%% mode: latex | |
1480 %%% TeX-master: "00book" | |
1481 %%% End: |