mkrf 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +2 -0
- data/MIT-LICENSE +7 -0
- data/README +54 -0
- data/Rakefile +107 -0
- data/lib/mkrf.rb +4 -0
- data/lib/mkrf/availability.rb +219 -0
- data/lib/mkrf/generator.rb +146 -0
- data/test/abstract_unit.rb +4 -0
- data/test/fixtures/down_a_directory/header_down_a_directory.h +1 -0
- data/test/fixtures/stdmkrf.h +1 -0
- data/test/sample_files/libtrivial/Rakefile +31 -0
- data/test/sample_files/libtrivial/extconf.rb +3 -0
- data/test/sample_files/libtrivial/lib/libtrivial.c +5 -0
- data/test/sample_files/libtrivial/lib/libtrivial.o +0 -0
- data/test/sample_files/libtrivial/libtrivial_so.bundle +0 -0
- data/test/sample_files/libtrivial/mkrf.log +1 -0
- data/test/sample_files/libxml-ruby-0.3.8/CHANGELOG +74 -0
- data/test/sample_files/libxml-ruby-0.3.8/LICENSE +22 -0
- data/test/sample_files/libxml-ruby-0.3.8/README +144 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/cbg.c +76 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/extconf.rb +49 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.c +86 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.h +82 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.rb +107 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/mkrf.log +1 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/old_extconf.rb +95 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.c +372 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.c +224 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.c +1159 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.h +27 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.c +168 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.h +17 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.c +167 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.c +2139 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.h +28 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.c +248 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.h +26 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.c +153 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.c +1417 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.h +31 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.c +715 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.h +22 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.c +426 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.h +52 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.c +142 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.h +16 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.c +43 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.h +12 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c +20 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.h +13 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.c +363 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.h +24 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.c +125 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.h +24 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.c +100 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.h +27 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.c +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.h +18 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/sax_parser_callbacks.inc +202 -0
- data/test/sample_files/syck-0.55/CHANGELOG +186 -0
- data/test/sample_files/syck-0.55/COPYING +54 -0
- data/test/sample_files/syck-0.55/Makefile +582 -0
- data/test/sample_files/syck-0.55/Makefile.am +5 -0
- data/test/sample_files/syck-0.55/Makefile.in +582 -0
- data/test/sample_files/syck-0.55/README +105 -0
- data/test/sample_files/syck-0.55/README.BYTECODE +484 -0
- data/test/sample_files/syck-0.55/README.EXT +444 -0
- data/test/sample_files/syck-0.55/RELEASE +123 -0
- data/test/sample_files/syck-0.55/TODO +25 -0
- data/test/sample_files/syck-0.55/aclocal.m4 +883 -0
- data/test/sample_files/syck-0.55/bootstrap +7 -0
- data/test/sample_files/syck-0.55/config.h +79 -0
- data/test/sample_files/syck-0.55/config.h.in +78 -0
- data/test/sample_files/syck-0.55/config.status +1197 -0
- data/test/sample_files/syck-0.55/config/README +14 -0
- data/test/sample_files/syck-0.55/config/depcomp +529 -0
- data/test/sample_files/syck-0.55/config/install-sh +323 -0
- data/test/sample_files/syck-0.55/config/missing +357 -0
- data/test/sample_files/syck-0.55/configure +6728 -0
- data/test/sample_files/syck-0.55/configure.in +36 -0
- data/test/sample_files/syck-0.55/ext/ruby/CHANGELOG +303 -0
- data/test/sample_files/syck-0.55/ext/ruby/README +400 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/MANIFEST +1 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/bytecode.c +1170 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/emitter.c +1224 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/extconf.rb +10 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.c +1894 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.h +79 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/handler.c +174 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/implicit.c +2989 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/mkrf.log +1 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/node.c +407 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/rubyext.c +2385 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.c +504 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.h +458 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/token.c +2707 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yaml2byte.c +250 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yamlbyte.h +170 -0
- data/test/sample_files/syck-0.55/ext/ruby/install.rb +1022 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay.rb +161 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay/news.rb +69 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay/rpc.rb +434 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml.rb +436 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/baseemitter.rb +247 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/basenode.rb +216 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/compat.rb +26 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/constants.rb +45 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/dbm.rb +111 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/emitter.rb +107 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/encoding.rb +33 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb +34 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/rubytypes.rb +438 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/store.rb +29 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stream.rb +40 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stringio.rb +83 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/syck.rb +19 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/tag.rb +86 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/types.rb +188 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/yamlnode.rb +54 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/ypath.rb +52 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yod.rb +1168 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-modules.rb +27 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-sample.rb +336 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-validate.rb +341 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-client.rb +51 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-server.rb +85 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/yaml-sortHashKeys.rb +128 -0
- data/test/sample_files/syck-0.55/ext/ruby/tests/basic.rb +1653 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsAnchorAlias.yml +51 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBasicTests.yml +282 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockMapping.yml +78 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockSequence.yml +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsDocumentSeparator.yml +102 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsErrorTests.yml +23 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFlowCollections.yml +73 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFoldedScalars.yml +215 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsMapInSeq.yml +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsNullsAndEmpties.yml +66 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsRubyTests.yml +182 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsSpecificationExamples.yml +2699 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsTypeTransfers.yml +265 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsYpath.yml +221 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/cookbook.rb +159 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/index.yml +10 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/yts.rb +193 -0
- data/test/sample_files/syck-0.55/lib/Makefile +497 -0
- data/test/sample_files/syck-0.55/lib/Makefile.am +27 -0
- data/test/sample_files/syck-0.55/lib/Makefile.in +497 -0
- data/test/sample_files/syck-0.55/lib/bytecode.c +1170 -0
- data/test/sample_files/syck-0.55/lib/bytecode.re +525 -0
- data/test/sample_files/syck-0.55/lib/emitter.c +1224 -0
- data/test/sample_files/syck-0.55/lib/gram.c +1894 -0
- data/test/sample_files/syck-0.55/lib/gram.h +79 -0
- data/test/sample_files/syck-0.55/lib/gram.output +2005 -0
- data/test/sample_files/syck-0.55/lib/gram.y +481 -0
- data/test/sample_files/syck-0.55/lib/handler.c +174 -0
- data/test/sample_files/syck-0.55/lib/implicit.c +2989 -0
- data/test/sample_files/syck-0.55/lib/implicit.re +206 -0
- data/test/sample_files/syck-0.55/lib/node.c +407 -0
- data/test/sample_files/syck-0.55/lib/syck.c +504 -0
- data/test/sample_files/syck-0.55/lib/syck.h +458 -0
- data/test/sample_files/syck-0.55/lib/syck_st.c +577 -0
- data/test/sample_files/syck-0.55/lib/syck_st.h +46 -0
- data/test/sample_files/syck-0.55/lib/token.c +2707 -0
- data/test/sample_files/syck-0.55/lib/token.re +1139 -0
- data/test/sample_files/syck-0.55/lib/yaml2byte.c +250 -0
- data/test/sample_files/syck-0.55/lib/yamlbyte.h +170 -0
- data/test/sample_files/syck-0.55/stamp-h1 +1 -0
- data/test/sample_files/syck-0.55/tests/Basic.c +141 -0
- data/test/sample_files/syck-0.55/tests/CuTest.c +294 -0
- data/test/sample_files/syck-0.55/tests/CuTest.h +84 -0
- data/test/sample_files/syck-0.55/tests/Emit.c +87 -0
- data/test/sample_files/syck-0.55/tests/Makefile +480 -0
- data/test/sample_files/syck-0.55/tests/Makefile.am +13 -0
- data/test/sample_files/syck-0.55/tests/Makefile.in +480 -0
- data/test/sample_files/syck-0.55/tests/Parse.c +208 -0
- data/test/sample_files/syck-0.55/tests/YTS.c +2310 -0
- data/test/sample_files/syck-0.55/tests/YTS.c.erb +326 -0
- data/test/sample_files/syck-0.55/tests/YTS.c.rb +44 -0
- data/test/test_availability.rb +68 -0
- data/test/test_generator.rb +74 -0
- metadata +252 -0
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* yaml2byte.c
|
|
3
|
+
*
|
|
4
|
+
* $Author: why $
|
|
5
|
+
* $Date: 2004/08/02 17:32:35 $
|
|
6
|
+
*
|
|
7
|
+
* Copyright (C) 2003 why the lucky stiff, clark evans
|
|
8
|
+
*
|
|
9
|
+
* WARNING WARNING WARNING --- THIS IS *NOT JUST* PLAYING
|
|
10
|
+
* ANYMORE! -- WHY HAS EMBRACED THIS AS THE REAL THING!
|
|
11
|
+
*/
|
|
12
|
+
#include <syck.h>
|
|
13
|
+
#include <assert.h>
|
|
14
|
+
#define YAMLBYTE_UTF8
|
|
15
|
+
#include "yamlbyte.h"
|
|
16
|
+
|
|
17
|
+
#include <stdio.h>
|
|
18
|
+
#define TRACE0(a) \
|
|
19
|
+
do { printf(a); printf("\n"); fflush(stdout); } while(0)
|
|
20
|
+
#define TRACE1(a,b) \
|
|
21
|
+
do { printf(a,b); printf("\n"); fflush(stdout); } while(0)
|
|
22
|
+
#define TRACE2(a,b,c) \
|
|
23
|
+
do { printf(a,b,c); printf("\n"); fflush(stdout); } while(0)
|
|
24
|
+
#define TRACE3(a,b,c,d) \
|
|
25
|
+
do { printf(a,b,c,d); printf("\n"); fflush(stdout); } while(0)
|
|
26
|
+
|
|
27
|
+
/* Reinvent the wheel... */
|
|
28
|
+
#define CHUNKSIZE 64
|
|
29
|
+
#define HASH ((long)0xCAFECAFE)
|
|
30
|
+
typedef struct {
|
|
31
|
+
long hash;
|
|
32
|
+
char *buffer;
|
|
33
|
+
long length;
|
|
34
|
+
long remaining;
|
|
35
|
+
int printed;
|
|
36
|
+
} bytestring_t;
|
|
37
|
+
bytestring_t *bytestring_alloc() {
|
|
38
|
+
bytestring_t *ret;
|
|
39
|
+
/*TRACE0("bytestring_alloc()");*/
|
|
40
|
+
ret = S_ALLOC(bytestring_t);
|
|
41
|
+
ret->hash = HASH;
|
|
42
|
+
ret->length = CHUNKSIZE;
|
|
43
|
+
ret->remaining = ret->length;
|
|
44
|
+
ret->buffer = S_ALLOC_N(char, ret->length + 1 );
|
|
45
|
+
ret->buffer[0] = 0;
|
|
46
|
+
ret->printed = 0;
|
|
47
|
+
return ret;
|
|
48
|
+
}
|
|
49
|
+
void bytestring_append(bytestring_t *str, char code,
|
|
50
|
+
char *start, char *finish)
|
|
51
|
+
{
|
|
52
|
+
long grow;
|
|
53
|
+
long length = 2; /* CODE + LF */
|
|
54
|
+
char *curr;
|
|
55
|
+
assert(str && HASH == str->hash);
|
|
56
|
+
/*TRACE0("bytestring_append()");*/
|
|
57
|
+
if(start) {
|
|
58
|
+
if(!finish)
|
|
59
|
+
finish = start + strlen(start);
|
|
60
|
+
length += (finish-start);
|
|
61
|
+
}
|
|
62
|
+
if(length > str->remaining) {
|
|
63
|
+
grow = (length - str->remaining) + CHUNKSIZE;
|
|
64
|
+
str->remaining += grow;
|
|
65
|
+
str->length += grow;
|
|
66
|
+
str->buffer = S_REALLOC_N( str->buffer, char, str->length + 1 );
|
|
67
|
+
assert(str->buffer);
|
|
68
|
+
}
|
|
69
|
+
curr = str->buffer + (str->length - str->remaining);
|
|
70
|
+
*curr = code;
|
|
71
|
+
curr += 1;
|
|
72
|
+
if(start)
|
|
73
|
+
while(start < finish)
|
|
74
|
+
*curr ++ = *start ++;
|
|
75
|
+
*curr = '\n';
|
|
76
|
+
curr += 1;
|
|
77
|
+
*curr = 0;
|
|
78
|
+
str->remaining = str->remaining - length;
|
|
79
|
+
assert( (str->buffer + str->length) - str->remaining );
|
|
80
|
+
}
|
|
81
|
+
void bytestring_extend(bytestring_t *str, bytestring_t *ext)
|
|
82
|
+
{
|
|
83
|
+
char *from;
|
|
84
|
+
char *curr;
|
|
85
|
+
char *stop;
|
|
86
|
+
long grow;
|
|
87
|
+
long length;
|
|
88
|
+
assert(str && HASH == str->hash);
|
|
89
|
+
assert(ext && HASH == ext->hash);
|
|
90
|
+
if(ext->printed) {
|
|
91
|
+
assert(ext->buffer[0] ==YAMLBYTE_ANCHOR);
|
|
92
|
+
curr = ext->buffer;
|
|
93
|
+
while( '\n' != *curr)
|
|
94
|
+
curr++;
|
|
95
|
+
bytestring_append(str, YAMLBYTE_ALIAS, ext->buffer + 1, curr);
|
|
96
|
+
} else {
|
|
97
|
+
ext->printed = 1;
|
|
98
|
+
length = (ext->length - ext->remaining);
|
|
99
|
+
if(length > str->remaining) {
|
|
100
|
+
grow = (length - str->remaining) + CHUNKSIZE;
|
|
101
|
+
str->remaining += grow;
|
|
102
|
+
str->length += grow;
|
|
103
|
+
str->buffer = S_REALLOC_N( str->buffer, char, str->length + 1 );
|
|
104
|
+
}
|
|
105
|
+
curr = str->buffer + (str->length - str->remaining);
|
|
106
|
+
from = ext->buffer;
|
|
107
|
+
stop = ext->buffer + length;
|
|
108
|
+
while( from < stop )
|
|
109
|
+
*curr ++ = *from ++;
|
|
110
|
+
*curr = 0;
|
|
111
|
+
str->remaining = str->remaining - length;
|
|
112
|
+
assert( (str->buffer + str->length) - str->remaining );
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/* convert SyckNode into yamlbyte_buffer_t objects */
|
|
117
|
+
SYMID
|
|
118
|
+
syck_yaml2byte_handler(p, n)
|
|
119
|
+
SyckParser *p;
|
|
120
|
+
SyckNode *n;
|
|
121
|
+
{
|
|
122
|
+
SYMID oid;
|
|
123
|
+
long i;
|
|
124
|
+
char ch;
|
|
125
|
+
char nextcode;
|
|
126
|
+
char *start;
|
|
127
|
+
char *current;
|
|
128
|
+
char *finish;
|
|
129
|
+
bytestring_t *val = NULL;
|
|
130
|
+
bytestring_t *sav = NULL;
|
|
131
|
+
/*TRACE0("syck_yaml2byte_handler()");*/
|
|
132
|
+
val = bytestring_alloc();
|
|
133
|
+
if(n->anchor) bytestring_append(val,YAMLBYTE_ANCHOR, n->anchor, NULL);
|
|
134
|
+
if ( n->type_id )
|
|
135
|
+
{
|
|
136
|
+
if ( p->taguri_expansion )
|
|
137
|
+
{
|
|
138
|
+
bytestring_append(val,YAMLBYTE_TRANSFER, n->type_id, NULL);
|
|
139
|
+
}
|
|
140
|
+
else
|
|
141
|
+
{
|
|
142
|
+
char *type_tag = S_ALLOC_N( char, strlen( n->type_id ) + 1 );
|
|
143
|
+
type_tag[0] = '\0';
|
|
144
|
+
strcat( type_tag, "!" );
|
|
145
|
+
strcat( type_tag, n->type_id );
|
|
146
|
+
bytestring_append( val, YAMLBYTE_TRANSFER, type_tag, NULL);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
switch (n->kind)
|
|
150
|
+
{
|
|
151
|
+
case syck_str_kind:
|
|
152
|
+
nextcode = YAMLBYTE_SCALAR;
|
|
153
|
+
start = n->data.str->ptr;
|
|
154
|
+
finish = start + n->data.str->len - 1;
|
|
155
|
+
current = start;
|
|
156
|
+
/*TRACE2("SCALAR: %s %d", start, n->data.str->len); */
|
|
157
|
+
while(1) {
|
|
158
|
+
ch = *current;
|
|
159
|
+
if('\n' == ch || 0 == ch || current > finish) {
|
|
160
|
+
if(current >= start) {
|
|
161
|
+
bytestring_append(val, nextcode, start, current);
|
|
162
|
+
nextcode = YAMLBYTE_CONTINUE;
|
|
163
|
+
}
|
|
164
|
+
start = current + 1;
|
|
165
|
+
if(current > finish)
|
|
166
|
+
{
|
|
167
|
+
break;
|
|
168
|
+
}
|
|
169
|
+
else if('\n' == ch )
|
|
170
|
+
{
|
|
171
|
+
bytestring_append(val,YAMLBYTE_NEWLINE,NULL,NULL);
|
|
172
|
+
}
|
|
173
|
+
else if(0 == ch)
|
|
174
|
+
{
|
|
175
|
+
bytestring_append(val,YAMLBYTE_NULLCHAR,NULL,NULL);
|
|
176
|
+
}
|
|
177
|
+
else
|
|
178
|
+
{
|
|
179
|
+
assert("oops");
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
current += 1;
|
|
183
|
+
}
|
|
184
|
+
break;
|
|
185
|
+
case syck_seq_kind:
|
|
186
|
+
bytestring_append(val,YAMLBYTE_SEQUENCE,NULL,NULL);
|
|
187
|
+
for ( i = 0; i < n->data.list->idx; i++ )
|
|
188
|
+
{
|
|
189
|
+
oid = syck_seq_read( n, i );
|
|
190
|
+
syck_lookup_sym( p, oid, (char **)&sav );
|
|
191
|
+
bytestring_extend(val, sav);
|
|
192
|
+
}
|
|
193
|
+
bytestring_append(val,YAMLBYTE_END_BRANCH,NULL,NULL);
|
|
194
|
+
break;
|
|
195
|
+
case syck_map_kind:
|
|
196
|
+
bytestring_append(val,YAMLBYTE_MAPPING,NULL,NULL);
|
|
197
|
+
for ( i = 0; i < n->data.pairs->idx; i++ )
|
|
198
|
+
{
|
|
199
|
+
oid = syck_map_read( n, map_key, i );
|
|
200
|
+
syck_lookup_sym( p, oid, (char **)&sav );
|
|
201
|
+
bytestring_extend(val, sav);
|
|
202
|
+
oid = syck_map_read( n, map_value, i );
|
|
203
|
+
syck_lookup_sym( p, oid, (char **)&sav );
|
|
204
|
+
bytestring_extend(val, sav);
|
|
205
|
+
}
|
|
206
|
+
bytestring_append(val,YAMLBYTE_END_BRANCH,NULL,NULL);
|
|
207
|
+
break;
|
|
208
|
+
}
|
|
209
|
+
oid = syck_add_sym( p, (char *) val );
|
|
210
|
+
/*TRACE1("Saving: %s", val->buffer );*/
|
|
211
|
+
return oid;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
char *
|
|
215
|
+
syck_yaml2byte(char *yamlstr)
|
|
216
|
+
{
|
|
217
|
+
SYMID oid;
|
|
218
|
+
char *ret;
|
|
219
|
+
bytestring_t *sav;
|
|
220
|
+
|
|
221
|
+
SyckParser *parser = syck_new_parser();
|
|
222
|
+
syck_parser_str_auto( parser, yamlstr, NULL );
|
|
223
|
+
syck_parser_handler( parser, syck_yaml2byte_handler );
|
|
224
|
+
syck_parser_error_handler( parser, NULL );
|
|
225
|
+
syck_parser_implicit_typing( parser, 1 );
|
|
226
|
+
syck_parser_taguri_expansion( parser, 1 );
|
|
227
|
+
oid = syck_parse( parser );
|
|
228
|
+
syck_lookup_sym( parser, oid, (char **)&sav );
|
|
229
|
+
|
|
230
|
+
ret = S_ALLOC_N( char, strlen( sav->buffer ) + 3 );
|
|
231
|
+
ret[0] = '\0';
|
|
232
|
+
strcat( ret, "D\n" );
|
|
233
|
+
strcat( ret, sav->buffer );
|
|
234
|
+
|
|
235
|
+
syck_free_parser( parser );
|
|
236
|
+
return ret;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
#ifdef TEST_YBEXT
|
|
240
|
+
#include <stdio.h>
|
|
241
|
+
int main() {
|
|
242
|
+
char *yaml = "test: 1\nand: \"with new\\nline\\n\"\nalso: &3 three\nmore: *3";
|
|
243
|
+
printf("--- # YAML \n");
|
|
244
|
+
printf(yaml);
|
|
245
|
+
printf("\n...\n");
|
|
246
|
+
printf(syck_yaml2byte(yaml));
|
|
247
|
+
return 0;
|
|
248
|
+
}
|
|
249
|
+
#endif
|
|
250
|
+
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
/* yamlbyte.h
|
|
2
|
+
*
|
|
3
|
+
* The YAML bytecode "C" interface header file. See the YAML bytecode
|
|
4
|
+
* reference for bytecode sequence rules and for the meaning of each
|
|
5
|
+
* bytecode.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
#ifndef YAMLBYTE_H
|
|
9
|
+
#define YAMLBYTE_H
|
|
10
|
+
#include <stddef.h>
|
|
11
|
+
|
|
12
|
+
/* define what a character is */
|
|
13
|
+
typedef unsigned char yamlbyte_utf8_t;
|
|
14
|
+
typedef unsigned short yamlbyte_utf16_t;
|
|
15
|
+
#ifdef YAMLBYTE_UTF8
|
|
16
|
+
#ifdef YAMLBYTE_UTF16
|
|
17
|
+
#error Must only define YAMLBYTE_UTF8 or YAMLBYTE_UTF16
|
|
18
|
+
#endif
|
|
19
|
+
typedef yamlbyte_utf8_t yamlbyte_char_t;
|
|
20
|
+
#else
|
|
21
|
+
#ifdef YAMLBYTE_UTF16
|
|
22
|
+
typedef yamlbyte_utf16_t yamlbyte_char_t;
|
|
23
|
+
#else
|
|
24
|
+
#error Must define YAMLBYTE_UTF8 or YAMLBYTE_UTF16
|
|
25
|
+
#endif
|
|
26
|
+
#endif
|
|
27
|
+
|
|
28
|
+
/* specify list of bytecodes */
|
|
29
|
+
#define YAMLBYTE_FINISH ((yamlbyte_char_t) 0)
|
|
30
|
+
#define YAMLBYTE_DOCUMENT ((yamlbyte_char_t)'D')
|
|
31
|
+
#define YAMLBYTE_DIRECTIVE ((yamlbyte_char_t)'V')
|
|
32
|
+
#define YAMLBYTE_PAUSE ((yamlbyte_char_t)'P')
|
|
33
|
+
#define YAMLBYTE_MAPPING ((yamlbyte_char_t)'M')
|
|
34
|
+
#define YAMLBYTE_SEQUENCE ((yamlbyte_char_t)'Q')
|
|
35
|
+
#define YAMLBYTE_END_BRANCH ((yamlbyte_char_t)'E')
|
|
36
|
+
#define YAMLBYTE_SCALAR ((yamlbyte_char_t)'S')
|
|
37
|
+
#define YAMLBYTE_CONTINUE ((yamlbyte_char_t)'C')
|
|
38
|
+
#define YAMLBYTE_NEWLINE ((yamlbyte_char_t)'N')
|
|
39
|
+
#define YAMLBYTE_NULLCHAR ((yamlbyte_char_t)'Z')
|
|
40
|
+
#define YAMLBYTE_ANCHOR ((yamlbyte_char_t)'A')
|
|
41
|
+
#define YAMLBYTE_ALIAS ((yamlbyte_char_t)'R')
|
|
42
|
+
#define YAMLBYTE_TRANSFER ((yamlbyte_char_t)'T')
|
|
43
|
+
/* formatting bytecodes */
|
|
44
|
+
#define YAMLBYTE_COMMENT ((yamlbyte_char_t)'c')
|
|
45
|
+
#define YAMLBYTE_INDENT ((yamlbyte_char_t)'i')
|
|
46
|
+
#define YAMLBYTE_STYLE ((yamlbyte_char_t)'s')
|
|
47
|
+
/* other bytecodes */
|
|
48
|
+
#define YAMLBYTE_LINE_NUMBER ((yamlbyte_char_t)'#')
|
|
49
|
+
#define YAMLBYTE_WHOLE_SCALAR ((yamlbyte_char_t)'<')
|
|
50
|
+
#define YAMLBYTE_NOTICE ((yamlbyte_char_t)'!')
|
|
51
|
+
#define YAMLBYTE_SPAN ((yamlbyte_char_t)')')
|
|
52
|
+
#define YAMLBYTE_ALLOC ((yamlbyte_char_t)'@')
|
|
53
|
+
|
|
54
|
+
/* second level style bytecodes, ie "s>" */
|
|
55
|
+
#define YAMLBYTE_FLOW ((yamlbyte_char_t)'>')
|
|
56
|
+
#define YAMLBYTE_LITERAL ((yamlbyte_char_t)'|')
|
|
57
|
+
#define YAMLBYTE_BLOCK ((yamlbyte_char_t)'b')
|
|
58
|
+
#define YAMLBYTE_PLAIN ((yamlbyte_char_t)'p')
|
|
59
|
+
#define YAMLBYTE_INLINE_MAPPING ((yamlbyte_char_t)'{')
|
|
60
|
+
#define YAMLBYTE_INLINE_SEQUENCE ((yamlbyte_char_t)'[')
|
|
61
|
+
#define YAMLBYTE_SINGLE_QUOTED ((yamlbyte_char_t)39)
|
|
62
|
+
#define YAMLBYTE_DOUBLE_QUOTED ((yamlbyte_char_t)'"')
|
|
63
|
+
|
|
64
|
+
/*
|
|
65
|
+
* The "C" API has two variants, one based on instructions,
|
|
66
|
+
* with events delivered via pointers; and the other one
|
|
67
|
+
* is character based where one or more instructions are
|
|
68
|
+
* serialized into a buffer.
|
|
69
|
+
*
|
|
70
|
+
* Note: In the instruction based API, WHOLE_SCALAR does
|
|
71
|
+
* not have the '<here' marshalling stuff.
|
|
72
|
+
*/
|
|
73
|
+
|
|
74
|
+
typedef void * yamlbyte_consumer_t;
|
|
75
|
+
typedef void * yamlbyte_producer_t;
|
|
76
|
+
|
|
77
|
+
/* push and pull APIs need a way to communicate results */
|
|
78
|
+
typedef enum {
|
|
79
|
+
YAMLBYTE_OK = 0, /* proceed */
|
|
80
|
+
YAMLBYTE_E_MEMORY = 'M', /* could not allocate memory */
|
|
81
|
+
YAMLBYTE_E_READ = 'R', /* input stream read error */
|
|
82
|
+
YAMLBYTE_E_WRITE = 'W', /* output stream write error */
|
|
83
|
+
YAMLBYTE_E_OTHER = '?', /* some other error condition */
|
|
84
|
+
YAMLBYTE_E_PARSE = 'P', /* parse error, check bytecodes */
|
|
85
|
+
} yamlbyte_result_t;
|
|
86
|
+
|
|
87
|
+
typedef const yamlbyte_char_t *yamlbyte_buff_t;
|
|
88
|
+
|
|
89
|
+
/*
|
|
90
|
+
* The "Instruction" API
|
|
91
|
+
*/
|
|
92
|
+
|
|
93
|
+
typedef struct yaml_instruction {
|
|
94
|
+
yamlbyte_char_t bytecode;
|
|
95
|
+
yamlbyte_buff_t start;
|
|
96
|
+
yamlbyte_buff_t finish; /* open range, *finish is _not_ part */
|
|
97
|
+
} *yamlbyte_inst_t;
|
|
98
|
+
|
|
99
|
+
/* producer pushes the instruction with one bytecode event to the
|
|
100
|
+
* consumer; if the consumer's result is not YAMLBYTE_OK, then
|
|
101
|
+
* the producer should stop */
|
|
102
|
+
typedef
|
|
103
|
+
yamlbyte_result_t
|
|
104
|
+
(*yamlbyte_push_t)(
|
|
105
|
+
yamlbyte_consumer_t self,
|
|
106
|
+
yamlbyte_inst_t inst
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
/* consumer pulls a bytecode instruction from the producer; in this
|
|
110
|
+
* case the instruction (and is buffer) are owned by the producer and
|
|
111
|
+
* will remain valid till the pull function is called once again;
|
|
112
|
+
* if the instruction is NULL, then there are no more results; and
|
|
113
|
+
* it is important to call the pull function till it returns NULL so
|
|
114
|
+
* that the producer can clean up its memory allocations */
|
|
115
|
+
typedef
|
|
116
|
+
yamlbyte_result_t
|
|
117
|
+
(*yamlbyte_pull_t)(
|
|
118
|
+
yamlbyte_producer_t self,
|
|
119
|
+
yamlbyte_inst_t *inst /* to be filled in by the producer */
|
|
120
|
+
);
|
|
121
|
+
|
|
122
|
+
/*
|
|
123
|
+
* Buffer based API
|
|
124
|
+
*/
|
|
125
|
+
|
|
126
|
+
/* producer pushes a null terminated buffer filled with one or more
|
|
127
|
+
* bytecode events to the consumer; if the consumer's result is not
|
|
128
|
+
* YAMLBYTE_OK, then the producer should stop */
|
|
129
|
+
typedef
|
|
130
|
+
yamlbyte_result_t
|
|
131
|
+
(*yamlbyte_pushbuff_t)(
|
|
132
|
+
yamlbyte_consumer_t self,
|
|
133
|
+
yamlbyte_buff_t buff
|
|
134
|
+
);
|
|
135
|
+
|
|
136
|
+
/* consumer pulls bytecode events from the producer; in this case
|
|
137
|
+
* the buffer is owned by the producer, and will remain valid till
|
|
138
|
+
* the pull function is called once again; if the buffer pointer
|
|
139
|
+
* is set to NULL, then there are no more results; it is important
|
|
140
|
+
* to call the pull function till it returns NULL so that the
|
|
141
|
+
* producer can clean up its memory allocations */
|
|
142
|
+
typedef
|
|
143
|
+
yamlbyte_result_t
|
|
144
|
+
(*yamlbyte_pullbuff_t)(
|
|
145
|
+
yamlbyte_producer_t self,
|
|
146
|
+
yamlbyte_buff_t *buff /* to be filled in by the producer */
|
|
147
|
+
);
|
|
148
|
+
|
|
149
|
+
/* convert a pull interface to a push interface; the reverse process
|
|
150
|
+
* requires threads and thus is language dependent */
|
|
151
|
+
#define YAMLBYTE_PULL2PUSH(pull,producer,push,consumer,result) \
|
|
152
|
+
do { \
|
|
153
|
+
yamlbyte_pullbuff_t _pull = (pull); \
|
|
154
|
+
yamlbyte_pushbuff_t _push = (push); \
|
|
155
|
+
yamlbyte_result_t _result = YAMLBYTE_OK; \
|
|
156
|
+
yamlbyte_producer_t _producer = (producer); \
|
|
157
|
+
yamlbyte_consumer_t _consumer = (consumer); \
|
|
158
|
+
while(1) { \
|
|
159
|
+
yamlbyte_buff_t buff = NULL; \
|
|
160
|
+
_result = _pull(_producer,&buff); \
|
|
161
|
+
if(YAMLBYTE_OK != result || NULL == buff) \
|
|
162
|
+
break; \
|
|
163
|
+
_result = _push(_consumer,buff); \
|
|
164
|
+
if(YAMLBYTE_OK != result) \
|
|
165
|
+
break; \
|
|
166
|
+
} \
|
|
167
|
+
(result) = _result; \
|
|
168
|
+
} while(0)
|
|
169
|
+
|
|
170
|
+
#endif
|
|
@@ -0,0 +1,1022 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This file is automatically generated. DO NOT MODIFY!
|
|
3
|
+
#
|
|
4
|
+
# install.rb
|
|
5
|
+
#
|
|
6
|
+
# Copyright (c) 2000-2002 Minero Aoki <aamine@loveruby.net>
|
|
7
|
+
#
|
|
8
|
+
# This program is free software.
|
|
9
|
+
# You can distribute/modify this program under the terms of
|
|
10
|
+
# the GNU Lesser General Public License version 2.
|
|
11
|
+
#
|
|
12
|
+
|
|
13
|
+
### begin compat.rb
|
|
14
|
+
|
|
15
|
+
unless Enumerable.instance_methods.include? 'inject'
|
|
16
|
+
module Enumerable
|
|
17
|
+
def inject( result )
|
|
18
|
+
each do |i|
|
|
19
|
+
result = yield(result, i)
|
|
20
|
+
end
|
|
21
|
+
result
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def File.read_all( fname )
|
|
27
|
+
File.open(fname, 'rb') {|f| return f.read }
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def File.write( fname, str )
|
|
31
|
+
File.open(fname, 'wb') {|f| f.write str }
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
### end compat.rb
|
|
35
|
+
### begin config.rb
|
|
36
|
+
|
|
37
|
+
if i = ARGV.index(/\A--rbconfig=/)
|
|
38
|
+
file = $'
|
|
39
|
+
ARGV.delete_at(i)
|
|
40
|
+
require file
|
|
41
|
+
else
|
|
42
|
+
require 'rbconfig'
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class ConfigTable
|
|
47
|
+
|
|
48
|
+
c = ::Config::CONFIG
|
|
49
|
+
|
|
50
|
+
rubypath = c['bindir'] + '/' + c['ruby_install_name']
|
|
51
|
+
|
|
52
|
+
major = c['MAJOR'].to_i
|
|
53
|
+
minor = c['MINOR'].to_i
|
|
54
|
+
teeny = c['TEENY'].to_i
|
|
55
|
+
version = "#{major}.#{minor}"
|
|
56
|
+
|
|
57
|
+
# ruby ver. >= 1.4.4?
|
|
58
|
+
newpath_p = ((major >= 2) or
|
|
59
|
+
((major == 1) and
|
|
60
|
+
((minor >= 5) or
|
|
61
|
+
((minor == 4) and (teeny >= 4)))))
|
|
62
|
+
|
|
63
|
+
re = Regexp.new('\A' + Regexp.quote(c['prefix']))
|
|
64
|
+
subprefix = lambda {|path|
|
|
65
|
+
re === path and path.sub(re, '$prefix')
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if c['rubylibdir']
|
|
69
|
+
# V < 1.6.3
|
|
70
|
+
stdruby = subprefix.call(c['rubylibdir'])
|
|
71
|
+
siteruby = subprefix.call(c['sitedir'])
|
|
72
|
+
versite = subprefix.call(c['sitelibdir'])
|
|
73
|
+
sodir = subprefix.call(c['sitearchdir'])
|
|
74
|
+
elsif newpath_p
|
|
75
|
+
# 1.4.4 <= V <= 1.6.3
|
|
76
|
+
stdruby = "$prefix/lib/ruby/#{version}"
|
|
77
|
+
siteruby = subprefix.call(c['sitedir'])
|
|
78
|
+
versite = siteruby + '/' + version
|
|
79
|
+
sodir = "$site-ruby/#{c['arch']}"
|
|
80
|
+
else
|
|
81
|
+
# V < 1.4.4
|
|
82
|
+
stdruby = "$prefix/lib/ruby/#{version}"
|
|
83
|
+
siteruby = "$prefix/lib/ruby/#{version}/site_ruby"
|
|
84
|
+
versite = siteruby
|
|
85
|
+
sodir = "$site-ruby/#{c['arch']}"
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
DESCRIPTER = [
|
|
89
|
+
[ 'prefix', [ c['prefix'],
|
|
90
|
+
'path',
|
|
91
|
+
'path prefix of target environment' ] ],
|
|
92
|
+
[ 'std-ruby', [ stdruby,
|
|
93
|
+
'path',
|
|
94
|
+
'the directory for standard ruby libraries' ] ],
|
|
95
|
+
[ 'site-ruby-common', [ siteruby,
|
|
96
|
+
'path',
|
|
97
|
+
'the directory for version-independent non-standard ruby libraries' ] ],
|
|
98
|
+
[ 'site-ruby', [ versite,
|
|
99
|
+
'path',
|
|
100
|
+
'the directory for non-standard ruby libraries' ] ],
|
|
101
|
+
[ 'bin-dir', [ '$prefix/bin',
|
|
102
|
+
'path',
|
|
103
|
+
'the directory for commands' ] ],
|
|
104
|
+
[ 'rb-dir', [ '$site-ruby',
|
|
105
|
+
'path',
|
|
106
|
+
'the directory for ruby scripts' ] ],
|
|
107
|
+
[ 'so-dir', [ sodir,
|
|
108
|
+
'path',
|
|
109
|
+
'the directory for ruby extentions' ] ],
|
|
110
|
+
[ 'data-dir', [ '$prefix/share',
|
|
111
|
+
'path',
|
|
112
|
+
'the directory for shared data' ] ],
|
|
113
|
+
[ 'ruby-path', [ rubypath,
|
|
114
|
+
'path',
|
|
115
|
+
'path to set to #! line' ] ],
|
|
116
|
+
[ 'ruby-prog', [ rubypath,
|
|
117
|
+
'name',
|
|
118
|
+
'the ruby program using for installation' ] ],
|
|
119
|
+
[ 'make-prog', [ 'make',
|
|
120
|
+
'name',
|
|
121
|
+
'the make program to compile ruby extentions' ] ],
|
|
122
|
+
[ 'without-ext', [ 'no',
|
|
123
|
+
'yes/no',
|
|
124
|
+
'does not compile/install ruby extentions' ] ]
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
SAVE_FILE = 'config.save'
|
|
128
|
+
|
|
129
|
+
def ConfigTable.each_name( &block )
|
|
130
|
+
keys().each(&block)
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
def ConfigTable.keys
|
|
134
|
+
DESCRIPTER.collect {|k,*dummy| k }
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
def ConfigTable.each_definition( &block )
|
|
138
|
+
DESCRIPTER.each(&block)
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
def ConfigTable.get_entry( name )
|
|
142
|
+
name, ent = DESCRIPTER.assoc(name)
|
|
143
|
+
ent
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
def ConfigTable.get_entry!( name )
|
|
147
|
+
get_entry(name) or raise ArgumentError, "no such config: #{name}"
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
def ConfigTable.add_entry( name, vals )
|
|
151
|
+
ConfigTable::DESCRIPTER.push [name,vals]
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
def ConfigTable.remove_entry( name )
|
|
155
|
+
get_entry name or raise ArgumentError, "no such config: #{name}"
|
|
156
|
+
DESCRIPTER.delete_if {|n,arr| n == name }
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
def ConfigTable.config_key?( name )
|
|
160
|
+
get_entry(name) ? true : false
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
def ConfigTable.bool_config?( name )
|
|
164
|
+
ent = get_entry(name) or return false
|
|
165
|
+
ent[1] == 'yes/no'
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
def ConfigTable.value_config?( name )
|
|
169
|
+
ent = get_entry(name) or return false
|
|
170
|
+
ent[1] != 'yes/no'
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
def ConfigTable.path_config?( name )
|
|
174
|
+
ent = get_entry(name) or return false
|
|
175
|
+
ent[1] == 'path'
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
class << self
|
|
180
|
+
|
|
181
|
+
alias newobj new
|
|
182
|
+
|
|
183
|
+
def new
|
|
184
|
+
c = newobj()
|
|
185
|
+
c.__send__ :init
|
|
186
|
+
c
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
def load
|
|
190
|
+
c = newobj()
|
|
191
|
+
raise InstallError, "#{File.basename $0} config first"\
|
|
192
|
+
unless File.file? SAVE_FILE
|
|
193
|
+
File.foreach(SAVE_FILE) do |line|
|
|
194
|
+
k, v = line.split(/=/, 2)
|
|
195
|
+
c.instance_eval {
|
|
196
|
+
@table[k] = v.strip
|
|
197
|
+
}
|
|
198
|
+
end
|
|
199
|
+
c
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
def initialize
|
|
205
|
+
@table = {}
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
def init
|
|
209
|
+
DESCRIPTER.each do |k, (default, vname, desc, default2)|
|
|
210
|
+
@table[k] = default
|
|
211
|
+
end
|
|
212
|
+
end
|
|
213
|
+
private :init
|
|
214
|
+
|
|
215
|
+
def save
|
|
216
|
+
File.open(SAVE_FILE, 'w') {|f|
|
|
217
|
+
@table.each do |k, v|
|
|
218
|
+
f.printf "%s=%s\n", k, v if v
|
|
219
|
+
end
|
|
220
|
+
}
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
def []=( k, v )
|
|
224
|
+
ConfigTable.config_key? k or raise InstallError, "unknown config option #{k}"
|
|
225
|
+
if ConfigTable.path_config? k
|
|
226
|
+
@table[k] = (v[0,1] != '$') ? File.expand_path(v) : v
|
|
227
|
+
else
|
|
228
|
+
@table[k] = v
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
def []( key )
|
|
233
|
+
@table[key] or return nil
|
|
234
|
+
@table[key].gsub(%r<\$([^/]+)>) { self[$1] }
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
def set_raw( key, val )
|
|
238
|
+
@table[key] = val
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
def get_raw( key )
|
|
242
|
+
@table[key]
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
class MetaConfigEnvironment
|
|
249
|
+
|
|
250
|
+
def self.eval_file( file )
|
|
251
|
+
return unless File.file? file
|
|
252
|
+
new.instance_eval File.read_all(file), file, 1
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
private
|
|
256
|
+
|
|
257
|
+
def config_names
|
|
258
|
+
ConfigTable.keys
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
def config?( name )
|
|
262
|
+
ConfigTable.config_key? name
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
def bool_config?( name )
|
|
266
|
+
ConfigTable.bool_config? name
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
def value_config?( name )
|
|
270
|
+
ConfigTable.value_config? name
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
def path_config?( name )
|
|
274
|
+
ConfigTable.path_config? name
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
def add_config( name, argname, default, desc )
|
|
278
|
+
ConfigTable.add_entry name,[default,argname,desc]
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
def add_path_config( name, default, desc )
|
|
282
|
+
add_config name, 'path', default, desc
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
def add_bool_config( name, default, desc )
|
|
286
|
+
add_config name, 'yes/no', default ? 'yes' : 'no', desc
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
def set_config_default( name, default )
|
|
290
|
+
if bool_config? name
|
|
291
|
+
ConfigTable.get_entry!(name)[0] = default ? 'yes' : 'no'
|
|
292
|
+
else
|
|
293
|
+
ConfigTable.get_entry!(name)[0] = default
|
|
294
|
+
end
|
|
295
|
+
end
|
|
296
|
+
|
|
297
|
+
def remove_config( name )
|
|
298
|
+
ent = ConfigTable.get_entry(name)
|
|
299
|
+
ConfigTable.remove_entry name
|
|
300
|
+
ent
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
### end config.rb
|
|
306
|
+
### begin fileop.rb
|
|
307
|
+
|
|
308
|
+
module FileOperations
|
|
309
|
+
|
|
310
|
+
def mkdir_p( dname, prefix = nil )
|
|
311
|
+
dname = prefix + dname if prefix
|
|
312
|
+
$stderr.puts "mkdir -p #{dname}" if verbose?
|
|
313
|
+
return if no_harm?
|
|
314
|
+
|
|
315
|
+
# does not check '/'... it's too abnormal case
|
|
316
|
+
dirs = dname.split(%r<(?=/)>)
|
|
317
|
+
if /\A[a-z]:\z/i === dirs[0]
|
|
318
|
+
disk = dirs.shift
|
|
319
|
+
dirs[0] = disk + dirs[0]
|
|
320
|
+
end
|
|
321
|
+
dirs.each_index do |idx|
|
|
322
|
+
path = dirs[0..idx].join('')
|
|
323
|
+
Dir.mkdir path unless dir? path
|
|
324
|
+
end
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
def rm_f( fname )
|
|
328
|
+
$stderr.puts "rm -f #{fname}" if verbose?
|
|
329
|
+
return if no_harm?
|
|
330
|
+
|
|
331
|
+
if File.exist? fname or File.symlink? fname
|
|
332
|
+
File.chmod 0777, fname
|
|
333
|
+
File.unlink fname
|
|
334
|
+
end
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
def rm_rf( dn )
|
|
338
|
+
$stderr.puts "rm -rf #{dn}" if verbose?
|
|
339
|
+
return if no_harm?
|
|
340
|
+
|
|
341
|
+
Dir.chdir dn
|
|
342
|
+
Dir.foreach('.') do |fn|
|
|
343
|
+
next if fn == '.'
|
|
344
|
+
next if fn == '..'
|
|
345
|
+
if dir? fn
|
|
346
|
+
verbose_off {
|
|
347
|
+
rm_rf fn
|
|
348
|
+
}
|
|
349
|
+
else
|
|
350
|
+
verbose_off {
|
|
351
|
+
rm_f fn
|
|
352
|
+
}
|
|
353
|
+
end
|
|
354
|
+
end
|
|
355
|
+
Dir.chdir '..'
|
|
356
|
+
Dir.rmdir dn
|
|
357
|
+
end
|
|
358
|
+
|
|
359
|
+
def mv( src, dest )
|
|
360
|
+
rm_f dest
|
|
361
|
+
begin
|
|
362
|
+
File.link src, dest
|
|
363
|
+
rescue
|
|
364
|
+
File.write dest, File.read_all(src)
|
|
365
|
+
File.chmod File.stat(src).mode, dest
|
|
366
|
+
end
|
|
367
|
+
rm_f src
|
|
368
|
+
end
|
|
369
|
+
|
|
370
|
+
def install( from, dest, mode, prefix = nil )
|
|
371
|
+
$stderr.puts "install #{from} #{dest}" if verbose?
|
|
372
|
+
return if no_harm?
|
|
373
|
+
|
|
374
|
+
realdest = prefix + dest if prefix
|
|
375
|
+
if dir? realdest
|
|
376
|
+
realdest += '/' + File.basename(from)
|
|
377
|
+
end
|
|
378
|
+
str = File.read_all(from)
|
|
379
|
+
if diff? str, realdest
|
|
380
|
+
verbose_off {
|
|
381
|
+
rm_f realdest if File.exist? realdest
|
|
382
|
+
}
|
|
383
|
+
File.write realdest, str
|
|
384
|
+
File.chmod mode, realdest
|
|
385
|
+
|
|
386
|
+
File.open(objdir + '/InstalledFiles', 'a') {|f| f.puts realdest }
|
|
387
|
+
end
|
|
388
|
+
end
|
|
389
|
+
|
|
390
|
+
def diff?( orig, targ )
|
|
391
|
+
return true unless File.exist? targ
|
|
392
|
+
orig != File.read_all(targ)
|
|
393
|
+
end
|
|
394
|
+
|
|
395
|
+
def command( str )
|
|
396
|
+
$stderr.puts str if verbose?
|
|
397
|
+
system str or raise RuntimeError, "'system #{str}' failed"
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
def ruby( str )
|
|
401
|
+
command config('ruby-prog') + ' ' + str
|
|
402
|
+
end
|
|
403
|
+
|
|
404
|
+
def dir?( dname )
|
|
405
|
+
# for corrupted windows stat()
|
|
406
|
+
File.directory?((dname[-1,1] == '/') ? dname : dname + '/')
|
|
407
|
+
end
|
|
408
|
+
|
|
409
|
+
def all_files( dname )
|
|
410
|
+
Dir.open(dname) {|d|
|
|
411
|
+
return d.find_all {|n| File.file? "#{dname}/#{n}" }
|
|
412
|
+
}
|
|
413
|
+
end
|
|
414
|
+
|
|
415
|
+
def all_dirs( dname )
|
|
416
|
+
Dir.open(dname) {|d|
|
|
417
|
+
return d.find_all {|n| dir? "#{dname}/#{n}" } - %w(. ..)
|
|
418
|
+
}
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
### end fileop.rb
|
|
424
|
+
### begin base.rb
|
|
425
|
+
|
|
426
|
+
class InstallError < StandardError; end
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
class Installer
|
|
430
|
+
|
|
431
|
+
Version = '3.1.3'
|
|
432
|
+
Copyright = 'Copyright (c) 2000-2002 Minero Aoki'
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
@toplevel = nil
|
|
436
|
+
|
|
437
|
+
def self.declear_toplevel_installer( inst )
|
|
438
|
+
@toplevel and
|
|
439
|
+
raise ArgumentError, 'more than one toplevel installer decleared'
|
|
440
|
+
@toplevel = inst
|
|
441
|
+
end
|
|
442
|
+
|
|
443
|
+
def self.toplevel_installer
|
|
444
|
+
@toplevel
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
FILETYPES = %w( bin lib ext data )
|
|
449
|
+
|
|
450
|
+
include FileOperations
|
|
451
|
+
|
|
452
|
+
def initialize( config, opt, srcroot, objroot )
|
|
453
|
+
@config = config
|
|
454
|
+
@options = opt
|
|
455
|
+
@srcdir = File.expand_path(srcroot)
|
|
456
|
+
@objdir = File.expand_path(objroot)
|
|
457
|
+
@currdir = '.'
|
|
458
|
+
end
|
|
459
|
+
|
|
460
|
+
def inspect
|
|
461
|
+
"#<#{self.class} #{__id__}>"
|
|
462
|
+
end
|
|
463
|
+
|
|
464
|
+
#
|
|
465
|
+
# configs/options
|
|
466
|
+
#
|
|
467
|
+
|
|
468
|
+
def get_config( key )
|
|
469
|
+
@config[key]
|
|
470
|
+
end
|
|
471
|
+
|
|
472
|
+
alias config get_config
|
|
473
|
+
|
|
474
|
+
def set_config( key, val )
|
|
475
|
+
@config[key] = val
|
|
476
|
+
end
|
|
477
|
+
|
|
478
|
+
def no_harm?
|
|
479
|
+
@options['no-harm']
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
def verbose?
|
|
483
|
+
@options['verbose']
|
|
484
|
+
end
|
|
485
|
+
|
|
486
|
+
def verbose_off
|
|
487
|
+
save, @options['verbose'] = @options['verbose'], false
|
|
488
|
+
yield
|
|
489
|
+
@options['verbose'] = save
|
|
490
|
+
end
|
|
491
|
+
|
|
492
|
+
#
|
|
493
|
+
# srcdir/objdir
|
|
494
|
+
#
|
|
495
|
+
|
|
496
|
+
attr_reader :srcdir
|
|
497
|
+
alias srcdir_root srcdir
|
|
498
|
+
alias package_root srcdir
|
|
499
|
+
|
|
500
|
+
def curr_srcdir
|
|
501
|
+
"#{@srcdir}/#{@currdir}"
|
|
502
|
+
end
|
|
503
|
+
|
|
504
|
+
attr_reader :objdir
|
|
505
|
+
alias objdir_root objdir
|
|
506
|
+
|
|
507
|
+
def curr_objdir
|
|
508
|
+
"#{@objdir}/#{@currdir}"
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
def srcfile( path )
|
|
512
|
+
curr_srcdir + '/' + path
|
|
513
|
+
end
|
|
514
|
+
|
|
515
|
+
def srcexist?( path )
|
|
516
|
+
File.exist? srcfile(path)
|
|
517
|
+
end
|
|
518
|
+
|
|
519
|
+
def srcdirectory?( path )
|
|
520
|
+
dir? srcfile(path)
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
def srcfile?( path )
|
|
524
|
+
File.file? srcfile(path)
|
|
525
|
+
end
|
|
526
|
+
|
|
527
|
+
def srcentries( path = '.' )
|
|
528
|
+
Dir.open(curr_srcdir + '/' + path) {|d|
|
|
529
|
+
return d.to_a - %w(. ..) - hookfilenames
|
|
530
|
+
}
|
|
531
|
+
end
|
|
532
|
+
|
|
533
|
+
def srcfiles( path = '.' )
|
|
534
|
+
srcentries(path).find_all {|fname|
|
|
535
|
+
File.file? File.join(curr_srcdir, path, fname)
|
|
536
|
+
}
|
|
537
|
+
end
|
|
538
|
+
|
|
539
|
+
def srcdirectories( path = '.' )
|
|
540
|
+
srcentries(path).find_all {|fname|
|
|
541
|
+
dir? File.join(curr_srcdir, path, fname)
|
|
542
|
+
}
|
|
543
|
+
end
|
|
544
|
+
|
|
545
|
+
def dive_into( rel )
|
|
546
|
+
return unless dir? "#{@srcdir}/#{rel}"
|
|
547
|
+
|
|
548
|
+
dir = File.basename(rel)
|
|
549
|
+
Dir.mkdir dir unless dir? dir
|
|
550
|
+
save = Dir.pwd
|
|
551
|
+
Dir.chdir dir
|
|
552
|
+
$stderr.puts '---> ' + rel if verbose?
|
|
553
|
+
@currdir = rel
|
|
554
|
+
yield
|
|
555
|
+
Dir.chdir save
|
|
556
|
+
$stderr.puts '<--- ' + rel if verbose?
|
|
557
|
+
@currdir = File.dirname(rel)
|
|
558
|
+
end
|
|
559
|
+
|
|
560
|
+
#
|
|
561
|
+
# config
|
|
562
|
+
#
|
|
563
|
+
|
|
564
|
+
def exec_config
|
|
565
|
+
exec_task_traverse 'config'
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
def config_dir_bin( rel )
|
|
569
|
+
end
|
|
570
|
+
|
|
571
|
+
def config_dir_lib( rel )
|
|
572
|
+
end
|
|
573
|
+
|
|
574
|
+
def config_dir_ext( rel )
|
|
575
|
+
extconf if extdir? curr_srcdir
|
|
576
|
+
end
|
|
577
|
+
|
|
578
|
+
def extconf
|
|
579
|
+
opt = @options['config-opt'].join(' ')
|
|
580
|
+
command "#{config('ruby-prog')} #{curr_srcdir}/extconf.rb #{opt}"
|
|
581
|
+
end
|
|
582
|
+
|
|
583
|
+
def config_dir_data( rel )
|
|
584
|
+
end
|
|
585
|
+
|
|
586
|
+
#
|
|
587
|
+
# setup
|
|
588
|
+
#
|
|
589
|
+
|
|
590
|
+
def exec_setup
|
|
591
|
+
exec_task_traverse 'setup'
|
|
592
|
+
end
|
|
593
|
+
|
|
594
|
+
def setup_dir_bin( relpath )
|
|
595
|
+
all_files(curr_srcdir).each do |fname|
|
|
596
|
+
add_rubypath "#{curr_srcdir}/#{fname}"
|
|
597
|
+
end
|
|
598
|
+
end
|
|
599
|
+
|
|
600
|
+
SHEBANG_RE = /\A\#!\s*\S*ruby\S*/
|
|
601
|
+
|
|
602
|
+
def add_rubypath( path )
|
|
603
|
+
$stderr.puts %Q<set #! line to "\#!#{config('ruby-path')}" for #{path} ...> if verbose?
|
|
604
|
+
return if no_harm?
|
|
605
|
+
|
|
606
|
+
tmpfile = File.basename(path) + '.tmp'
|
|
607
|
+
begin
|
|
608
|
+
File.open(path) {|r|
|
|
609
|
+
File.open(tmpfile, 'w') {|w|
|
|
610
|
+
first = r.gets
|
|
611
|
+
return unless SHEBANG_RE === first # reject '/usr/bin/env ruby'
|
|
612
|
+
|
|
613
|
+
w.print first.sub(SHEBANG_RE, '#!' + config('ruby-path'))
|
|
614
|
+
w.write r.read
|
|
615
|
+
} }
|
|
616
|
+
mv tmpfile, File.basename(path)
|
|
617
|
+
ensure
|
|
618
|
+
rm_f tmpfile if File.exist? tmpfile
|
|
619
|
+
end
|
|
620
|
+
end
|
|
621
|
+
|
|
622
|
+
def setup_dir_lib( relpath )
|
|
623
|
+
end
|
|
624
|
+
|
|
625
|
+
def setup_dir_ext( relpath )
|
|
626
|
+
make if extdir?(curr_srcdir)
|
|
627
|
+
end
|
|
628
|
+
|
|
629
|
+
def make
|
|
630
|
+
command config('make-prog')
|
|
631
|
+
end
|
|
632
|
+
|
|
633
|
+
def setup_dir_data( relpath )
|
|
634
|
+
end
|
|
635
|
+
|
|
636
|
+
#
|
|
637
|
+
# install
|
|
638
|
+
#
|
|
639
|
+
|
|
640
|
+
def exec_install
|
|
641
|
+
exec_task_traverse 'install'
|
|
642
|
+
end
|
|
643
|
+
|
|
644
|
+
def install_dir_bin( rel )
|
|
645
|
+
install_files targfiles, config('bin-dir') + '/' + rel, 0755
|
|
646
|
+
end
|
|
647
|
+
|
|
648
|
+
def install_dir_lib( rel )
|
|
649
|
+
install_files targfiles, config('rb-dir') + '/' + rel, 0644
|
|
650
|
+
end
|
|
651
|
+
|
|
652
|
+
def install_dir_ext( rel )
|
|
653
|
+
install_dir_ext_main File.dirname(rel) if extdir?(curr_srcdir)
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
def install_dir_ext_main( rel )
|
|
657
|
+
install_files allext('.'), config('so-dir') + '/' + rel, 0555
|
|
658
|
+
end
|
|
659
|
+
|
|
660
|
+
def install_dir_data( rel )
|
|
661
|
+
install_files targfiles, config('data-dir') + '/' + rel, 0644
|
|
662
|
+
end
|
|
663
|
+
|
|
664
|
+
def install_files( list, dest, mode )
|
|
665
|
+
mkdir_p dest, @options['install-prefix']
|
|
666
|
+
list.each do |fname|
|
|
667
|
+
install fname, dest, mode, @options['install-prefix']
|
|
668
|
+
end
|
|
669
|
+
end
|
|
670
|
+
|
|
671
|
+
def targfiles
|
|
672
|
+
(targfilenames() - hookfilenames()).collect {|fname|
|
|
673
|
+
File.exist?(fname) ? fname : File.join(curr_srcdir(), fname)
|
|
674
|
+
}
|
|
675
|
+
end
|
|
676
|
+
|
|
677
|
+
def targfilenames
|
|
678
|
+
[ curr_srcdir(), '.' ].inject([]) {|ret, dir|
|
|
679
|
+
ret | all_files(dir)
|
|
680
|
+
}
|
|
681
|
+
end
|
|
682
|
+
|
|
683
|
+
def hookfilenames
|
|
684
|
+
%w( pre-%s post-%s pre-%s.rb post-%s.rb ).collect {|fmt|
|
|
685
|
+
%w( config setup install clean ).collect {|t| sprintf fmt, t }
|
|
686
|
+
}.flatten
|
|
687
|
+
end
|
|
688
|
+
|
|
689
|
+
def allext( dir )
|
|
690
|
+
_allext(dir) or raise InstallError,
|
|
691
|
+
"no extention exists: Have you done 'ruby #{$0} setup' ?"
|
|
692
|
+
end
|
|
693
|
+
|
|
694
|
+
DLEXT = /\.#{ ::Config::CONFIG['DLEXT'] }\z/
|
|
695
|
+
|
|
696
|
+
def _allext( dir )
|
|
697
|
+
Dir.open(dir) {|d|
|
|
698
|
+
return d.find_all {|fname| DLEXT === fname }
|
|
699
|
+
}
|
|
700
|
+
end
|
|
701
|
+
|
|
702
|
+
#
|
|
703
|
+
# clean
|
|
704
|
+
#
|
|
705
|
+
|
|
706
|
+
def exec_clean
|
|
707
|
+
exec_task_traverse 'clean'
|
|
708
|
+
rm_f 'config.save'
|
|
709
|
+
rm_f 'InstalledFiles'
|
|
710
|
+
end
|
|
711
|
+
|
|
712
|
+
def clean_dir_bin( rel )
|
|
713
|
+
end
|
|
714
|
+
|
|
715
|
+
def clean_dir_lib( rel )
|
|
716
|
+
end
|
|
717
|
+
|
|
718
|
+
def clean_dir_ext( rel )
|
|
719
|
+
clean
|
|
720
|
+
end
|
|
721
|
+
|
|
722
|
+
def clean
|
|
723
|
+
command config('make-prog') + ' clean' if File.file? 'Makefile'
|
|
724
|
+
end
|
|
725
|
+
|
|
726
|
+
def clean_dir_data( rel )
|
|
727
|
+
end
|
|
728
|
+
|
|
729
|
+
#
|
|
730
|
+
# lib
|
|
731
|
+
#
|
|
732
|
+
|
|
733
|
+
def exec_task_traverse( task )
|
|
734
|
+
run_hook 'pre-' + task
|
|
735
|
+
FILETYPES.each do |type|
|
|
736
|
+
if config('without-ext') == 'yes' and type == 'ext'
|
|
737
|
+
$stderr.puts 'skipping ext/* by user option' if verbose?
|
|
738
|
+
next
|
|
739
|
+
end
|
|
740
|
+
traverse task, type, task + '_dir_' + type
|
|
741
|
+
end
|
|
742
|
+
run_hook 'post-' + task
|
|
743
|
+
end
|
|
744
|
+
|
|
745
|
+
def traverse( task, rel, mid )
|
|
746
|
+
dive_into(rel) {
|
|
747
|
+
run_hook 'pre-' + task
|
|
748
|
+
__send__ mid, rel.sub(%r_\A.*?(?:/|\z)_, '')
|
|
749
|
+
all_dirs(curr_srcdir).each do |d|
|
|
750
|
+
traverse task, rel + '/' + d, mid
|
|
751
|
+
end
|
|
752
|
+
run_hook 'post-' + task
|
|
753
|
+
}
|
|
754
|
+
end
|
|
755
|
+
|
|
756
|
+
def run_hook( name )
|
|
757
|
+
try_run_hook curr_srcdir + '/' + name or
|
|
758
|
+
try_run_hook curr_srcdir + '/' + name + '.rb'
|
|
759
|
+
end
|
|
760
|
+
|
|
761
|
+
def try_run_hook( fname )
|
|
762
|
+
return false unless File.file? fname
|
|
763
|
+
|
|
764
|
+
env = self.dup
|
|
765
|
+
begin
|
|
766
|
+
env.instance_eval File.read_all(fname), fname, 1
|
|
767
|
+
rescue
|
|
768
|
+
raise InstallError, "hook #{fname} failed:\n" + $!.message
|
|
769
|
+
end
|
|
770
|
+
true
|
|
771
|
+
end
|
|
772
|
+
|
|
773
|
+
def extdir?( dir )
|
|
774
|
+
File.exist? dir + '/MANIFEST'
|
|
775
|
+
end
|
|
776
|
+
|
|
777
|
+
end
|
|
778
|
+
|
|
779
|
+
### end base.rb
|
|
780
|
+
### begin toplevel.rb
|
|
781
|
+
|
|
782
|
+
class ToplevelInstaller < Installer
|
|
783
|
+
|
|
784
|
+
TASKS = [
|
|
785
|
+
[ 'config', 'saves your configurations' ],
|
|
786
|
+
[ 'show', 'shows current configuration' ],
|
|
787
|
+
[ 'setup', 'compiles extention or else' ],
|
|
788
|
+
[ 'install', 'installs files' ],
|
|
789
|
+
[ 'clean', "does `make clean' for each extention" ]
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
def initialize( root )
|
|
794
|
+
super nil, {'verbose' => true}, root, '.'
|
|
795
|
+
Installer.declear_toplevel_installer self
|
|
796
|
+
end
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
def execute
|
|
800
|
+
run_metaconfigs
|
|
801
|
+
|
|
802
|
+
case task = parsearg_global()
|
|
803
|
+
when 'config'
|
|
804
|
+
@config = ConfigTable.new
|
|
805
|
+
else
|
|
806
|
+
@config = ConfigTable.load
|
|
807
|
+
end
|
|
808
|
+
parsearg_TASK task
|
|
809
|
+
|
|
810
|
+
exectask task
|
|
811
|
+
end
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
def run_metaconfigs
|
|
815
|
+
MetaConfigEnvironment.eval_file "#{srcdir_root()}/#{metaconfig()}"
|
|
816
|
+
end
|
|
817
|
+
|
|
818
|
+
def metaconfig
|
|
819
|
+
'metaconfig'
|
|
820
|
+
end
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
def exectask( task )
|
|
824
|
+
if task == 'show'
|
|
825
|
+
exec_show
|
|
826
|
+
else
|
|
827
|
+
try task
|
|
828
|
+
end
|
|
829
|
+
end
|
|
830
|
+
|
|
831
|
+
def try( task )
|
|
832
|
+
$stderr.printf "#{File.basename $0}: entering %s phase...\n", task if verbose?
|
|
833
|
+
begin
|
|
834
|
+
__send__ 'exec_' + task
|
|
835
|
+
rescue
|
|
836
|
+
$stderr.printf "%s failed\n", task
|
|
837
|
+
raise
|
|
838
|
+
end
|
|
839
|
+
$stderr.printf "#{File.basename $0}: %s done.\n", task if verbose?
|
|
840
|
+
end
|
|
841
|
+
|
|
842
|
+
#
|
|
843
|
+
# processing arguments
|
|
844
|
+
#
|
|
845
|
+
|
|
846
|
+
def parsearg_global
|
|
847
|
+
task_re = /\A(?:#{TASKS.collect {|i| i[0] }.join '|'})\z/
|
|
848
|
+
|
|
849
|
+
while arg = ARGV.shift
|
|
850
|
+
case arg
|
|
851
|
+
when /\A\w+\z/
|
|
852
|
+
task_re === arg or raise InstallError, "wrong task: #{arg}"
|
|
853
|
+
return arg
|
|
854
|
+
|
|
855
|
+
when '-q', '--quiet'
|
|
856
|
+
@options['verbose'] = false
|
|
857
|
+
|
|
858
|
+
when '--verbose'
|
|
859
|
+
@options['verbose'] = true
|
|
860
|
+
|
|
861
|
+
when '-h', '--help'
|
|
862
|
+
print_usage $stdout
|
|
863
|
+
exit 0
|
|
864
|
+
|
|
865
|
+
when '-v', '--version'
|
|
866
|
+
puts "#{File.basename $0} version #{Version}"
|
|
867
|
+
exit 0
|
|
868
|
+
|
|
869
|
+
when '--copyright'
|
|
870
|
+
puts Copyright
|
|
871
|
+
exit 0
|
|
872
|
+
|
|
873
|
+
else
|
|
874
|
+
raise InstallError, "unknown global option '#{arg}'"
|
|
875
|
+
end
|
|
876
|
+
end
|
|
877
|
+
|
|
878
|
+
raise InstallError, "No task or global option given.
|
|
879
|
+
Typical installation procedure is:
|
|
880
|
+
$ ruby #{File.basename $0} config
|
|
881
|
+
$ ruby #{File.basename $0} setup
|
|
882
|
+
# ruby #{File.basename $0} install (may require root privilege)
|
|
883
|
+
"
|
|
884
|
+
end
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
def parsearg_TASK( task )
|
|
888
|
+
mid = "parsearg_#{task}"
|
|
889
|
+
if respond_to? mid, true
|
|
890
|
+
__send__ mid
|
|
891
|
+
else
|
|
892
|
+
ARGV.empty? or
|
|
893
|
+
raise InstallError, "#{task}: unknown options: #{ARGV.join ' '}"
|
|
894
|
+
end
|
|
895
|
+
end
|
|
896
|
+
|
|
897
|
+
def parsearg_config
|
|
898
|
+
re = /\A--(#{ConfigTable.keys.join '|'})(?:=(.*))?\z/
|
|
899
|
+
@options['config-opt'] = []
|
|
900
|
+
|
|
901
|
+
while i = ARGV.shift
|
|
902
|
+
if /\A--?\z/ === i
|
|
903
|
+
@options['config-opt'] = ARGV.dup
|
|
904
|
+
break
|
|
905
|
+
end
|
|
906
|
+
m = re.match(i) or raise InstallError, "config: unknown option #{i}"
|
|
907
|
+
name, value = m.to_a[1,2]
|
|
908
|
+
if value
|
|
909
|
+
if ConfigTable.bool_config?(name)
|
|
910
|
+
/\A(y(es)?|n(o)?|t(rue)?|f(alse))\z/i === value or raise InstallError, "config: --#{name} allows only yes/no for argument"
|
|
911
|
+
value = (/\Ay(es)?|\At(rue)/i === value) ? 'yes' : 'no'
|
|
912
|
+
end
|
|
913
|
+
else
|
|
914
|
+
ConfigTable.bool_config?(name) or raise InstallError, "config: --#{name} requires argument"
|
|
915
|
+
value = 'yes'
|
|
916
|
+
end
|
|
917
|
+
@config[name] = value
|
|
918
|
+
end
|
|
919
|
+
end
|
|
920
|
+
|
|
921
|
+
def parsearg_install
|
|
922
|
+
@options['no-harm'] = false
|
|
923
|
+
@options['install-prefix'] = ''
|
|
924
|
+
while a = ARGV.shift
|
|
925
|
+
case a
|
|
926
|
+
when /\A--no-harm\z/
|
|
927
|
+
@options['no-harm'] = true
|
|
928
|
+
when /\A--prefix=(.*)\z/
|
|
929
|
+
path = $1
|
|
930
|
+
path = File.expand_path(path) unless path[0,1] == '/'
|
|
931
|
+
@options['install-prefix'] = path
|
|
932
|
+
else
|
|
933
|
+
raise InstallError, "install: unknown option #{a}"
|
|
934
|
+
end
|
|
935
|
+
end
|
|
936
|
+
end
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
def print_usage( out )
|
|
940
|
+
out.puts 'Typical Installation Procedure:'
|
|
941
|
+
out.puts " $ ruby #{File.basename $0} config"
|
|
942
|
+
out.puts " $ ruby #{File.basename $0} setup"
|
|
943
|
+
out.puts " # ruby #{File.basename $0} install (may require root privilege)"
|
|
944
|
+
out.puts
|
|
945
|
+
out.puts 'Detailed Usage:'
|
|
946
|
+
out.puts " ruby #{File.basename $0} <global option>"
|
|
947
|
+
out.puts " ruby #{File.basename $0} [<global options>] <task> [<task options>]"
|
|
948
|
+
|
|
949
|
+
fmt = " %-20s %s\n"
|
|
950
|
+
out.puts
|
|
951
|
+
out.puts 'Global options:'
|
|
952
|
+
out.printf fmt, '-q,--quiet', 'suppress message outputs'
|
|
953
|
+
out.printf fmt, ' --verbose', 'output messages verbosely'
|
|
954
|
+
out.printf fmt, '-h,--help', 'print this message'
|
|
955
|
+
out.printf fmt, '-v,--version', 'print version and quit'
|
|
956
|
+
out.printf fmt, ' --copyright', 'print copyright and quit'
|
|
957
|
+
|
|
958
|
+
out.puts
|
|
959
|
+
out.puts 'Tasks:'
|
|
960
|
+
TASKS.each do |name, desc|
|
|
961
|
+
out.printf " %-10s %s\n", name, desc
|
|
962
|
+
end
|
|
963
|
+
|
|
964
|
+
out.puts
|
|
965
|
+
out.puts 'Options for config:'
|
|
966
|
+
ConfigTable.each_definition do |name, (default, arg, desc, default2)|
|
|
967
|
+
out.printf " %-20s %s [%s]\n",
|
|
968
|
+
'--'+ name + (ConfigTable.bool_config?(name) ? '' : '='+arg),
|
|
969
|
+
desc,
|
|
970
|
+
default2 || default
|
|
971
|
+
end
|
|
972
|
+
out.printf " %-20s %s [%s]\n",
|
|
973
|
+
'--rbconfig=path', 'your rbconfig.rb to load', "running ruby's"
|
|
974
|
+
|
|
975
|
+
out.puts
|
|
976
|
+
out.puts 'Options for install:'
|
|
977
|
+
out.printf " %-20s %s [%s]\n",
|
|
978
|
+
'--no-harm', 'only display what to do if given', 'off'
|
|
979
|
+
out.printf " %-20s %s [%s]\n",
|
|
980
|
+
'--prefix', 'install path prefix', '$prefix'
|
|
981
|
+
|
|
982
|
+
out.puts
|
|
983
|
+
end
|
|
984
|
+
|
|
985
|
+
#
|
|
986
|
+
# config
|
|
987
|
+
#
|
|
988
|
+
|
|
989
|
+
def exec_config
|
|
990
|
+
super
|
|
991
|
+
@config.save
|
|
992
|
+
end
|
|
993
|
+
|
|
994
|
+
#
|
|
995
|
+
# show
|
|
996
|
+
#
|
|
997
|
+
|
|
998
|
+
def exec_show
|
|
999
|
+
ConfigTable.each_name do |k|
|
|
1000
|
+
v = @config.get_raw(k)
|
|
1001
|
+
if not v or v.empty?
|
|
1002
|
+
v = '(not specified)'
|
|
1003
|
+
end
|
|
1004
|
+
printf "%-10s %s\n", k, v
|
|
1005
|
+
end
|
|
1006
|
+
end
|
|
1007
|
+
|
|
1008
|
+
end
|
|
1009
|
+
|
|
1010
|
+
### end toplevel.rb
|
|
1011
|
+
|
|
1012
|
+
if $0 == __FILE__
|
|
1013
|
+
begin
|
|
1014
|
+
installer = ToplevelInstaller.new(File.dirname($0))
|
|
1015
|
+
installer.execute
|
|
1016
|
+
rescue
|
|
1017
|
+
raise if $DEBUG
|
|
1018
|
+
$stderr.puts $!.message
|
|
1019
|
+
$stderr.puts "Try 'ruby #{$0} --help' for detailed usage."
|
|
1020
|
+
exit 1
|
|
1021
|
+
end
|
|
1022
|
+
end
|