]> mj.ucw.cz Git - libucw.git/blob - cf/libucw
Moved setting of CONFIG_DIR to defaults.cfg.
[libucw.git] / cf / libucw
1 # Configuration of the UCW library and related utilities (included by cf/sherlock)
2
3 ######## Memory Mapped Access to Files ##########################################
4
5 # Whenever you specify 0 for I/O buffer size, memory mapping is used instead.
6 FBMMap {
7
8 # Map this many bytes at once (needs to be a multiple of CPU page size)
9 WindowSize              1M
10
11 # When in need to extend a file, grow it by so many bytes (>= page size)
12 ExtendSize              1M
13
14 }
15
16 ######## Direct Streamed I/O on Files ###########################################
17
18 FBDirect {
19
20 # Debug: Cheat by turning off O_DIRECT
21 #Cheat                  1
22
23 }
24
25 ######## Atomic Multi-Threaded I/O on Files #####################################
26
27 FBAtomic {
28
29 # Enable tracing
30 #Trace                  1
31
32 }
33
34 ######## Parametrized I/O on Files ##############################################
35
36 FBParam {
37
38 Defaults {
39
40 # Access type (std|direct|mmap).
41 Type                    std
42
43 # Size of I/O buffer. Something of the order of megabytes for fast disks is recommended for direct I/O.
44 BufSize                 64K
45
46 # Optimize for mixed forward/backward reading (standard I/O only)
47 KeepBackBuf             0
48
49 # Perform read-ahead (direct I/O only)
50 ReadAhead               1
51
52 # Maximum number of write-back requests queued (direct I/O only)
53 WriteBack               1
54
55 }
56
57 }
58
59 ######## Temporary files ########################################################
60
61 Tempfiles {
62
63 # By default, we use the system's default temporary directory ($TMPDIR or /tmp),
64 # but sometimes it is better to store the temporary files in the local tree.
65 Dir                     tmp
66
67 # Prefix of temporary file names
68 Prefix                  temp-
69
70 # By default, we append a random number to Prefix to get a temporary file name.
71 # If Prefix points to a directory that is not writable by malicious users,
72 # we can be less careful and use more consistent names of temporary files
73 # formed by adding "pid(-tid)-counter" instead.
74 PublicDir               0
75
76 }
77
78 ######## Threads ################################################################
79
80 Threads {
81
82 # Default thread stack size
83 DefaultStackSize        64K
84
85 }
86
87 ######## Sorter #################################################################
88
89 Sorter {
90
91 # Trace sorting (1=basic statistics, 2=more stats, 3 and more for debugging)
92 Trace                   2
93
94 # Trace array sorting (internal sorters)
95 TraceArray              0
96
97 # How much memory is the sorter allowed to use
98 SortBuffer              4M
99
100 # File access used by the sorter (see FBParam section for details)
101 FileAccess              std 256K
102
103 # Use a different file access method for small inputs (less than the specified size)
104 SmallFileAccess         std 64K
105 SmallInput              64M
106
107 # Min-/Maximum number of bits to use in the external radix-sort (beware, we will open
108 # 1+2^this files and require a stream buffer for each of them; however, while we are
109 # doing that, the sort buffer is not allocated). Set both to zero to disable radix-sorting.
110 MinRadixBits            2
111 MaxRadixBits            4
112
113 # The same for multi-way merging. The memory requirements are also the same,
114 # but please keep in mind that this can create lots of SortBuffer-sized files,
115 # so it is probably better to keep it disabled if you have a small SortBuffer.
116 MinMultiwayBits         2
117 MaxMultiwayBits         4
118
119 # If we did not use radix-sorter to the full width, we still might add some more
120 # bits to the width to get chunks which are even smaller than SortBuffer, because
121 # it can speed up internal sorting later. However, we also want to avoid small
122 # files, so we add only a little.
123 AddRadixBits            2
124
125 # Number of threads used for sorting (0=disable threading)
126 Threads                 0
127
128 # Minimum size of input (in bytes) to consider multi-threaded internal sorting
129 ThreadThreshold         1M
130
131 # Chunks smaller than ThreadThreshold are sorted by a sequential algorithm, but
132 # if they are at least of the following size, different chunks are sorted in
133 # parallel. There is a slight space penalty for setting up the parallel process,
134 # so better avoid setting this number too small.
135 ThreadChunk             256
136
137 # Internal radix-sort stops at this size and switches to QuickSort (must be >0)
138 RadixThreshold          4K
139
140 # Debugging switches (see the source)
141 Debug                   0
142
143 }
144
145 ######## URL processing #########################################################
146
147 URL {
148
149 # Ignore spaces at the start/end of a URL
150 IgnoreSpaces            1
151
152 # Ignore underflows in relative paths (/../ from root)
153 IgnoreUnderflow         1
154
155 # Some URL's with many repeated components are filtered out to avoid infinite
156 # URL's (e.g. http://czech.recoder.cz/win/iso/win/iso/file.html, or
157 # http://a.com/?a=b&a=b&a=b, ...).
158 # The URL is split to components divided by any of the specified separators.
159 # Then the separators are forgotten and the components between them are
160 # examined.
161 ComponentSeparators     /&?
162
163 # URL is filtered out if there's a sequence of components in a row with at most
164 # MaxRepeatLength components and the sequence is repeated more than MinRepeatCount
165 # times.  Default values are high MinRepeatCount and low MaxRepeatLength, so the
166 # mechanism is disabled.
167 MinRepeatCount          4
168 MaxRepeatLength         4
169
170 # Maximum number of occurences of a single component in the entire URL (possibly interleaved
171 # by different components). The detector is disabled by default.
172 MaxOccurences           4
173
174 }