// ------------------------------- // // -------- Start of File -------- // // ------------------------------- // // ----------------------------------------------------------- // // C++ Source Code File Name: testprog.cpp // Compiler Used: MSVC, BCC32, GCC, HPUX aCC, SOLARIS CC // Produced By: DataReel Software Development Team // File Creation Date: 07/31/2000 // Date Last Modified: 06/17/2016 // Copyright (c) 2001-2024 DataReel Software Development // ----------------------------------------------------------- // // ------------- Program Description and Details ------------- // // ----------------------------------------------------------- // /* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA This is a test program for the gxINT64 class. */ // ----------------------------------------------------------- // #include "gxdlcode.h" #if defined (__USE_NATIVE_INT_TYPES__) int main() { return 0; } // No test for native types #else #if defined (__64_BIT_DATABASE_ENGINE__) #if defined (__USE_ANSI_CPP__) // Use the ANSI Standard C++ library #include <iostream> using namespace std; // Use unqualified names for Standard C++ library #else // Use the old iostream library by default #include <iostream.h> #endif // __USE_ANSI_CPP__ #include "gxint64.h" #if defined (__MSVC__) #pragma warning(disable:4244) // Function template instantiation warning #endif // Positive and Negitive limits Constants #if defined (__WIN32__) const __LLWORD__ LLWORDPositiveLimit = 9223372036854775807; const __LLWORD__ LLWORDNegitiveLimit = 9223372036854775808; const __ULLWORD__ ULLWORDLimit = 18446744073709551615; #elif defined (__UNIX__) const __LLWORD__ LLWORDPositiveLimit = 9223372036854775807LL; const __LLWORD__ LLWORDNegitiveLimit = 9223372036854775808LL; const __ULLWORD__ ULLWORDLimit = 18446744073709551615LL; #else #error You must define a target platform: __WIN32__ or __UNIX__ #endif void PausePrg() { cout << "\n"; cout << "Press enter to continue..." << "\n"; cin.get(); } void ClearInputStream(istream &s) // Used to clear istream { char c; s.clear(); while(s.get(c) && c != '\n') { ; } } template<class TYPEX, class TYPEY> inline void OperatorTest(TYPEX x, TYPEY y) { char *tf[2] = {"FALSE", "TRUE"}; cout << "\n"; cout << "Value x = " << x << ", Value y = " << y << "\n"; TYPEX z; cout << x << " += " << y << " = "; z = x; z += y; cout << z << "\n"; cout << x << " -= " << y << " = "; z = x; z -= y; cout << z << "\n"; cout << x << " *= " << y << " = "; z = x; z *= y; cout << z << "\n"; cout << x << " /= " << y << " = "; z = x; z /= y; cout << z << "\n"; cout << x << " * " << y << " = " ; z = (x * y); cout << z << "\n"; cout << x << " / " << y << " = " ; z = (x / y); cout << z << "\n"; cout << x << " + " << y << " = " ; z = (x + y); cout << z << "\n"; cout << x << " - " << y << " = " ; z = (x - y); cout << z << "\n"; cout << x << " == " << y << " = " << tf[(x == y)] << "\n"; cout << x << " != " << y << " = " << tf[(x != y)] << "\n"; cout << x << " <= " << y << " = " << tf[(x <= y)] << "\n"; cout << x << " >= " << y << " = " << tf[(x >= y)] << "\n"; cout << x << " < " << y << " = " << tf[(x < y)] << "\n"; cout << x << " > " << y << " = " << tf[(x > y)] << "\n"; cout << x << "++ = "; z = x; z++; cout << z << "\n"; cout << x << "-- = "; z = x; z--; cout << z << "\n"; cout << "++" << x << " = "; z = x; ++z; cout << z << "\n"; cout << "--" << x << " = "; z = x; --z; cout << z << "\n"; } #endif // __64_BIT_DATABASE_ENGINE__ int main() { #if defined (__64_BIT_DATABASE_ENGINE__) gxINT64 a = LLWORDPositiveLimit; cout << "gxINT64 positive limit = " << a << "\n"; gxINT64 b(LLWORDNegitiveLimit); cout << "gxINT64 negitive limit = " << b << "\n"; gxINT64 c; c = ULLWORDLimit; cout << "Assigning gxINT64 unsigned limit: " << c << "\n"; PausePrg(); cout << "Testing gxINT64 copy consturctor..." << "\n"; gxINT64 d(a); cout << d << "\n"; cout << "\n"; cout << "Testing gxINT64 assignment operator..." << "\n"; gxINT64 e; e = a; cout << e << "\n"; PausePrg(); cout << "Testing overloaded operators (gxINT64, gxINT64)..." << "\n"; gxINT64 buf1, buf2, al, bl; cout << "Enter first integer: "; cin >> buf1; if(cin) { a = buf1; al = buf1; cout << "Enter second integer: "; cin >> buf2; } else { cout << "Input stream broken. Exiting..." << "\n"; return 0; } if(cin) { b = buf2; bl = buf2; } else { cout << "Input stream broken. Exiting..." << "\n"; return 0; } ClearInputStream(cin); cout << "\n"; OperatorTest(a, b); PausePrg(); cout << "Testing overloaded operators (gxINT64, __LWORD__)..." << "\n"; OperatorTest(a, bl); PausePrg(); cout << "Testing overloaded operators (__LWORD__, gxINT64)..." << "\n"; OperatorTest(al, b); PausePrg(); cout << "Testing overloaded operators (gxINT64, __WORD__)..." << "\n"; OperatorTest(a, (__WORD__)bl); PausePrg(); cout << "Testing overloaded operators (__WORD__, gxINT64)..." << "\n"; OperatorTest((__WORD__)al, b); PausePrg(); cout << "Testing overloaded operators (gxINT64, __SWORD__)..." << "\n"; OperatorTest(a, (__SWORD__)bl); PausePrg(); cout << "Testing overloaded operators (__SWORD__, gxINT64)..." << "\n"; OperatorTest((__SWORD__)al, b); PausePrg(); cout << "Testing overloaded operators (gxINT64, __UWORD__)..." << "\n"; OperatorTest(a, (__UWORD__)bl); PausePrg(); cout << "Testing overloaded operators (__UWORD__, gxINT64)..." << "\n"; OperatorTest((__UWORD__)al, b); PausePrg(); cout << "Testing overloaded operators (gxINT64, __USWORD__)..." << "\n"; OperatorTest(a, (__USWORD__)bl); PausePrg(); cout << "Testing overloaded operators (__USWORD__, gxINT64)..." << "\n"; OperatorTest((__USWORD__)al, b); PausePrg(); cout << "Testing overloaded operators (gxINT64, __SBYTE__)..." << "\n"; OperatorTest(a, 'B'); PausePrg(); cout << "Testing overloaded operators (__SBYTE__, gxINT64)..." << "\n"; OperatorTest('A', b); #endif // __64_BIT_DATABASE_ENGINE__ return 0; } #if defined (__MSVC__) #pragma warning(default:4244) // Restore previous warning #endif #endif // __USE_NATIVE_INT_TYPES__ // ----------------------------------------------------------- // // ------------------------------- // // --------- End of File --------- // // ------------------------------- //