gtl-parsley-ruby 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (299) hide show
  1. data/CHANGELOG +3 -0
  2. data/README +32 -0
  3. data/Rakefile +57 -0
  4. data/VERSION +1 -0
  5. data/ext/cparsley.c +152 -0
  6. data/ext/extconf.rb +82 -0
  7. data/ext/parsley/.gitignore +32 -0
  8. data/ext/parsley/AUTHORS +1 -0
  9. data/ext/parsley/ChangeLog +0 -0
  10. data/ext/parsley/HACKING +4 -0
  11. data/ext/parsley/INSTALL +73 -0
  12. data/ext/parsley/INTRO +84 -0
  13. data/ext/parsley/Makefile.am +80 -0
  14. data/ext/parsley/Makefile.in +1009 -0
  15. data/ext/parsley/NEWS +0 -0
  16. data/ext/parsley/PAPER +36 -0
  17. data/ext/parsley/Portfile +18 -0
  18. data/ext/parsley/Portfile.in +17 -0
  19. data/ext/parsley/README.C-LANG +92 -0
  20. data/ext/parsley/README.markdown +1 -0
  21. data/ext/parsley/TODO +39 -0
  22. data/ext/parsley/VERSION +1 -0
  23. data/ext/parsley/aclocal.m4 +8918 -0
  24. data/ext/parsley/bootstrap.sh +6 -0
  25. data/ext/parsley/config.guess +1561 -0
  26. data/ext/parsley/config.sub +1686 -0
  27. data/ext/parsley/configure +13437 -0
  28. data/ext/parsley/configure.ac +46 -0
  29. data/ext/parsley/depcomp +630 -0
  30. data/ext/parsley/functions.c +368 -0
  31. data/ext/parsley/functions.h +19 -0
  32. data/ext/parsley/generate_bisect.sh +12 -0
  33. data/ext/parsley/hooks/prepare-commit-msg +16 -0
  34. data/ext/parsley/install-sh +520 -0
  35. data/ext/parsley/json-c-0.9/AUTHORS +2 -0
  36. data/ext/parsley/json-c-0.9/COPYING +19 -0
  37. data/ext/parsley/json-c-0.9/ChangeLog +103 -0
  38. data/ext/parsley/json-c-0.9/INSTALL +302 -0
  39. data/ext/parsley/json-c-0.9/Makefile.am +43 -0
  40. data/ext/parsley/json-c-0.9/Makefile.in +800 -0
  41. data/ext/parsley/json-c-0.9/NEWS +1 -0
  42. data/ext/parsley/json-c-0.9/README +20 -0
  43. data/ext/parsley/json-c-0.9/README-WIN32.html +57 -0
  44. data/ext/parsley/json-c-0.9/README.html +32 -0
  45. data/ext/parsley/json-c-0.9/aclocal.m4 +8909 -0
  46. data/ext/parsley/json-c-0.9/arraylist.c +94 -0
  47. data/ext/parsley/json-c-0.9/arraylist.h +53 -0
  48. data/ext/parsley/json-c-0.9/bits.h +27 -0
  49. data/ext/parsley/json-c-0.9/config.guess +1561 -0
  50. data/ext/parsley/json-c-0.9/config.h +125 -0
  51. data/ext/parsley/json-c-0.9/config.h.in +124 -0
  52. data/ext/parsley/json-c-0.9/config.h.win32 +94 -0
  53. data/ext/parsley/json-c-0.9/config.sub +1686 -0
  54. data/ext/parsley/json-c-0.9/configure +13084 -0
  55. data/ext/parsley/json-c-0.9/configure.in +33 -0
  56. data/ext/parsley/json-c-0.9/debug.c +98 -0
  57. data/ext/parsley/json-c-0.9/debug.h +50 -0
  58. data/ext/parsley/json-c-0.9/depcomp +630 -0
  59. data/ext/parsley/json-c-0.9/doc/html/annotated.html +40 -0
  60. data/ext/parsley/json-c-0.9/doc/html/arraylist_8h.html +240 -0
  61. data/ext/parsley/json-c-0.9/doc/html/bits_8h.html +150 -0
  62. data/ext/parsley/json-c-0.9/doc/html/classes.html +36 -0
  63. data/ext/parsley/json-c-0.9/doc/html/config_8h.html +612 -0
  64. data/ext/parsley/json-c-0.9/doc/html/debug_8h.html +392 -0
  65. data/ext/parsley/json-c-0.9/doc/html/doxygen.css +441 -0
  66. data/ext/parsley/json-c-0.9/doc/html/doxygen.png +0 -0
  67. data/ext/parsley/json-c-0.9/doc/html/files.html +42 -0
  68. data/ext/parsley/json-c-0.9/doc/html/functions.html +206 -0
  69. data/ext/parsley/json-c-0.9/doc/html/functions_vars.html +206 -0
  70. data/ext/parsley/json-c-0.9/doc/html/globals.html +459 -0
  71. data/ext/parsley/json-c-0.9/doc/html/globals_defs.html +202 -0
  72. data/ext/parsley/json-c-0.9/doc/html/globals_enum.html +50 -0
  73. data/ext/parsley/json-c-0.9/doc/html/globals_eval.html +135 -0
  74. data/ext/parsley/json-c-0.9/doc/html/globals_func.html +194 -0
  75. data/ext/parsley/json-c-0.9/doc/html/globals_type.html +70 -0
  76. data/ext/parsley/json-c-0.9/doc/html/globals_vars.html +50 -0
  77. data/ext/parsley/json-c-0.9/doc/html/index.html +25 -0
  78. data/ext/parsley/json-c-0.9/doc/html/json_8h.html +32 -0
  79. data/ext/parsley/json-c-0.9/doc/html/json__object_8h.html +1150 -0
  80. data/ext/parsley/json-c-0.9/doc/html/json__object__private_8h.html +75 -0
  81. data/ext/parsley/json-c-0.9/doc/html/json__tokener_8h.html +366 -0
  82. data/ext/parsley/json-c-0.9/doc/html/json__util_8h.html +106 -0
  83. data/ext/parsley/json-c-0.9/doc/html/linkhash_8h.html +740 -0
  84. data/ext/parsley/json-c-0.9/doc/html/printbuf_8h.html +214 -0
  85. data/ext/parsley/json-c-0.9/doc/html/structarray__list.html +104 -0
  86. data/ext/parsley/json-c-0.9/doc/html/structjson__object.html +141 -0
  87. data/ext/parsley/json-c-0.9/doc/html/structjson__object__iter.html +87 -0
  88. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener.html +206 -0
  89. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener__srec.html +104 -0
  90. data/ext/parsley/json-c-0.9/doc/html/structlh__entry.html +105 -0
  91. data/ext/parsley/json-c-0.9/doc/html/structlh__table.html +275 -0
  92. data/ext/parsley/json-c-0.9/doc/html/structprintbuf.html +87 -0
  93. data/ext/parsley/json-c-0.9/doc/html/tab_b.gif +0 -0
  94. data/ext/parsley/json-c-0.9/doc/html/tab_l.gif +0 -0
  95. data/ext/parsley/json-c-0.9/doc/html/tab_r.gif +0 -0
  96. data/ext/parsley/json-c-0.9/doc/html/tabs.css +105 -0
  97. data/ext/parsley/json-c-0.9/doc/html/unionjson__object_1_1data.html +140 -0
  98. data/ext/parsley/json-c-0.9/install-sh +520 -0
  99. data/ext/parsley/json-c-0.9/json.h +31 -0
  100. data/ext/parsley/json-c-0.9/json.pc +11 -0
  101. data/ext/parsley/json-c-0.9/json.pc.in +11 -0
  102. data/ext/parsley/json-c-0.9/json_object.c +512 -0
  103. data/ext/parsley/json-c-0.9/json_object.h +319 -0
  104. data/ext/parsley/json-c-0.9/json_object_private.h +52 -0
  105. data/ext/parsley/json-c-0.9/json_tokener.c +628 -0
  106. data/ext/parsley/json-c-0.9/json_tokener.h +98 -0
  107. data/ext/parsley/json-c-0.9/json_util.c +122 -0
  108. data/ext/parsley/json-c-0.9/json_util.h +31 -0
  109. data/ext/parsley/json-c-0.9/libjson.la +41 -0
  110. data/ext/parsley/json-c-0.9/libtool +8890 -0
  111. data/ext/parsley/json-c-0.9/linkhash.c +216 -0
  112. data/ext/parsley/json-c-0.9/linkhash.h +272 -0
  113. data/ext/parsley/json-c-0.9/ltmain.sh +8406 -0
  114. data/ext/parsley/json-c-0.9/missing +376 -0
  115. data/ext/parsley/json-c-0.9/printbuf.c +149 -0
  116. data/ext/parsley/json-c-0.9/printbuf.h +64 -0
  117. data/ext/parsley/json-c-0.9/stamp-h1 +1 -0
  118. data/ext/parsley/json-c-0.9/test1 +130 -0
  119. data/ext/parsley/json-c-0.9/test1.c +164 -0
  120. data/ext/parsley/json-c-0.9/test2 +130 -0
  121. data/ext/parsley/json-c-0.9/test2.c +20 -0
  122. data/ext/parsley/json-c-0.9/test3 +130 -0
  123. data/ext/parsley/json-c-0.9/test3.c +23 -0
  124. data/ext/parsley/libtool +8890 -0
  125. data/ext/parsley/ltmain.sh +8406 -0
  126. data/ext/parsley/missing +376 -0
  127. data/ext/parsley/parsed_xpath.c +168 -0
  128. data/ext/parsley/parsed_xpath.h +34 -0
  129. data/ext/parsley/parser.y +631 -0
  130. data/ext/parsley/parsley.c +793 -0
  131. data/ext/parsley/parsley.h +87 -0
  132. data/ext/parsley/parsley_main.c +185 -0
  133. data/ext/parsley/parsleyc_main.c +108 -0
  134. data/ext/parsley/regexp.c +359 -0
  135. data/ext/parsley/regexp.h +36 -0
  136. data/ext/parsley/scanner.l +221 -0
  137. data/ext/parsley/test/ambiguous.html +207 -0
  138. data/ext/parsley/test/ambiguous.json +1 -0
  139. data/ext/parsley/test/ambiguous.let +6 -0
  140. data/ext/parsley/test/array-regression.html +5 -0
  141. data/ext/parsley/test/array-regression.json +1 -0
  142. data/ext/parsley/test/array-regression.let +10 -0
  143. data/ext/parsley/test/backslash.html +5 -0
  144. data/ext/parsley/test/backslash.json +1 -0
  145. data/ext/parsley/test/backslash.let +3 -0
  146. data/ext/parsley/test/bang.html +17 -0
  147. data/ext/parsley/test/bang.json +1 -0
  148. data/ext/parsley/test/bang.let +6 -0
  149. data/ext/parsley/test/collate_regression.html +324 -0
  150. data/ext/parsley/test/collate_regression.json +1 -0
  151. data/ext/parsley/test/collate_regression.let +9 -0
  152. data/ext/parsley/test/contains.html +3 -0
  153. data/ext/parsley/test/contains.json +1 -0
  154. data/ext/parsley/test/contains.let +3 -0
  155. data/ext/parsley/test/content.html +13 -0
  156. data/ext/parsley/test/content.json +1 -0
  157. data/ext/parsley/test/content.let +7 -0
  158. data/ext/parsley/test/cool.html +575 -0
  159. data/ext/parsley/test/cool.json +1 -0
  160. data/ext/parsley/test/cool.let +9 -0
  161. data/ext/parsley/test/craigs-simple.html +207 -0
  162. data/ext/parsley/test/craigs-simple.json +1 -0
  163. data/ext/parsley/test/craigs-simple.let +6 -0
  164. data/ext/parsley/test/craigs.html +207 -0
  165. data/ext/parsley/test/craigs.json +1 -0
  166. data/ext/parsley/test/craigs.let +9 -0
  167. data/ext/parsley/test/crash.html +157 -0
  168. data/ext/parsley/test/crash.json +1 -0
  169. data/ext/parsley/test/crash.let +1 -0
  170. data/ext/parsley/test/css_attr.html +3 -0
  171. data/ext/parsley/test/css_attr.json +1 -0
  172. data/ext/parsley/test/css_attr.let +3 -0
  173. data/ext/parsley/test/default-namespace.json +1 -0
  174. data/ext/parsley/test/default-namespace.let +3 -0
  175. data/ext/parsley/test/default-namespace.xml +1493 -0
  176. data/ext/parsley/test/div.html +8 -0
  177. data/ext/parsley/test/div.json +1 -0
  178. data/ext/parsley/test/div.let +10 -0
  179. data/ext/parsley/test/empty.html +3 -0
  180. data/ext/parsley/test/empty.json +1 -0
  181. data/ext/parsley/test/empty.let +1 -0
  182. data/ext/parsley/test/emptyish.html +207 -0
  183. data/ext/parsley/test/emptyish.let +3 -0
  184. data/ext/parsley/test/fictional-opt.html +43 -0
  185. data/ext/parsley/test/fictional-opt.json +1 -0
  186. data/ext/parsley/test/fictional-opt.let +14 -0
  187. data/ext/parsley/test/fictional.html +43 -0
  188. data/ext/parsley/test/fictional.json +1 -0
  189. data/ext/parsley/test/fictional.let +14 -0
  190. data/ext/parsley/test/function-magic.html +9 -0
  191. data/ext/parsley/test/function-magic.json +1 -0
  192. data/ext/parsley/test/function-magic.let +8 -0
  193. data/ext/parsley/test/hn.html +32 -0
  194. data/ext/parsley/test/hn.json +1 -0
  195. data/ext/parsley/test/hn.let +8 -0
  196. data/ext/parsley/test/malformed-array.html +2329 -0
  197. data/ext/parsley/test/malformed-array.json +1 -0
  198. data/ext/parsley/test/malformed-array.let +22 -0
  199. data/ext/parsley/test/malformed-expr.html +2329 -0
  200. data/ext/parsley/test/malformed-expr.json +1 -0
  201. data/ext/parsley/test/malformed-expr.let +16 -0
  202. data/ext/parsley/test/malformed-function.html +845 -0
  203. data/ext/parsley/test/malformed-function.json +197 -0
  204. data/ext/parsley/test/malformed-function.let +8 -0
  205. data/ext/parsley/test/malformed-json.html +2329 -0
  206. data/ext/parsley/test/malformed-json.json +1 -0
  207. data/ext/parsley/test/malformed-json.let +6 -0
  208. data/ext/parsley/test/malformed-xpath.html +8 -0
  209. data/ext/parsley/test/malformed-xpath.json +1 -0
  210. data/ext/parsley/test/malformed-xpath.let +7 -0
  211. data/ext/parsley/test/match.json +1 -0
  212. data/ext/parsley/test/match.let +9 -0
  213. data/ext/parsley/test/match.xml +11 -0
  214. data/ext/parsley/test/math_ambiguity.html +9 -0
  215. data/ext/parsley/test/math_ambiguity.json +1 -0
  216. data/ext/parsley/test/math_ambiguity.let +5 -0
  217. data/ext/parsley/test/nth-regression.html +13 -0
  218. data/ext/parsley/test/nth-regression.json +1 -0
  219. data/ext/parsley/test/nth-regression.let +3 -0
  220. data/ext/parsley/test/optional.html +2328 -0
  221. data/ext/parsley/test/optional.json +1 -0
  222. data/ext/parsley/test/optional.let +8 -0
  223. data/ext/parsley/test/outer-xml.html +6 -0
  224. data/ext/parsley/test/outer-xml.json +1 -0
  225. data/ext/parsley/test/outer-xml.let +5 -0
  226. data/ext/parsley/test/position.html +8 -0
  227. data/ext/parsley/test/position.json +1 -0
  228. data/ext/parsley/test/position.let +6 -0
  229. data/ext/parsley/test/question_regressions.html +443 -0
  230. data/ext/parsley/test/question_regressions.json +1 -0
  231. data/ext/parsley/test/question_regressions.let +6 -0
  232. data/ext/parsley/test/quote.json +1 -0
  233. data/ext/parsley/test/quote.let +8 -0
  234. data/ext/parsley/test/quote.xml +11 -0
  235. data/ext/parsley/test/reddit.html +1 -0
  236. data/ext/parsley/test/reddit.json +1 -0
  237. data/ext/parsley/test/reddit.let +12 -0
  238. data/ext/parsley/test/remote-fail.json +1 -0
  239. data/ext/parsley/test/remote.html +3 -0
  240. data/ext/parsley/test/remote.json +1 -0
  241. data/ext/parsley/test/remote.let +4 -0
  242. data/ext/parsley/test/replace.json +1 -0
  243. data/ext/parsley/test/replace.let +9 -0
  244. data/ext/parsley/test/replace.xml +11 -0
  245. data/ext/parsley/test/scope.html +10 -0
  246. data/ext/parsley/test/scope.json +1 -0
  247. data/ext/parsley/test/scope.let +6 -0
  248. data/ext/parsley/test/segfault.html +5 -0
  249. data/ext/parsley/test/segfault.json +1 -0
  250. data/ext/parsley/test/segfault.let +9 -0
  251. data/ext/parsley/test/sg-wrap.html +5 -0
  252. data/ext/parsley/test/sg-wrap.json +1 -0
  253. data/ext/parsley/test/sg-wrap.let +3 -0
  254. data/ext/parsley/test/sg_off.html +5 -0
  255. data/ext/parsley/test/sg_off.json +1 -0
  256. data/ext/parsley/test/sg_off.let +3 -0
  257. data/ext/parsley/test/test.json +1 -0
  258. data/ext/parsley/test/test.let +6 -0
  259. data/ext/parsley/test/test.xml +11 -0
  260. data/ext/parsley/test/trivial.html +2329 -0
  261. data/ext/parsley/test/trivial.json +1 -0
  262. data/ext/parsley/test/trivial.let +4 -0
  263. data/ext/parsley/test/trivial2.html +2329 -0
  264. data/ext/parsley/test/trivial2.json +1 -0
  265. data/ext/parsley/test/trivial2.let +7 -0
  266. data/ext/parsley/test/unbang.html +17 -0
  267. data/ext/parsley/test/unbang.json +1 -0
  268. data/ext/parsley/test/unbang.let +6 -0
  269. data/ext/parsley/test/unicode.html +3 -0
  270. data/ext/parsley/test/unicode.json +1 -0
  271. data/ext/parsley/test/unicode.let +1 -0
  272. data/ext/parsley/test/whitespace.html +8 -0
  273. data/ext/parsley/test/whitespace.json +1 -0
  274. data/ext/parsley/test/whitespace.let +3 -0
  275. data/ext/parsley/test/whitespace_regression.html +4 -0
  276. data/ext/parsley/test/whitespace_regression.json +1 -0
  277. data/ext/parsley/test/whitespace_regression.let +3 -0
  278. data/ext/parsley/test/yelp-benchmark.rb +53 -0
  279. data/ext/parsley/test/yelp-home.html +1004 -0
  280. data/ext/parsley/test/yelp-home.json +1 -0
  281. data/ext/parsley/test/yelp-home.let +6 -0
  282. data/ext/parsley/test/yelp.html +2329 -0
  283. data/ext/parsley/test/yelp.json +1 -0
  284. data/ext/parsley/test/yelp.let +12 -0
  285. data/ext/parsley/test/youtube.html +1940 -0
  286. data/ext/parsley/test/youtube.let +11 -0
  287. data/ext/parsley/util.c +237 -0
  288. data/ext/parsley/util.h +34 -0
  289. data/ext/parsley/xml2json.c +47 -0
  290. data/ext/parsley/xml2json.h +14 -0
  291. data/ext/parsley/y.tab.h +222 -0
  292. data/ext/parsley/ylwrap +222 -0
  293. data/lib/parsley.rb +84 -0
  294. data/test/test_parsley.rb +120 -0
  295. data/test/yelp-benchmark.rb +53 -0
  296. data/test/yelp-home.html +1004 -0
  297. data/test/yelp-home.let +6 -0
  298. data/test/yelp.html +2329 -0
  299. metadata +366 -0
