src.mk 22.0 KB
Newer Older
1 2
# These are the sources from which librocksdb.a is built:
LIB_SOURCES =                                                   \
3
  db/auto_roll_logger.cc                                        \
4 5 6
  db/builder.cc                                                 \
  db/c.cc                                                       \
  db/column_family.cc                                           \
7
  db/compacted_db_impl.cc                                       \
8
  db/compaction.cc                                              \
9
  db/compaction_iterator.cc                                     \
10 11
  db/compaction_job.cc                                          \
  db/compaction_picker.cc                                       \
A
agiardullo 已提交
12
  db/convenience.cc                                             \
13 14 15 16 17
  db/db_filesnapshot.cc                                         \
  db/dbformat.cc                                                \
  db/db_impl.cc                                                 \
  db/db_impl_debug.cc                                           \
  db/db_impl_readonly.cc                                        \
18
  db/db_impl_experimental.cc                                    \
19
  db/db_impl_add_file.cc                                        \
20
  db/db_info_dumper.cc                                          \
21
  db/db_iter.cc                                                 \
22
  db/experimental.cc                                            \
23
  db/event_helpers.cc                                           \
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
  db/file_indexer.cc                                            \
  db/filename.cc                                                \
  db/flush_job.cc                                               \
  db/flush_scheduler.cc                                         \
  db/forward_iterator.cc                                        \
  db/internal_stats.cc                                          \
  db/log_reader.cc                                              \
  db/log_writer.cc                                              \
  db/managed_iterator.cc                                        \
  db/memtable_allocator.cc                                      \
  db/memtable.cc                                                \
  db/memtable_list.cc                                           \
  db/merge_helper.cc                                            \
  db/merge_operator.cc                                          \
  db/repair.cc                                                  \
A
agiardullo 已提交
39
  db/snapshot_impl.cc                                           \
40 41 42 43 44 45 46 47
  db/table_cache.cc                                             \
  db/table_properties_collector.cc                              \
  db/transaction_log_impl.cc                                    \
  db/version_builder.cc                                         \
  db/version_edit.cc                                            \
  db/version_set.cc                                             \
  db/wal_manager.cc                                             \
  db/write_batch.cc                                             \
48
  db/write_batch_base.cc                                        \
49 50
  db/write_controller.cc                                        \
  db/write_thread.cc                                            \
51
  db/xfunc_test_points.cc                                       \
52 53 54
  memtable/hash_cuckoo_rep.cc                                   \
  memtable/hash_linklist_rep.cc                                 \
  memtable/hash_skiplist_rep.cc                                 \
55 56
  memtable/skiplistrep.cc                                       \
  memtable/vectorrep.cc                                         \
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
  port/stack_trace.cc                                           \
  port/port_posix.cc                                            \
  table/adaptive_table_factory.cc                               \
  table/block_based_filter_block.cc                             \
  table/block_based_table_builder.cc                            \
  table/block_based_table_factory.cc                            \
  table/block_based_table_reader.cc                             \
  table/block_builder.cc                                        \
  table/block.cc                                                \
  table/block_prefix_index.cc                                   \
  table/bloom_block.cc                                          \
  table/cuckoo_table_builder.cc                                 \
  table/cuckoo_table_factory.cc                                 \
  table/cuckoo_table_reader.cc                                  \
  table/flush_block_policy.cc                                   \
  table/format.cc                                               \
  table/full_filter_block.cc                                    \
  table/get_context.cc                                          \
  table/iterator.cc                                             \
  table/merger.cc                                               \
  table/meta_blocks.cc                                          \
78
  table/sst_file_writer.cc                                      \
79 80 81 82 83
  table/plain_table_builder.cc                                  \
  table/plain_table_factory.cc                                  \
  table/plain_table_index.cc                                    \
  table/plain_table_key_coding.cc                               \
  table/plain_table_reader.cc                                   \
K
krad 已提交
84
  table/persistent_cache_helper.cc                              \
85 86
  table/table_properties.cc                                     \
  table/two_level_iterator.cc                                   \
87
  tools/dump/db_dump_tool.cc                                    \
88 89 90 91 92
  util/arena.cc                                                 \
  util/bloom.cc                                                 \
  util/build_version.cc                                         \
  util/coding.cc                                                \
  util/comparator.cc                                            \
93
  util/compaction_job_stats_impl.cc                             \
94
  util/concurrent_arena.cc                                      \
95
  util/crc32c.cc                                                \
96
  util/delete_scheduler.cc                                      \
97 98
  util/dynamic_bloom.cc                                         \
  util/env.cc                                                   \
A
Andrew Kryczka 已提交
99
  util/env_chroot.cc                                            \
