Decided against the start-of-file comment.
[bigint/bigint.git] / BigIntegerUtils.hh
CommitLineData
05780f4b
MM
1#ifndef BIGINTEGERUTILS
2#define BIGINTEGERUTILS
3
4#include "BigInteger.hh"
5#include <string>
6#include <iostream>
7
8/*
6e1e0f2f
MM
9 * This file includes:
10 * (1) `std::string <=> BigUnsigned/BigInteger' conversion routines easier than `BigUnsignedInABase'
11 * (2) << and >> operators for BigUnsigned/BigInteger, std::istream/std::ostream
12 */
05780f4b
MM
13
14// Conversion routines. Base 10 only.
15std::string easyBUtoString(const BigUnsigned &x);
16std::string easyBItoString(const BigInteger &x);
17BigUnsigned easyStringToBU(const std::string &s);
18BigInteger easyStringToBI(const std::string &s);
19
a8b42b68
MM
20// Creates a BigInteger from data such as `char's; read below for details.
21template <class T>
22BigInteger easyDataToBI(const T* data, BigInteger::Index length, BigInteger::Sign sign);
23
05780f4b
MM
24// Outputs x to os, obeying the flags `dec', `hex', `bin', and `showbase'.
25std::ostream &operator <<(std::ostream &os, const BigUnsigned &x);
26
27// Outputs x to os, obeying the flags `dec', `hex', `bin', and `showbase'.
28// My somewhat arbitrary policy: a negative sign comes before a base indicator (like -0xFF).
29std::ostream &operator <<(std::ostream &os, const BigInteger &x);
30
a8b42b68 31/*
6e1e0f2f
MM
32 * =================================
33 * BELOW THIS POINT are template definitions; above are declarations. See `NumberlikeArray.hh'.
34 */
a8b42b68
MM
35
36/*
6e1e0f2f
MM
37 * Converts binary data to a BigInteger.
38 * Pass an array `data', its length, and the desired sign.
39 *
40 * Elements of `data' may be of any type `T' that has the following
41 * two properties (this includes almost all integral types):
42 *
43 * (1) `sizeof(T)' correctly gives the amount of binary data in one
44 * value of `T' and is a factor of `sizeof(Blk)'.
45 *
46 * (2) When a value of `T' is casted to a `Blk', the low bytes of
47 * the result contain the desired binary data.
48 */
a8b42b68
MM
49template <class T>
50BigInteger easyDataToBI(const T* data, BigInteger::Index length, BigInteger::Sign sign) {
51 // really ceiling(numBytes / sizeof(BigInteger::Blk))
52 unsigned int pieceSizeInBits = 8 * sizeof(T);
53 unsigned int piecesPerBlock = sizeof(BigInteger::Blk) / sizeof(T);
54 unsigned int numBlocks = (length + piecesPerBlock - 1) / piecesPerBlock;
5ff40cf5 55
a8b42b68
MM
56 // Allocate our block array
57 BigInteger::Blk *blocks = new BigInteger::Blk[numBlocks];
5ff40cf5 58
a8b42b68 59 BigInteger::Index blockNum, pieceNum, pieceNumHere;
5ff40cf5 60
a8b42b68 61 // Convert
3260eb33 62 for (blockNum = 0, pieceNum = 0; blockNum < numBlocks; blockNum++) {
a8b42b68 63 BigInteger::Blk curBlock = 0;
3260eb33 64 for (pieceNumHere = 0; pieceNumHere < piecesPerBlock && pieceNum < length;
a8b42b68
MM
65 pieceNumHere++, pieceNum++)
66 curBlock |= (BigInteger::Blk(data[pieceNum]) << (pieceSizeInBits * pieceNumHere));
67 blocks[blockNum] = curBlock;
a8b42b68 68 }
5ff40cf5 69
a8b42b68
MM
70 // Create the BigInteger.
71 BigInteger x(blocks, numBlocks, sign);
5ff40cf5 72
a8b42b68
MM
73 delete blocks;
74 return x;
75}
76
05780f4b 77#endif