# SPDX-License-Identifier: GPL-2.0 # # clang-format configuration file. Intended for clang-format >= 4. # # For more information, see: # # Documentation/process/clang-format.rst # https://clang.llvm.org/docs/ClangFormat.html # https://clang.llvm.org/docs/ClangFormatStyleOptions.html # --- AccessModifierOffset: -8 AlignAfterOpenBracket: Align AlignConsecutiveAssignments: false AlignConsecutiveDeclarations: false #AlignEscapedNewlines: Left # Unknown to clang-format-4.0 AlignOperands: true AlignTrailingComments: false AllowAllParametersOfDeclarationOnNextLine: false AllowShortBlocksOnASingleLine: false AllowShortCaseLabelsOnASingleLine: false AllowShortFunctionsOnASingleLine: Inline AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false AlwaysBreakAfterDefinitionReturnType: None AlwaysBreakAfterReturnType: None AlwaysBreakBeforeMultilineStrings: false AlwaysBreakTemplateDeclarations: false BinPackArguments: true BinPackParameters: true BraceWrapping: AfterClass: true AfterControlStatement: false AfterEnum: false AfterFunction: true AfterNamespace: false AfterObjCDeclaration: false AfterStruct: false AfterUnion: false #AfterExternBlock: false # Unknown to clang-format-5.0 BeforeCatch: false BeforeElse: false IndentBraces: false #SplitEmptyFunction: true # Unknown to clang-format-4.0 #SplitEmptyRecord: true # Unknown to clang-format-4.0 #SplitEmptyNamespace: true # Unknown to clang-format-4.0 BreakBeforeBinaryOperators: None BreakBeforeBraces: Custom #BreakBeforeInheritanceComma: false # Unknown to clang-format-4.0 BreakBeforeTernaryOperators: true BreakConstructorInitializersBeforeComma: false #BreakConstructorInitializers: BeforeComma # Unknown to clang-format-4.0 BreakAfterJavaFieldAnnotations: false BreakStringLiterals: false ColumnLimit: 0 CommentPragmas: '^ IWYU pragma:' #CompactNamespaces: false # Unknown to clang-format-4.0 ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerIndentWidth: 8 ContinuationIndentWidth: 8 Cpp11BracedListStyle: false DerivePointerAlignment: false DisableFormat: false ExperimentalAutoDetectBinPacking: false #FixNamespaceComments: false # Unknown to clang-format-4.0 ForEachMacros: - 'udev_list_entry_foreach' #IncludeBlocks: Preserve # Unknown to clang-format-5.0 IncludeCategories: - Regex: '.*' Priority: 1 IncludeIsMainRegex: '(_test)?$' IndentCaseLabels: false #IndentPPDirectives: None # Unknown to clang-format-5.0 IndentWidth: 8 IndentWrappedFunctionNames: false JavaScriptQuotes: Leave JavaScriptWrapImports: true KeepEmptyLinesAtTheStartOfBlocks: false MacroBlockBegin: '' MacroBlockEnd: '' MaxEmptyLinesToKeep: 1 NamespaceIndentation: Inner #ObjCBinPackProtocolList: Auto # Unknown to clang-format-5.0 ObjCBlockIndentWidth: 8 ObjCSpaceAfterProperty: true ObjCSpaceBeforeProtocolList: true # Taken from git's rules #PenaltyBreakAssignment: 10 # Unknown to clang-format-4.0 PenaltyBreakBeforeFirstCallParameter: 30 PenaltyBreakComment: 10 PenaltyBreakFirstLessLess: 0 PenaltyBreakString: 10 PenaltyExcessCharacter: 100 PenaltyReturnTypeOnItsOwnLine: 60 PointerAlignment: Right ReflowComments: false SortIncludes: false #SortUsingDeclarations: false # Unknown to clang-format-4.0 SpaceAfterCStyleCast: false SpaceAfterTemplateKeyword: false SpaceBeforeAssignmentOperators: true #SpaceBeforeCtorInitializerColon: true # Unknown to clang-format-5.0 #SpaceBeforeInheritanceColon: true # Unknown to clang-format-5.0 SpaceBeforeParens: ControlStatements #SpaceBeforeRangeBasedForLoopColon: true # Unknown to clang-format-5.0 SpaceInEmptyParentheses: false SpacesBeforeTrailingComments: 1 SpacesInAngles: false SpacesInContainerLiterals: false SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false Standard: Cpp11 TabWidth: 8 UseTab: Always ... 1 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* control_value.cpp - ControlValue tests
*/
#include <algorithm>
#include <iostream>
#include <libcamera/controls.h>
#include "test.h"
using namespace std;
using namespace libcamera;
class ControlValueTest : public Test
{
protected:
int run()
{
/*
* None type.
*/
ControlValue value;
if (!value.isNone() || value.isArray()) {
cerr << "Empty value is non-null" << endl;
return TestFail;
}
/*
* Bool type.
*/
value.set(true);
if (value.isNone() || value.isArray() ||
value.type() != ControlTypeBool) {
cerr << "Control type mismatch after setting to bool" << endl;
return TestFail;
}
if (value.get<bool>() != true) {
cerr << "Control value mismatch after setting to bool" << endl;
return TestFail;
}
if (value.toString() != "true") {
cerr << "Control string mismatch after setting to bool" << endl;
return TestFail;
}
std::array<bool, 2> bools{ true, false };
value.set(Span<bool>(bools));
if (value.isNone() || !value.isArray() ||
value.type() != ControlTypeBool) {
cerr << "Control type mismatch after setting to bool array" << endl;
return TestFail;
}
Span<const bool> boolsResult = value.get<Span<const bool>>();
if (bools.size() != boolsResult.size() ||
!std::equal(bools.begin(), bools.end(), boolsResult.begin())) {
cerr << "Control value mismatch after setting to bool" << endl;
return TestFail;
}
if (value.toString() != "[ true, false ]") {
cerr << "Control string mismatch after setting to bool array" << endl;
return TestFail;
}
/*
* Integer8 type.
*/
value.set(static_cast<uint8_t>(42));
if (value.isNone() || value.isArray() ||
value.type() != ControlTypeByte) {
cerr << "Control type mismatch after setting to uint8_t" << endl;
return TestFail;
}
if (value.get<uint8_t>() != 42) {
cerr << "Control value mismatch after setting to uint8_t" << endl;
return TestFail;
}
if (value.toString() != "42") {
cerr << "Control string mismatch after setting to uint8_t" << endl;
return TestFail;
}
std::array<uint8_t, 4> bytes{ 3, 14, 15, 9 };
value.set(Span<uint8_t>(bytes));
if (value.isNone() || !value.isArray() ||
value.type() != ControlTypeByte) {
cerr << "Control type mismatch after setting to uint8_t array" << endl;
return TestFail;
}
Span<const uint8_t> int8sResult = value.get<Span<const uint8_t>>();
if (bytes.size() != int8sResult.size() ||
!std::equal(bytes.begin(), bytes.end(), int8sResult.begin())) {
cerr << "Control value mismatch after setting to uint8_t array" << endl;
return TestFail;
}
if (value.toString() != "[ 3, 14, 15, 9 ]") {
cerr << "Control string mismatch after setting to uint8_t array" << endl;
return TestFail;
}
/*
* Integer32 type.
*/
value.set(0x42000000);
if (value.isNone() || value.isArray() ||
value.type() != ControlTypeInteger32) {
cerr << "Control type mismatch after setting to int32_t" << endl;
return TestFail;
}
if (value.get<int32_t>() != 0x42000000) {
cerr << "Control value mismatch after setting to int32_t" << endl;
return TestFail;
}
if (value.toString() != "1107296256") {
cerr << "Control string mismatch after setting to int32_t" << endl;
return TestFail;
}
std::array<int32_t, 4> int32s{ 3, 14, 15, 9 };
value.set(Span<int32_t>(int32s));
if (value.isNone() || !value.isArray() ||
value.type() != ControlTypeInteger32) {
cerr << "Control type mismatch after setting to int32_t array" << endl;
return TestFail;
}
Span<const int32_t> int32sResult = value.get<Span<const int32_t>>();
if (int32s.size() != int32sResult.size() ||
!std::equal(int32s.begin(), int32s.end(), int32sResult.begin())) {
cerr << "Control value mismatch after setting to int32_t array" << endl;
return TestFail;
}
if (value.toString() != "[ 3, 14, 15, 9 ]") {
cerr << "Control string mismatch after setting to int32_t array" << endl;
return TestFail;
}
/*
* Integer64 type.
*/
value.set(static_cast<int64_t>(-42));
if (value.isNone() || value.isArray() ||
value.type() != ControlTypeInteger64) {
cerr << "Control type mismatch after setting to int64_t" << endl;
return TestFail;
}
if (value.get<int64_t>() != -42) {
cerr << "Control value mismatch after setting to int64_t" << endl;
return TestFail;
}
if (value.toString() != "-42") {
cerr << "Control string mismatch after setting to int64_t" << endl;
return TestFail;
}
std::array<int64_t, 4> int64s{ 3, 14, 15, 9 };
value.set(Span<int64_t>(int64s));
if (value.isNone() || !value.isArray() ||
value.type() != ControlTypeInteger64) {
cerr << "Control type mismatch after setting to int64_t array" << endl;
return TestFail;
}
Span<const int64_t> int64sResult = value.get<Span<const int64_t>>();
if (int64s.size() != int64sResult.size() ||
!std::equal(int64s.begin(), int64s.end(), int64sResult.begin())) {
cerr << "Control value mismatch after setting to int64_t array" << endl;
return TestFail;
}
if (value.toString() != "[ 3, 14, 15, 9 ]") {
cerr << "Control string mismatch after setting to int64_t array" << endl;
return TestFail;
}
/*
* Float type.
*/
value.set(-0.42f);
if (value.isNone() || value.isArray() ||
value.type() != ControlTypeFloat) {
cerr << "Control type mismatch after setting to float" << endl;
return TestFail;
}
if (value.get<float>() != -0.42f) {
cerr << "Control value mismatch after setting to float" << endl;
return TestFail;
}
if (value.toString() != "-0.420000") {
cerr << "Control string mismatch after setting to float" << endl;
return TestFail;
}
std::array<float, 3> floats{ 3.141593, 2.718282, 299792458.0 };
value.set(Span<float>(floats));
if (value.isNone() || !value.isArray() ||
value.type() != ControlTypeFloat) {
cerr << "Control type mismatch after setting to float array" << endl;
return TestFail;
}
Span<const float> floatsResult = value.get<Span<const float>>();
if (floats.size() != floatsResult.size() ||
!std::equal(floats.begin(), floats.end(), floatsResult.begin())) {
cerr << "Control value mismatch after setting to float array" << endl;
return TestFail;
}
/*
* The string representation for the third value doesn't match
* the value in the floats array above, due to limited precision
* of the float type that can't properly represent the speed of
* light.
*/
if (value.toString() != "[ 3.141593, 2.718282, 299792448.000000 ]") {
cerr << "Control string mismatch after setting to float array" << endl;
return TestFail;
}
/*
* String type.
*/
std::string string{ "libcamera" };
value.set(string);
if (value.isNone() || !value.isArray() ||
value.type() != ControlTypeString ||
value.numElements() != string.size()) {
cerr << "Control type mismatch after setting to string" << endl;
return TestFail;
}
if (value.get<std::string>() != string) {
cerr << "Control value mismatch after setting to string" << endl;
return TestFail;
}
if (value.toString() != string) {
cerr << "Control string mismatch after setting to string" << endl;
return TestFail;
}
return TestPass;
}
};
TEST_REGISTER(ControlValueTest)