100 101 102
  util/env_hdfs.cc                                              \
  util/env_posix.cc                                             \
  util/file_util.cc                                             \
103
  util/file_reader_writer.cc                                    \
104 105 106
  util/filter_policy.cc                                         \
  util/hash.cc                                                  \
  util/histogram.cc                                             \
Y
Yi Wu 已提交
107
  util/histogram_windowing.cc                                   \
108 109
  util/instrumented_mutex.cc                                    \
  util/iostats_context.cc                                       \
Y
Yi Wu 已提交
110 111 112 113 114 115
  util/io_posix.cc                                              \
  util/lru_cache.cc                                             \
  util/threadpool.cc                                            \
  util/transaction_test_util.cc                                 \
	util/sharded_cache.cc       																	\
  util/sst_file_manager_impl.cc                                 \
116
  utilities/backupable/backupable_db.cc                         \
117
  utilities/convenience/info_log_finder.cc                      \
118
  utilities/checkpoint/checkpoint.cc                            \
119
  utilities/compaction_filters/remove_emptyvalue_compactionfilter.cc    \
120
  utilities/document/document_db.cc                             \
121
  utilities/document/json_document_builder.cc                   \
122
  utilities/document/json_document.cc                           \
S
Sage Weil 已提交
123
  utilities/env_mirror.cc                                       \
124
  utilities/env_registry.cc                                     \
125
  utilities/flashcache/flashcache.cc                            \
126 127
  utilities/geodb/geodb_impl.cc                                 \
  utilities/leveldb_options/leveldb_options.cc                  \
128
  utilities/memory/memory_util.cc                               \
129
  utilities/merge_operators/put.cc                              \
130
  utilities/merge_operators/max.cc                              \
131 132 133
  utilities/merge_operators/string_append/stringappend2.cc      \
  utilities/merge_operators/string_append/stringappend.cc       \
  utilities/merge_operators/uint64add.cc                        \
134
  utilities/options/options_util.cc                             \
135
  utilities/persistent_cache/persistent_cache_tier.cc           \
136
  utilities/persistent_cache/volatile_tier_impl.cc              \
137
  utilities/redis/redis_lists.cc                                \
138
  utilities/simulator_cache/sim_cache.cc                        \
139
  utilities/spatialdb/spatial_db.cc                             \
140
  utilities/table_properties_collectors/compact_on_deletion_collector.cc \
A
agiardullo 已提交
141 142
  utilities/transactions/optimistic_transaction_impl.cc         \
  utilities/transactions/optimistic_transaction_db_impl.cc      \
A
agiardullo 已提交
143
  utilities/transactions/transaction_base.cc                    \
A
agiardullo 已提交
144
  utilities/transactions/transaction_db_impl.cc                 \
A
agiardullo 已提交
145
  utilities/transactions/transaction_db_mutex_impl.cc           \
A
agiardullo 已提交
146 147 148
  utilities/transactions/transaction_lock_mgr.cc                \
  utilities/transactions/transaction_impl.cc                    \
  utilities/transactions/transaction_util.cc                    \
149 150
  utilities/ttl/db_ttl_impl.cc                                  \
  utilities/write_batch_with_index/write_batch_with_index.cc    \
151
  utilities/write_batch_with_index/write_batch_with_index_internal.cc    \
I
Igor Canadi 已提交
152
  util/event_logger.cc                                          \
153 154 155 156 157 158 159
  util/log_buffer.cc                                            \
  util/logging.cc                                               \
  util/memenv.cc                                                \
  util/murmurhash.cc                                            \
  util/mutable_cf_options.cc                                    \
  util/options.cc                                               \
  util/options_helper.cc                                        \
160
  util/options_parser.cc                                        \
Y
Yueh-Hsuan Chiang 已提交
161
  util/options_sanity_check.cc                                  \
162
  util/perf_context.cc                                          \
163
  util/perf_level.cc                                            \
164
  util/random.cc                                                \
165 166 167 168
  util/rate_limiter.cc                                          \
  util/slice.cc                                                 \
  util/statistics.cc                                            \
  util/status.cc                                                \
A
agiardullo 已提交
169
  util/status_message.cc                                        \
170 171 172 173 174 175 176 177 178 179 180
  util/string_util.cc                                           \
  util/sync_point.cc                                            \
  util/thread_local.cc                                          \
  util/thread_status_impl.cc                                    \
  util/thread_status_updater.cc                                 \
  util/thread_status_updater_debug.cc                           \
  util/thread_status_util.cc                                    \
  util/thread_status_util_debug.cc                              \
  util/xfunc.cc                                                 \
  util/xxhash.cc                                                \