@@ -0,0 +1,368 @@
1
+ #include <stdbool.h>
2
+ #include <libxml/xpath.h>
3
+ #include <libxml/xpathInternals.h>
4
+ #include <libxml/parserInternals.h>
5
+ #include <libxml/uri.h>
6
+ #include <libxml/xpointer.h>
7
+ #include <libxml/xinclude.h>
8
+ #include <libxml/HTMLparser.h>
9
+ #include <libxml/HTMLtree.h>
10
+ #include <libxslt/xslt.h>
11
+ #include <libxslt/imports.h>
12
+ #include <libxslt/xsltInternals.h>
13
+ #include <libxslt/security.h>
14
+ #include <libxslt/xsltutils.h>
15
+ #include <libxslt/transform.h>
16
+ #include <libxslt/extensions.h>
17
+ #include <libxslt/documents.h>
18
+ #include "functions.h"
19
+
20
+
21
+ void parsley_register_all(){
22
+ xsltRegisterExtModuleFunction ((const xmlChar *) "html-document", "http://parselets.com/stdlib",
23
+ xsltHtmlDocumentFunction);
24
+ xsltRegisterExtModuleFunction ((const xmlChar *) "outer-xml", "http://parselets.com/stdlib",
25
+ xsltOuterXmlFunction);
26
+ xsltRegisterExtModuleFunction ((const xmlChar *) "inner-xml", "http://parselets.com/stdlib",
27
+ xsltInnerXmlFunction);
28
+ }
29
+
30
+ static void
31
+ xsltStarXMLFunction(xmlXPathParserContextPtr ctxt, int nargs, bool is_inner) {
32
+ if (nargs != 1) {
33
+ xsltTransformError(xsltXPathGetTransformContext(ctxt), NULL, NULL,
34
+ "outer-xml() : invalid number of args %d\n",
35
+ nargs);
36
+ ctxt->error = XPATH_INVALID_ARITY;
37
+ return;
38
+ }
39
+ if (ctxt->value->type == XPATH_NODESET) {
40
+ xmlXPathObjectPtr obj, newobj;
41
+
42
+ obj = valuePop(ctxt);
43
+
44
+ xmlBufferPtr buf = xmlBufferCreate();
45
+ int n = obj->nodesetval->nodeNr;
46
+ for(int i = 0; i < n; i++) {
47
+ xmlNodePtr node = obj->nodesetval->nodeTab[i];
48
+ xmlDocPtr doc = node->doc;
49
+ if(is_inner){
50
+ xmlNodePtr child = node->children;
51
+ while(child != NULL) {
52
+ xmlNodeDump(buf, doc, child, 0, 0);
53
+ child = child->next;
54
+ }
55
+ } else {
56
+ xmlNodeDump(buf, doc, node, 0, 0);
57
+ }
58
+ }
59
+ newobj = xmlXPathNewCString(xmlBufferContent(buf));
60
+ xmlBufferFree(buf);
61
+ valuePush(ctxt, newobj);
62
+ }
63
+ }
64
+
65
+ void
66
+ xsltInnerXmlFunction(xmlXPathParserContextPtr ctxt, int nargs) {
67
+ xsltStarXMLFunction(ctxt, nargs, true);
68
+ }
69
+
70
+ void
71
+ xsltOuterXmlFunction(xmlXPathParserContextPtr ctxt, int nargs) {
72
+ xsltStarXMLFunction(ctxt, nargs, false);
73
+ }
74
+
75
+ void
76
+ xsltHtmlDocumentFunction(xmlXPathParserContextPtr ctxt, int nargs)
77
+ {
78
+ xmlXPathObjectPtr obj, obj2 = NULL;
79
+ xmlChar *base = NULL, *URI;
80
+
81
+
82
+ if ((nargs < 1) || (nargs > 2)) {
83
+ xsltTransformError(xsltXPathGetTransformContext(ctxt), NULL, NULL,
84
+ "document() : invalid number of args %d\n",
85
+ nargs);
86
+ ctxt->error = XPATH_INVALID_ARITY;
87
+ return;
88
+ }
89
+ if (ctxt->value == NULL) {
90
+ xsltTransformError(xsltXPathGetTransformContext(ctxt), NULL, NULL,
91
+ "document() : invalid arg value\n");
92
+ ctxt->error = XPATH_INVALID_TYPE;
93
+ return;
94
+ }
95
+
96
+ if (nargs == 2) {
97
+ if (ctxt->value->type != XPATH_NODESET) {
98
+ xsltTransformError(xsltXPathGetTransformContext(ctxt), NULL, NULL,
99
+ "document() : invalid arg expecting a nodeset\n");
100
+ ctxt->error = XPATH_INVALID_TYPE;
101
+ return;
102
+ }
103
+
104
+ obj2 = valuePop(ctxt);
105
+ }
106
+
107
+ if (ctxt->value->type == XPATH_NODESET) {
108
+ int i;
109
+ xmlXPathObjectPtr newobj, ret;
110
+
111
+ obj = valuePop(ctxt);
112
+ ret = xmlXPathNewNodeSet(NULL);
113
+
114
+ if (obj->nodesetval) {
115
+ for (i = 0; i < obj->nodesetval->nodeNr; i++) {
116
+ valuePush(ctxt,
117
+ xmlXPathNewNodeSet(obj->nodesetval->nodeTab[i]));
118
+ xmlXPathStringFunction(ctxt, 1);
119
+ if (nargs == 2) {
120
+ valuePush(ctxt, xmlXPathObjectCopy(obj2));
121
+ } else {
122
+ valuePush(ctxt,
123
+ xmlXPathNewNodeSet(obj->nodesetval->
124
+ nodeTab[i]));
125
+ }
126
+ xsltHtmlDocumentFunction(ctxt, 2);
127
+ newobj = valuePop(ctxt);
128
+ ret->nodesetval = xmlXPathNodeSetMerge(ret->nodesetval,
129
+ newobj->nodesetval);
130
+ xmlXPathFreeObject(newobj);
131
+ }
132
+ }
133
+
134
+ xmlXPathFreeObject(obj);
135
+ if (obj2 != NULL)
136
+ xmlXPathFreeObject(obj2);
137
+ valuePush(ctxt, ret);
138
+ return;
139
+ }
140
+ /*
141
+ * Make sure it's converted to a string
142
+ */
143
+ xmlXPathStringFunction(ctxt, 1);
144
+ if (ctxt->value->type != XPATH_STRING) {
145
+ xsltTransformError(xsltXPathGetTransformContext(ctxt), NULL, NULL,
146
+ "document() : invalid arg expecting a string\n");
147
+ ctxt->error = XPATH_INVALID_TYPE;
148
+ if (obj2 != NULL)
149
+ xmlXPathFreeObject(obj2);
150
+ return;
151
+ }
152
+ obj = valuePop(ctxt);
153
+ if (obj->stringval == NULL) {
154
+ valuePush(ctxt, xmlXPathNewNodeSet(NULL));
155
+ } else {
156
+ if ((obj2 != NULL) && (obj2->nodesetval != NULL) &&
157
+ (obj2->nodesetval->nodeNr > 0) &&
158
+ IS_XSLT_REAL_NODE(obj2->nodesetval->nodeTab[0])) {
159
+ xmlNodePtr target;
160
+
161
+ target = obj2->nodesetval->nodeTab[0];
162
+ if ((target->type == XML_ATTRIBUTE_NODE) ||
163
+ (target->type == XML_PI_NODE)) {
164
+ target = ((xmlAttrPtr) target)->parent;
165
+ }
166
+ base = xmlNodeGetBase(target->doc, target);
167
+ } else {
168
+ xsltTransformContextPtr tctxt;
169
+
170
+ tctxt = xsltXPathGetTransformContext(ctxt);
171
+ if ((tctxt != NULL) && (tctxt->inst != NULL)) {
172
+ base = xmlNodeGetBase(tctxt->inst->doc, tctxt->inst);
173
+ } else if ((tctxt != NULL) && (tctxt->style != NULL) &&
174
+ (tctxt->style->doc != NULL)) {
175
+ base = xmlNodeGetBase(tctxt->style->doc,
176
+ (xmlNodePtr) tctxt->style->doc);
177
+ }
178
+ }
179
+ URI = xmlBuildURI(obj->stringval, base);
180
+ if (base != NULL)
181
+ xmlFree(base);
182
+ if (URI == NULL) {
183
+ valuePush(ctxt, xmlXPathNewNodeSet(NULL));
184
+ } else {
185
+ xsltHtmlDocumentFunctionLoadDocument( ctxt, URI );
186
+ xmlFree(URI);
187
+ }
188
+ }
189
+ xmlXPathFreeObject(obj);
190
+ if (obj2 != NULL)
191
+ xmlXPathFreeObject(obj2);
192
+ }
193
+
194
+ static void
195
+ xsltHtmlDocumentFunctionLoadDocument(xmlXPathParserContextPtr ctxt, xmlChar* URI)
196
+ {
197
+ xsltTransformContextPtr tctxt;
198
+ xmlURIPtr uri;
199
+ xmlChar *fragment;
200
+ xsltDocumentPtr idoc; /* document info */
201
+ xmlDocPtr doc;
202
+ xmlXPathContextPtr xptrctxt = NULL;
203
+ xmlXPathObjectPtr resObj = NULL;
204
+
205
+ tctxt = xsltXPathGetTransformContext(ctxt);
206
+ if (tctxt == NULL) {
207
+ xsltTransformError(NULL, NULL, NULL,
208
+ "document() : internal error tctxt == NULL\n");
209
+ valuePush(ctxt, xmlXPathNewNodeSet(NULL));
210
+ return;
211
+ }
212
+
213
+ uri = xmlParseURI((const char *) URI);
214
+ if (uri == NULL) {
215
+ xsltTransformError(tctxt, NULL, NULL,
216
+ "document() : failed to parse URI\n");
217
+ valuePush(ctxt, xmlXPathNewNodeSet(NULL));
218
+ return;
219
+ }
220
+
221
+ /*
222
+ * check for and remove fragment identifier
223
+ */
224
+ fragment = (xmlChar *)uri->fragment;
225
+ if (fragment != NULL) {
226
+ xmlChar *newURI;
227
+ uri->fragment = NULL;
228
+ newURI = xmlSaveUri(uri);
229
+ idoc = xsltLoadHtmlDocument(tctxt, newURI);
230
+ xmlFree(newURI);
231
+ } else
232
+ idoc = xsltLoadHtmlDocument(tctxt, URI);
233
+ xmlFreeURI(uri);
234
+
235
+ if (idoc == NULL) {
236
+ if ((URI == NULL) ||
237
+ (URI[0] == '#') ||
238
+ ((tctxt->style->doc != NULL) &&
239
+ (xmlStrEqual(tctxt->style->doc->URL, URI))))
240
+ {
241
+ /*
242
+ * This selects the stylesheet's doc itself.
243
+ */
244
+ doc = tctxt->style->doc;
245
+ } else {
246
+ valuePush(ctxt, xmlXPathNewNodeSet(NULL));
247
+
248
+ if (fragment != NULL)
249
+ xmlFree(fragment);
250
+
251
+ return;
252
+ }
253
+ } else
254
+ doc = idoc->doc;
255
+
256
+ if (fragment == NULL) {
257
+ valuePush(ctxt, xmlXPathNewNodeSet((xmlNodePtr) doc));
258
+ return;
259
+ }
260
+
261
+ /* use XPointer of HTML location for fragment ID */
262
+ #ifdef LIBXML_XPTR_ENABLED
263
+ xptrctxt = xmlXPtrNewContext(doc, NULL, NULL);
264
+ if (xptrctxt == NULL) {
265
+ xsltTransformError(tctxt, NULL, NULL,
266
+ "document() : internal error xptrctxt == NULL\n");
267
+ goto out_fragment;
268
+ }
269
+
270
+ resObj = xmlXPtrEval(fragment, xptrctxt);
271
+ xmlXPathFreeContext(xptrctxt);
272
+ #endif
273
+ xmlFree(fragment);
274
+
275
+ if (resObj == NULL)
276
+ goto out_fragment;
277
+
278
+ switch (resObj->type) {
279
+ case XPATH_NODESET:
280
+ break;
281
+ case XPATH_UNDEFINED:
282
+ case XPATH_BOOLEAN:
283
+ case XPATH_NUMBER:
284
+ case XPATH_STRING:
285
+ case XPATH_POINT:
286
+ case XPATH_USERS:
287
+ case XPATH_XSLT_TREE:
288
+ case XPATH_RANGE:
289
+ case XPATH_LOCATIONSET:
290
+ xsltTransformError(tctxt, NULL, NULL,
291
+ "document() : XPointer does not select a node set: #%s\n",
292
+ fragment);
293
+ goto out_object;
294
+ }
295
+
296
+ valuePush(ctxt, resObj);
297
+ return;
298
+
299
+ out_object:
300
+ xmlXPathFreeObject(resObj);
301
+
302
+ out_fragment:
303
+ valuePush(ctxt, xmlXPathNewNodeSet(NULL));
304
+ }
305
+
306
+ xsltDocumentPtr
307
+ xsltLoadHtmlDocument(xsltTransformContextPtr ctxt, const xmlChar *URI) {
308
+ xsltDocumentPtr ret;
309
+ xmlDocPtr doc;
310
+
311
+ if ((ctxt == NULL) || (URI == NULL))
312
+ return(NULL);
313
+
314
+ /*
315
+ * Security framework check
316
+ */
317
+ if (ctxt->sec != NULL) {
318
+ int res;
319
+
320
+ res = xsltCheckRead(ctxt->sec, ctxt, URI);
321
+ if (res == 0) {
322
+ xsltTransformError(ctxt, NULL, NULL,
323
+ "xsltLoadHtmlDocument: read rights for %s denied\n",
324
+ URI);
325
+ return(NULL);
326
+ }
327
+ }
328
+
329
+ /*
330
+ * Walk the context list to find the document if preparsed
331
+ */
332
+ ret = ctxt->docList;
333
+ while (ret != NULL) {
334
+ if ((ret->doc != NULL) && (ret->doc->URL != NULL) &&
335
+ (xmlStrEqual(ret->doc->URL, URI)))
336
+ return(ret);
337
+ ret = ret->next;
338
+ }
339
+
340
+ doc = htmlReadFile(URI, NULL, ctxt->parserOptions | HTML_PARSE_RECOVER | HTML_PARSE_NOERROR |HTML_PARSE_NOWARNING);
341
+
342
+ if (doc == NULL)
343
+ return(NULL);
344
+
345
+ if (ctxt->xinclude != 0) {
346
+ #ifdef LIBXML_XINCLUDE_ENABLED
347
+ #if LIBXML_VERSION >= 20603
348
+ xmlXIncludeProcessFlags(doc, ctxt->parserOptions);
349
+ #else
350
+ xmlXIncludeProcess(doc);
351
+ #endif
352
+ #else
353
+ xsltTransformError(ctxt, NULL, NULL,
354
+ "xsltLoadHtmlDocument(%s) : XInclude processing not compiled in\n",
355
+ URI);
356
+ #endif
357
+ }
358
+ /*
359
+ * Apply white-space stripping if asked for
360
+ */
361
+ if (xsltNeedElemSpaceHandling(ctxt))
362
+ xsltApplyStripSpaces(ctxt, xmlDocGetRootElement(doc));
363
+ if (ctxt->debugStatus == XSLT_DEBUG_NONE)
364
+ xmlXPathOrderDocElems(doc);
365
+
366
+ ret = xsltNewDocument(ctxt, doc);
367
+ return(ret);
368
+ }
@@ -0,0 +1,19 @@
1
+ #ifndef PARSLEY_FUNCTIONS_H_INCLUDED
2
+ #define PARSLEY_FUNCTIONS_H_INCLUDED
3
+
4
+ #include <libxml/xpath.h>
5
+ #include <libxml/HTMLparser.h>
6
+ #include <libxslt/xslt.h>
7
+ #include <libxslt/xsltInternals.h>
8
+ #include <libxslt/transform.h>
9
+ #include <libxslt/documents.h>
10
+
11
+ void parsley_register_all();
12
+
13
+ static void xsltHtmlDocumentFunction(xmlXPathParserContextPtr, int);
14
+ static void xsltHtmlDocumentFunctionLoadDocument(xmlXPathParserContextPtr, xmlChar*);
15
+ static void xsltInnerXmlFunction(xmlXPathParserContextPtr ctxt, int nargs);
16
+ static void xsltOuterXmlFunction(xmlXPathParserContextPtr ctxt, int nargs);
17
+ xsltDocumentPtr xsltLoadHtmlDocument(xsltTransformContextPtr, const xmlChar *);
18
+
19
+ #endif
@@ -0,0 +1,12 @@
1
+ #!/bin/sh
2
+ if [ -z "$1" ]; then
3
+ echo "Usage: $0 TEST_PREFIX"
4
+ exit
5
+ fi
6
+ cat /dev/null > /tmp/bisect.sh
7
+ chmod +x /tmp/bisect.sh
8
+ cp "test/$1".* /tmp || exit
9
+ echo "make && ./parsley /tmp/$1.let /tmp/$1.html 2>&1 | diff /tmp/$1.json -" >> /tmp/bisect.sh
10
+ cat /tmp/bisect.sh
11
+ echo "-------------"
12
+ echo "git bisect run /tmp/bisect.sh"
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # I use this to track performance regressions in my commit messages. To
4
+ # use, copy or symlink into .git/hooks.
5
+ #
6
+ message = File.read(ARGV[0]).strip
7
+ require "benchmark"
8
+ File.open(ARGV[0], "w") do |file|
9
+ ROOT = File.dirname(__FILE__) + "/../../"
10
+ system "cd #{ROOT} && make check"
11
+ status = $?.success? ? "passing" : "failing"
12
+ time = Benchmark.measure {
13
+ system "cd #{ROOT} && make bench && make bench && make bench"
14
+ }.real
15
+ file.printf "%s (%s) [%4f]", message, status, time
16
+ end
@@ -0,0 +1,520 @@
1
+ #!/bin/sh
2
+ # install - install a program, script, or datafile
3
+
4
+ scriptversion=2009-04-28.21; # UTC
5
+
6
+ # This originates from X11R5 (mit/util/scripts/install.sh), which was
7
+ # later released in X11R6 (xc/config/util/install.sh) with the
8
+ # following copyright and license.
9
+ #
10
+ # Copyright (C) 1994 X Consortium
11
+ #
12
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ # of this software and associated documentation files (the "Software"), to
14
+ # deal in the Software without restriction, including without limitation the
15
+ # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
16
+ # sell copies of the Software, and to permit persons to whom the Software is
17
+ # furnished to do so, subject to the following conditions:
18
+ #
19
+ # The above copyright notice and this permission notice shall be included in
20
+ # all copies or substantial portions of the Software.
21
+ #
22
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
26
+ # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
27
+ # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
+ #
29
+ # Except as contained in this notice, the name of the X Consortium shall not
30
+ # be used in advertising or otherwise to promote the sale, use or other deal-
31
+ # ings in this Software without prior written authorization from the X Consor-
32
+ # tium.
33
+ #
34
+ #
35
+ # FSF changes to this file are in the public domain.
36
+ #
37
+ # Calling this script install-sh is preferred over install.sh, to prevent
38
+ # `make' implicit rules from creating a file called install from it
39
+ # when there is no Makefile.
40
+ #
41
+ # This script is compatible with the BSD install script, but was written
42
+ # from scratch.
43
+
44
+ nl='
45
+ '
46
+ IFS=" "" $nl"
47
+
48
+ # set DOITPROG to echo to test this script
49
+
50
+ # Don't use :- since 4.3BSD and earlier shells don't like it.
51
+ doit=${DOITPROG-}
52
+ if test -z "$doit"; then
53
+ doit_exec=exec
54
+ else
55
+ doit_exec=$doit
56
+ fi
57
+
58
+ # Put in absolute file names if you don't have them in your path;
59
+ # or use environment vars.
60
+
61
+ chgrpprog=${CHGRPPROG-chgrp}
62
+ chmodprog=${CHMODPROG-chmod}
63
+ chownprog=${CHOWNPROG-chown}
64
+ cmpprog=${CMPPROG-cmp}
65
+ cpprog=${CPPROG-cp}
66
+ mkdirprog=${MKDIRPROG-mkdir}
67
+ mvprog=${MVPROG-mv}
68
+ rmprog=${RMPROG-rm}
69
+ stripprog=${STRIPPROG-strip}
70
+
71
+ posix_glob='?'
72
+ initialize_posix_glob='
73
+ test "$posix_glob" != "?" || {
74
+ if (set -f) 2>/dev/null; then
75
+ posix_glob=
76
+ else
77
+ posix_glob=:
78
+ fi
79
+ }
80
+ '
81
+
82
+ posix_mkdir=
83
+
84
+ # Desired mode of installed file.
85
+ mode=0755
86
+
87
+ chgrpcmd=
88
+ chmodcmd=$chmodprog
89
+ chowncmd=
90
+ mvcmd=$mvprog
91
+ rmcmd="$rmprog -f"
92
+ stripcmd=
93
+
94
+ src=
95
+ dst=
96
+ dir_arg=
97
+ dst_arg=
98
+
99
+ copy_on_change=false
100
+ no_target_directory=
101
+
102
+ usage="\
103
+ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
104
+ or: $0 [OPTION]... SRCFILES... DIRECTORY
105
+ or: $0 [OPTION]... -t DIRECTORY SRCFILES...
106
+ or: $0 [OPTION]... -d DIRECTORIES...
107
+
108
+ In the 1st form, copy SRCFILE to DSTFILE.
109
+ In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
110
+ In the 4th, create DIRECTORIES.
111
+
112
+ Options:
113
+ --help display this help and exit.
114
+ --version display version info and exit.
115
+
116
+ -c (ignored)
117
+ -C install only if different (preserve the last data modification time)
118
+ -d create directories instead of installing files.
119
+ -g GROUP $chgrpprog installed files to GROUP.
120
+ -m MODE $chmodprog installed files to MODE.
121
+ -o USER $chownprog installed files to USER.
122
+ -s $stripprog installed files.
123
+ -t DIRECTORY install into DIRECTORY.
124
+ -T report an error if DSTFILE is a directory.
125
+
126
+ Environment variables override the default commands:
127
+ CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
128
+ RMPROG STRIPPROG
129
+ "
130
+
131
+ while test $# -ne 0; do
132
+ case $1 in
133
+ -c) ;;
134
+
135
+ -C) copy_on_change=true;;
136
+
137
+ -d) dir_arg=true;;
138
+
139
+ -g) chgrpcmd="$chgrpprog $2"
140
+ shift;;
141
+
142
+ --help) echo "$usage"; exit $?;;
143
+
144
+ -m) mode=$2
145
+ case $mode in
146
+ *' '* | *' '* | *'
147
+ '* | *'*'* | *'?'* | *'['*)
148
+ echo "$0: invalid mode: $mode" >&2
149
+ exit 1;;
150
+ esac
151
+ shift;;
152
+
153
+ -o) chowncmd="$chownprog $2"
154
+ shift;;
155
+
156
+ -s) stripcmd=$stripprog;;
157
+
158
+ -t) dst_arg=$2
159
+ shift;;
160
+
161
+ -T) no_target_directory=true;;
162
+
163
+ --version) echo "$0 $scriptversion"; exit $?;;
164
+
165
+ --) shift
166
+ break;;
167
+
168
+ -*) echo "$0: invalid option: $1" >&2
169
+ exit 1;;
170
+
171
+ *) break;;
172
+ esac
173
+ shift
174
+ done
175
+
176
+ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
177
+ # When -d is used, all remaining arguments are directories to create.
178
+ # When -t is used, the destination is already specified.
179
+ # Otherwise, the last argument is the destination. Remove it from $@.
180
+ for arg
181
+ do
182
+ if test -n "$dst_arg"; then
183
+ # $@ is not empty: it contains at least $arg.
184
+ set fnord "$@" "$dst_arg"
185
+ shift # fnord
186
+ fi
187
+ shift # arg
188
+ dst_arg=$arg
189
+ done
190
+ fi
191
+
192
+ if test $# -eq 0; then
193
+ if test -z "$dir_arg"; then
194
+ echo "$0: no input file specified." >&2
195
+ exit 1
196
+ fi
197
+ # It's OK to call `install-sh -d' without argument.
198
+ # This can happen when creating conditional directories.
199
+ exit 0
200
+ fi
201
+
202
+ if test -z "$dir_arg"; then
203
+ trap '(exit $?); exit' 1 2 13 15
204
+
205
+ # Set umask so as not to create temps with too-generous modes.
206
+ # However, 'strip' requires both read and write access to temps.
207
+ case $mode in
208
+ # Optimize common cases.
209
+ *644) cp_umask=133;;
210
+ *755) cp_umask=22;;
211
+
212
+ *[0-7])
213
+ if test -z "$stripcmd"; then
214
+ u_plus_rw=
215
+ else
216
+ u_plus_rw='% 200'
217
+ fi
218
+ cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
219
+ *)
220
+ if test -z "$stripcmd"; then
221
+ u_plus_rw=
222
+ else
223
+ u_plus_rw=,u+rw
224
+ fi
225
+ cp_umask=$mode$u_plus_rw;;
226
+ esac
227
+ fi
228
+
229
+ for src
230
+ do
231
+ # Protect names starting with `-'.
232
+ case $src in
233
+ -*) src=./$src;;
234
+ esac
235
+
236
+ if test -n "$dir_arg"; then
237
+ dst=$src
238
+ dstdir=$dst
239
+ test -d "$dstdir"
240
+ dstdir_status=$?
241
+ else
242
+
243
+ # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
244
+ # might cause directories to be created, which would be especially bad
245
+ # if $src (and thus $dsttmp) contains '*'.
246
+ if test ! -f "$src" && test ! -d "$src"; then
247
+ echo "$0: $src does not exist." >&2
248
+ exit 1
249
+ fi
250
+
251
+ if test -z "$dst_arg"; then
252
+ echo "$0: no destination specified." >&2
253
+ exit 1
254
+ fi
255
+
256
+ dst=$dst_arg
257
+ # Protect names starting with `-'.
258
+ case $dst in
259
+ -*) dst=./$dst;;
260
+ esac
261
+
262
+ # If destination is a directory, append the input filename; won't work
263
+ # if double slashes aren't ignored.
264
+ if test -d "$dst"; then
265
+ if test -n "$no_target_directory"; then
266
+ echo "$0: $dst_arg: Is a directory" >&2
267
+ exit 1
268
+ fi
269
+ dstdir=$dst
270
+ dst=$dstdir/`basename "$src"`
271
+ dstdir_status=0
272
+ else
273
+ # Prefer dirname, but fall back on a substitute if dirname fails.
274
+ dstdir=`
275
+ (dirname "$dst") 2>/dev/null ||
276
+ expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
277
+ X"$dst" : 'X\(//\)[^/]' \| \
278
+ X"$dst" : 'X\(//\)$' \| \
279
+ X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
280
+ echo X"$dst" |
281
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
282
+ s//\1/
283
+ q
284
+ }
285
+ /^X\(\/\/\)[^/].*/{
286
+ s//\1/
287
+ q
288
+ }
289
+ /^X\(\/\/\)$/{
290
+ s//\1/
291
+ q
292
+ }
293
+ /^X\(\/\).*/{
294
+ s//\1/
295
+ q
296
+ }
297
+ s/.*/./; q'
298
+ `
299
+
300
+ test -d "$dstdir"
301
+ dstdir_status=$?
302
+ fi
303
+ fi
304
+
305
+ obsolete_mkdir_used=false
306
+
307
+ if test $dstdir_status != 0; then
308
+ case $posix_mkdir in
309
+ '')
310
+ # Create intermediate dirs using mode 755 as modified by the umask.
311
+ # This is like FreeBSD 'install' as of 1997-10-28.
312
+ umask=`umask`
313
+ case $stripcmd.$umask in
314
+ # Optimize common cases.
315
+ *[2367][2367]) mkdir_umask=$umask;;
316
+ .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
317
+
318
+ *[0-7])
319
+ mkdir_umask=`expr $umask + 22 \
320
+ - $umask % 100 % 40 + $umask % 20 \
321
+ - $umask % 10 % 4 + $umask % 2
322
+ `;;
323
+ *) mkdir_umask=$umask,go-w;;
324
+ esac
325
+
326
+ # With -d, create the new directory with the user-specified mode.
327
+ # Otherwise, rely on $mkdir_umask.
328
+ if test -n "$dir_arg"; then
329
+ mkdir_mode=-m$mode
330
+ else
331
+ mkdir_mode=
332
+ fi
333
+
334
+ posix_mkdir=false
335
+ case $umask in
336
+ *[123567][0-7][0-7])
337
+ # POSIX mkdir -p sets u+wx bits regardless of umask, which
338
+ # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
339
+ ;;
340
+ *)
341
+ tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
342
+ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
343
+
344
+ if (umask $mkdir_umask &&
345
+ exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
346
+ then
347
+ if test -z "$dir_arg" || {
348
+ # Check for POSIX incompatibilities with -m.
349
+ # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
350
+ # other-writeable bit of parent directory when it shouldn't.
351
+ # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
352
+ ls_ld_tmpdir=`ls -ld "$tmpdir"`
353
+ case $ls_ld_tmpdir in
354
+ d????-?r-*) different_mode=700;;
355
+ d????-?--*) different_mode=755;;
356
+ *) false;;
357
+ esac &&
358
+ $mkdirprog -m$different_mode -p -- "$tmpdir" && {
359
+ ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
360
+ test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
361
+ }
362
+ }
363
+ then posix_mkdir=:
364
+ fi
365
+ rmdir "$tmpdir/d" "$tmpdir"
366
+ else
367
+ # Remove any dirs left behind by ancient mkdir implementations.
368
+ rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
369
+ fi
370
+ trap '' 0;;
371
+ esac;;
372
+ esac
373
+
374
+ if
375
+ $posix_mkdir && (
376
+ umask $mkdir_umask &&
377
+ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
378
+ )
379
+ then :
380
+ else
381
+
382
+ # The umask is ridiculous, or mkdir does not conform to POSIX,
383
+ # or it failed possibly due to a race condition. Create the
384
+ # directory the slow way, step by step, checking for races as we go.
385
+
386
+ case $dstdir in
387
+ /*) prefix='/';;
388
+ -*) prefix='./';;
389
+ *) prefix='';;
390
+ esac
391
+
392
+ eval "$initialize_posix_glob"
393
+
394
+ oIFS=$IFS
395
+ IFS=/
396
+ $posix_glob set -f
397
+ set fnord $dstdir
398
+ shift
399
+ $posix_glob set +f
400
+ IFS=$oIFS
401
+
402
+ prefixes=
403
+
404
+ for d
405
+ do
406
+ test -z "$d" && continue
407
+
408
+ prefix=$prefix$d
409
+ if test -d "$prefix"; then
410
+ prefixes=
411
+ else
412
+ if $posix_mkdir; then
413
+ (umask=$mkdir_umask &&
414
+ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
415
+ # Don't fail if two instances are running concurrently.
416
+ test -d "$prefix" || exit 1
417
+ else
418
+ case $prefix in
419
+ *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
420
+ *) qprefix=$prefix;;
421
+ esac
422
+ prefixes="$prefixes '$qprefix'"
423
+ fi
424
+ fi
425
+ prefix=$prefix/
426
+ done
427
+
428
+ if test -n "$prefixes"; then
429
+ # Don't fail if two instances are running concurrently.
430
+ (umask $mkdir_umask &&
431
+ eval "\$doit_exec \$mkdirprog $prefixes") ||
432
+ test -d "$dstdir" || exit 1
433
+ obsolete_mkdir_used=true
434
+ fi
435
+ fi
436
+ fi
437
+
438
+ if test -n "$dir_arg"; then
439
+ { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
440
+ { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
441
+ { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
442
+ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
443
+ else
444
+
445
+ # Make a couple of temp file names in the proper directory.
446
+ dsttmp=$dstdir/_inst.$$_
447
+ rmtmp=$dstdir/_rm.$$_
448
+
449
+ # Trap to clean up those temp files at exit.
450
+ trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
451
+
452
+ # Copy the file name to the temp name.
453
+ (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
454
+
455
+ # and set any options; do chmod last to preserve setuid bits.
456
+ #
457
+ # If any of these fail, we abort the whole thing. If we want to
458
+ # ignore errors from any of these, just make sure not to ignore
459
+ # errors from the above "$doit $cpprog $src $dsttmp" command.
460
+ #
461
+ { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
462
+ { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
463
+ { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
464
+ { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
465
+
466
+ # If -C, don't bother to copy if it wouldn't change the file.
467
+ if $copy_on_change &&
468
+ old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
469
+ new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
470
+
471
+ eval "$initialize_posix_glob" &&
472
+ $posix_glob set -f &&
473
+ set X $old && old=:$2:$4:$5:$6 &&
474
+ set X $new && new=:$2:$4:$5:$6 &&
475
+ $posix_glob set +f &&
476
+
477
+ test "$old" = "$new" &&
478
+ $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
479
+ then
480
+ rm -f "$dsttmp"
481
+ else
482
+ # Rename the file to the real destination.
483
+ $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
484
+
485
+ # The rename failed, perhaps because mv can't rename something else
486
+ # to itself, or perhaps because mv is so ancient that it does not
487
+ # support -f.
488
+ {
489
+ # Now remove or move aside any old file at destination location.
490
+ # We try this two ways since rm can't unlink itself on some
491
+ # systems and the destination file might be busy for other
492
+ # reasons. In this case, the final cleanup might fail but the new
493
+ # file should still install successfully.
494
+ {
495
+ test ! -f "$dst" ||
496
+ $doit $rmcmd -f "$dst" 2>/dev/null ||
497
+ { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
498
+ { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
499
+ } ||
500
+ { echo "$0: cannot unlink or rename $dst" >&2
501
+ (exit 1); exit 1
502
+ }
503
+ } &&
504
+
505
+ # Now rename the file to the real destination.
506
+ $doit $mvcmd "$dsttmp" "$dst"
507
+ }
508
+ fi || exit 1
509
+
510
+ trap '' 0
511
+ fi
512
+ done
513
+
514
+ # Local variables:
515
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
516
+ # time-stamp-start: "scriptversion="
517
+ # time-stamp-format: "%:y-%02m-%02d.%02H"
518
+ # time-stamp-time-zone: "UTC"
519
+ # time-stamp-end: "; # UTC"
520
+ # End: