1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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
|
// This file is part of the KDE project
// SPDX-FileCopyrightText: 1998-2002 The KSpread Team <calligra-devel@kde.org>
// SPDX-FileCopyrightText: 2006 Brad Hards <bradh@frogmouth.net>
// SPDX-License-Identifier: LGPL-2.0-only
// built-in logical functions
#include "BitOpsModule.h"
#include "engine/Function.h"
using namespace Calligra::Sheets;
// prototypes (sorted alphabetically)
Value func_bitand(valVector args, ValueCalc *calc, FuncExtra *);
Value func_bitor(valVector args, ValueCalc *calc, FuncExtra *);
Value func_bitxor(valVector args, ValueCalc *calc, FuncExtra *);
Value func_bitlshift(valVector args, ValueCalc *calc, FuncExtra *);
Value func_bitrshift(valVector args, ValueCalc *calc, FuncExtra *);
CALLIGRA_SHEETS_EXPORT_FUNCTION_MODULE("kspreadbitopsmodule.json", BitOpsModule)
BitOpsModule::BitOpsModule(QObject *parent, const QVariantList &)
: FunctionModule(parent)
{
Function *f;
f = new Function("BITAND", func_bitand);
f->setParamCount(2);
add(f);
f = new Function("BITOR", func_bitor);
f->setParamCount(2);
add(f);
f = new Function("BITXOR", func_bitxor);
f->setParamCount(2);
add(f);
f = new Function("BITLSHIFT", func_bitlshift);
f->setParamCount(2);
add(f);
f = new Function("BITRSHIFT", func_bitrshift);
f->setParamCount(2);
add(f);
}
QString BitOpsModule::descriptionFileName() const
{
return QString("bitops.xml");
}
// Function: BITAND
Value func_bitand(valVector args, ValueCalc *, FuncExtra *)
{
const uint64_t x = args[0].asInteger();
const uint64_t y = args[1].asInteger();
return Value(static_cast<int64_t>(x & y));
}
// Function: BITOR
Value func_bitor(valVector args, ValueCalc *, FuncExtra *)
{
const uint64_t x = args[0].asInteger();
const uint64_t y = args[1].asInteger();
return Value(static_cast<int64_t>(x | y));
}
// Function: BITXOR
Value func_bitxor(valVector args, ValueCalc *, FuncExtra *)
{
const uint64_t x = args[0].asInteger();
const uint64_t y = args[1].asInteger();
return Value(static_cast<int64_t>(x ^ y));
}
// Function: BITLSHIFT
Value func_bitlshift(valVector args, ValueCalc *, FuncExtra *)
{
const uint64_t x = args[0].asInteger();
const int numshift = args[1].asInteger();
if (numshift == 0)
return Value(static_cast<int64_t>(x));
else if (numshift > 0)
return Value(static_cast<int64_t>(x << numshift));
else // negative left shift, becomes right shift
return Value(static_cast<int64_t>(x >> (-1 * numshift)));
}
// Function: BITRSHIFT
Value func_bitrshift(valVector args, ValueCalc *, FuncExtra *)
{
const uint64_t x = args[0].asInteger();
const int numshift = args[1].asInteger();
if (numshift == 0)
return Value(static_cast<int64_t>(x));
else if (numshift > 0)
return Value(static_cast<int64_t>(x >> numshift));
else // negative right shift, becomes left shift
return Value(static_cast<int64_t>(x << (-1 * numshift)));
}
#include "bitops.moc"
|