O
omegaga 已提交
181
TOOL_LIB_SOURCES = \
182 183 184
  tools/ldb_cmd.cc                                               \
  tools/ldb_tool.cc                                              \
  tools/sst_dump_tool.cc                                         \
E
Evan Shaw 已提交
185

O
omegaga 已提交
186
MOCK_LIB_SOURCES = \
187
  table/mock_table.cc \
188 189
  util/mock_env.cc \
  util/fault_injection_test_env.cc
190

O
omegaga 已提交
191
BENCH_LIB_SOURCES = \
192 193
  tools/db_bench_tool.cc

O
omegaga 已提交
194 195 196 197 198 199
TEST_LIB_SOURCES = \
  util/testharness.cc                                                   \
  util/testutil.cc                                                      \
  db/db_test_util.cc

MAIN_SOURCES =                                                    \
I
Igor Sugak 已提交
200
  third-party/gtest-1.7.0/fused-src/gtest/gtest-all.cc                  \
201
  db/auto_roll_logger_test.cc                                           \
202 203
  db/column_family_test.cc                                              \
  db/compaction_job_test.cc                                             \
204
  db/compaction_job_stats_test.cc                                       \
205 206 207 208 209 210 211
  db/compaction_picker_test.cc                                          \
  db/comparator_db_test.cc                                              \
  db/corruption_test.cc                                                 \
  db/cuckoo_table_db_test.cc                                            \
  db/dbformat_test.cc                                                   \
  db/db_iter_test.cc                                                    \
  db/db_test.cc                                                         \
Y
Yi Wu 已提交
212
	db/db_block_cache_test.cc																							\
O
omegaga 已提交
213
  db/db_io_failure_test.cc                                              \
Y
Yi Wu 已提交
214
  db/db_bloom_filter_test.cc                                            \
215
  db/db_compaction_filter_test.cc                                       \
216
  db/db_compaction_test.cc                                              \
217
  db/db_dynamic_level_test.cc                                           \
218
  db/db_inplace_update_test.cc                                          \
Y
Yi Wu 已提交
219
	db/db_iterator_test.cc																								\
220
  db/db_log_iter_test.cc                                                \
221
	db/db_options_test.cc																									\
Y
Yi Wu 已提交
222
	db/db_sst_test.cc																											\
223
  db/db_tailing_iter_test.cc                                            \
Y
Yi Wu 已提交
224
  db/db_universal_compaction_test.cc                                    \
S
sdong 已提交
225
  db/db_wal_test.cc                                                     \
226
  db/db_table_properties_test.cc                                        \
227 228 229 230 231
  db/deletefile_test.cc                                                 \
  db/fault_injection_test.cc                                            \
  db/file_indexer_test.cc                                               \
  db/filename_test.cc                                                   \
  db/flush_job_test.cc                                                  \
N
Nathan Bronson 已提交
232
  db/inlineskiplist_test.cc                                             \
233 234
  db/listener_test.cc                                                   \
  db/log_test.cc                                                        \
235
  db/manual_compaction_test.cc                                          \
236 237
  db/memtablerep_bench.cc                                               \
  db/merge_test.cc                                                      \
238
  db/options_file_test.cc                                               \
239 240 241 242 243 244 245 246 247 248 249
  db/perf_context_test.cc                                               \
  db/plain_table_db_test.cc                                             \
  db/prefix_test.cc                                                     \
  db/skiplist_test.cc                                                   \
  db/table_properties_collector_test.cc                                 \
  db/version_builder_test.cc                                            \
  db/version_edit_test.cc                                               \
  db/version_set_test.cc                                                \
  db/wal_manager_test.cc                                                \
  db/write_batch_test.cc                                                \
  db/write_controller_test.cc                                           \
A
agiardullo 已提交
250
  db/write_callback_test.cc                                             \
251 252 253 254 255 256 257 258
  table/block_based_filter_block_test.cc                                \
  table/block_test.cc                                                   \
  table/cuckoo_table_builder_test.cc                                    \
  table/cuckoo_table_reader_test.cc                                     \
  table/full_filter_block_test.cc                                       \
  table/merger_test.cc                                                  \
  table/table_reader_bench.cc                                           \
  table/table_test.cc                                                   \
O
omegaga 已提交
259
  tools/db_bench.cc                                                     \
260
  tools/db_bench_tool_test.cc                                           \
261
  tools/db_sanity_test.cc                                               \
262
  tools/ldb_cmd_test.cc                                                 \
263
  tools/reduce_levels_test.cc                                           \
264
  tools/sst_dump_test.cc                                                \
