Skip to content

Commit 98f7cac

Browse files
committed
ARROW-1142: [C++] Port over compression toolchain and interfaces from parquet-cpp, use Arrow-style error handling
Author: Wes McKinney <[email protected]> Closes apache#771 from wesm/import-parquet-compression and squashes the following commits: b7609f8 [Wes McKinney] Boost toolchain tweaks 44e77a6 [Wes McKinney] Install compression.h 732e426 [Wes McKinney] Revert bash equality test 31b2705 [Wes McKinney] cpplint 2ef43de [Wes McKinney] Clean up RAT exclusions, use absolute paths cbbaecf [Wes McKinney] Add some license headers, use Apache Kudu approach for managing a lot of RAT exclusions 198dee1 [Wes McKinney] Clean up build dependencies da31c2c [Wes McKinney] Port over compression toolchain and interfaces from parquet-cpp, adapt to Arrow-style error handling
1 parent 1514016 commit 98f7cac

24 files changed

+1890
-527
lines changed

.readthedocs.yml

+17
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
118
conda:
219
file: python/doc/environment.yml

.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
118
sudo: required
219
dist: trusty
320
addons:

ci/travis_script_cpp.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ set -e
1717
: ${CPP_BUILD_DIR=$TRAVIS_BUILD_DIR/cpp-build}
1818

1919
# Check licenses according to Apache policy
20-
git archive HEAD -o arrow-src.tar.gz
20+
git archive HEAD --prefix=apache-arrow/ --output=arrow-src.tar.gz
2121
./dev/release/run-rat.sh arrow-src.tar.gz
2222

2323
pushd $CPP_BUILD_DIR

cpp/.clang-format

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,50 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
117
---
218
Language: Cpp
319
# BasedOnStyle: Google
420
AccessModifierOffset: -1
5-
AlignAfterOpenBracket: false
21+
AlignAfterOpenBracket: false
622
AlignConsecutiveAssignments: false
723
AlignEscapedNewlinesLeft: true
824
AlignOperands: true
925
AlignTrailingComments: true
1026
AllowAllParametersOfDeclarationOnNextLine: true
11-
AllowShortBlocksOnASingleLine: true
27+
AllowShortBlocksOnASingleLine: true
1228
AllowShortCaseLabelsOnASingleLine: false
1329
AllowShortFunctionsOnASingleLine: Inline
1430
AllowShortIfStatementsOnASingleLine: true
15-
AllowShortLoopsOnASingleLine: false
31+
AllowShortLoopsOnASingleLine: false
1632
AlwaysBreakAfterDefinitionReturnType: None
1733
AlwaysBreakBeforeMultilineStrings: true
1834
AlwaysBreakTemplateDeclarations: true
1935
BinPackArguments: true
20-
BinPackParameters: true
36+
BinPackParameters: true
2137
BreakBeforeBinaryOperators: None
2238
BreakBeforeBraces: Attach
2339
BreakBeforeTernaryOperators: true
2440
BreakConstructorInitializersBeforeComma: false
25-
ColumnLimit: 90
41+
ColumnLimit: 90
2642
CommentPragmas: '^ IWYU pragma:'
2743
ConstructorInitializerAllOnOneLineOrOnePerLine: true
2844
ConstructorInitializerIndentWidth: 4
2945
ContinuationIndentWidth: 4
3046
Cpp11BracedListStyle: true
31-
DerivePointerAlignment: false
47+
DerivePointerAlignment: false
3248
DisableFormat: false
3349
ExperimentalAutoDetectBinPacking: false
3450
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]

cpp/.clang-tidy

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
117
---
218
Checks: 'clang-diagnostic-*,clang-analyzer-*,-clang-analyzer-alpha*,google-.*,modernize-.*,readablity-.*'
319
HeaderFilterRegex: 'arrow/.*'
420
AnalyzeTemporaryDtors: true
5-
CheckOptions:
21+
CheckOptions:
622
- key: google-readability-braces-around-statements.ShortStatementLines
723
value: '1'
824
- key: google-readability-function-size.StatementThreshold
@@ -11,4 +27,3 @@ CheckOptions:
1127
value: '10'
1228
- key: google-readability-namespace-comments.SpacesBeforeComments
1329
value: '2'
14-

cpp/.clang-tidy-ignore

+16
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
117
ipc-adapter-test.cc
218
memory-pool-test.cc

0 commit comments

Comments
 (0)