265 266 267 268 269 270 271 272
  util/arena_test.cc                                                    \
  util/autovector_test.cc                                               \
  util/bloom_test.cc                                                    \
  util/cache_bench.cc                                                   \
  util/cache_test.cc                                                    \
  util/coding_test.cc                                                   \
  util/crc32c_test.cc                                                   \
  util/dynamic_bloom_test.cc                                            \
273
  util/env_basic_test.cc                                                \
274 275 276 277
  util/env_test.cc                                                      \
  util/filelock_test.cc                                                 \
  util/histogram_test.cc                                                \
  utilities/backupable/backupable_db_test.cc                            \
278
  utilities/checkpoint/checkpoint_test.cc                               \
279 280
  utilities/document/document_db_test.cc                                \
  utilities/document/json_document_test.cc                              \
281
  utilities/env_registry_test.cc                                        \
282
  utilities/geodb/geodb_test.cc                                         \
283
  utilities/memory/memory_test.cc                                       \
284
  utilities/merge_operators/string_append/stringappend_test.cc          \
285
  utilities/options/options_util_test.cc                                \
286
  utilities/redis/redis_lists_test.cc                                   \
287
  utilities/simulator_cache/sim_cache_test.cc                           \
288
  utilities/spatialdb/spatial_db_test.cc                                \
289 290
  utilities/table_properties_collectors/compact_on_deletion_collector_test.cc  \
  utilities/transactions/optimistic_transaction_test.cc                 \
A
agiardullo 已提交
291
  utilities/transactions/transaction_test.cc                            \
292
  utilities/ttl/ttl_test.cc                                             \
293
  utilities/write_batch_with_index/write_batch_with_index_test.cc       \
294
	util/iostats_context_test.cc																					\
295 296 297
  util/log_write_bench.cc                                               \
  util/mock_env_test.cc                                                 \
  util/options_test.cc                                                  \
I
Igor Canadi 已提交
298
  util/event_logger_test.cc                                             \
299 300 301
  util/rate_limiter_test.cc                                             \
  util/slice_transform_test.cc                                          \
  util/thread_list_test.cc                                              \
302
  util/thread_local_test.cc
303

304
JNI_NATIVE_SOURCES =                                          \
305
  java/rocksjni/backupenginejni.cc                            \
306 307 308
  java/rocksjni/backupablejni.cc                              \
  java/rocksjni/checkpoint.cc                                 \
  java/rocksjni/columnfamilyhandle.cc                         \
309
  java/rocksjni/compaction_filter.cc                          \
310 311 312 313 314 315 316 317 318 319
  java/rocksjni/comparator.cc                                 \
  java/rocksjni/comparatorjnicallback.cc                      \
  java/rocksjni/env.cc                                        \
  java/rocksjni/filter.cc                                     \
  java/rocksjni/iterator.cc                                   \
  java/rocksjni/loggerjnicallback.cc                          \
  java/rocksjni/memtablejni.cc                                \
  java/rocksjni/merge_operator.cc                             \
  java/rocksjni/options.cc                                    \
  java/rocksjni/ratelimiterjni.cc                             \
320
  java/rocksjni/remove_emptyvalue_compactionfilterjni.cc      \
321 322 323 324 325 326 327 328 329 330 331 332 333
  java/rocksjni/restorejni.cc                                 \
  java/rocksjni/rocksjni.cc                                   \
  java/rocksjni/slice.cc                                      \
  java/rocksjni/snapshot.cc                                   \
  java/rocksjni/statistics.cc                                 \
  java/rocksjni/table.cc                                      \
  java/rocksjni/transaction_log.cc                            \
  java/rocksjni/ttl.cc                                        \
  java/rocksjni/write_batch.cc                                \
  java/rocksjni/writebatchhandlerjnicallback.cc               \
  java/rocksjni/write_batch_test.cc                           \
  java/rocksjni/write_batch_with_index.cc

334 335 336 337 338 339
# Currently, we do not generate dependencies for
# java/rocksjni/write_batch_test.cc, because its dependent,
# java/include/org_rocksdb_WriteBatch.h is generated.
# TODO/FIXME: fix the above.  Otherwise, the current rules would fail:
#   java/rocksjni/write_batch_test.cc:13:44: fatal error: include/org_rocksdb_WriteBatch.h: No such file or directory
#    #include "include/org_rocksdb_WriteBatch.h"
V
Venkatesh Radhakrishnan 已提交
340 341 342 343 344 345

# These are the xfunc tests run :
XFUNC_TESTS =                                                   \
  "managed_new"                                                 \
  "managed_xftest_dropold"                                      \
  "managed_xftest_release"                                      \
A
agiardullo 已提交
346 347
  "inplace_lock_test"                                           \
  "transaction"