···
+
#include <unordered_map>
+
// Transaction data structure
+
std::string procAmount;
+
// Response data structure
+
std::string procAmount;
+
void showHelp(const char* programName);
+
std::string extractXmlValue(const std::string& xml, const std::string& tag);
+
std::string extractXmlAttribute(const std::string& xml, const std::string& attribute);
+
std::vector<std::string> extractRequests(const std::string& logContent);
+
std::vector<std::string> extractResponses(const std::string& logContent);
+
std::vector<Response> parseResponses(const std::vector<std::string>& responseXmls);
+
std::vector<Transaction> parseTransactions(const std::vector<std::string>& requestXmls, const std::vector<Response>& responses);
+
void outputRawData(const std::vector<Transaction>& transactions);
+
void outputSummary(const std::vector<Transaction>& transactions);
+
int main(int argc, char* argv[]) {
+
bool summaryOnly = false;
+
// Parse command line options
+
static struct option longOptions[] = {
+
{"help", no_argument, 0, 'h'},
+
{"summary", no_argument, 0, 's'},
+
{"raw", no_argument, 0, 'r'},
+
while ((opt = getopt_long(argc, argv, "hsr", longOptions, &optionIndex)) != -1) {
+
std::cerr << "Unknown option: " << static_cast<char>(optopt) << std::endl;
+
logFile = argv[optind];
+
std::cerr << "Error: No logfile specified" << std::endl;
+
// Check if file exists
+
std::ifstream file(logFile);
+
std::cerr << "Error: File '" << logFile << "' not found" << std::endl;
+
// Read the entire file
+
std::string logContent((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
+
// Extract requests and responses
+
std::vector<std::string> requestXmls = extractRequests(logContent);
+
std::vector<std::string> responseXmls = extractResponses(logContent);
+
std::vector<Response> responses = parseResponses(responseXmls);
+
std::vector<Transaction> transactions = parseTransactions(requestXmls, responses);
+
outputSummary(transactions);
+
outputRawData(transactions);
+
void showHelp(const char* programName) {
+
std::cout << "PayPal SOAP Log Parser\n\n";
+
std::cout << "USAGE:\n";
+
std::cout << " " << programName << " [OPTIONS] <logfile>\n\n";
+
std::cout << "OPTIONS:\n";
+
std::cout << " -h, --help Show this help message\n";
+
std::cout << " -s, --summary Show summary statistics only\n";
+
std::cout << " -r, --raw Output raw structured data (default)\n\n";
+
std::cout << "OUTPUT FORMAT (tab-separated):\n";
+
std::cout << " TRANS_NUM|AMOUNT|CURRENCY|FIRSTNAME|LASTNAME|STREET|CITY|STATE|ZIP|CCTYPE|CCLAST4|EXPMONTH|EXPYEAR|CVV|TRANSID|STATUS|CORRID|PROC_AMOUNT\n\n";
+
std::cout << "FIELD DESCRIPTIONS:\n";
+
std::cout << " TRANS_NUM - Transaction sequence number\n";
+
std::cout << " AMOUNT - Order total amount\n";
+
std::cout << " CURRENCY - Currency code (USD, etc)\n";
+
std::cout << " FIRSTNAME - Customer first name\n";
+
std::cout << " LASTNAME - Customer last name\n";
+
std::cout << " STREET - Street address\n";
+
std::cout << " CITY - City name\n";
+
std::cout << " STATE - State/Province code\n";
+
std::cout << " ZIP - Postal code\n";
+
std::cout << " CCTYPE - Credit card type (Visa, MasterCard, etc)\n";
+
std::cout << " CCLAST4 - Last 4 digits of credit card\n";
+
std::cout << " EXPMONTH - Card expiration month\n";
+
std::cout << " EXPYEAR - Card expiration year\n";
+
std::cout << " CVV - CVV code\n";
+
std::cout << " TRANSID - PayPal transaction ID\n";
+
std::cout << " STATUS - Transaction status (Success/Failure)\n";
+
std::cout << " CORRID - Correlation ID\n";
+
std::cout << " PROC_AMOUNT - Actually processed amount\n\n";
+
std::cout << "EXAMPLES:\n";
+
std::cout << " # Get all transactions\n";
+
std::cout << " " << programName << " payments.log\n\n";
+
std::cout << " # Get only successful transactions\n";
+
std::cout << " " << programName << " payments.log | grep Success\n\n";
+
std::cout << " # Count transactions by state\n";
+
std::cout << " " << programName << " payments.log | cut -d'|' -f8 | sort | uniq -c | sort -nr\n\n";
+
std::cout << " # Find largest transaction\n";
+
std::cout << " " << programName << " payments.log | sort -t'|' -k2 -nr | head -1\n\n";
+
std::cout << " # Get transactions over $500\n";
+
std::cout << " " << programName << " payments.log | awk -F'|' '$2 > 500'\n\n";
+
std::cout << " # Summary stats\n";
+
std::cout << " " << programName << " -s payments.log\n";
+
std::string extractXmlValue(const std::string& xml, const std::string& tag) {
+
std::regex pattern("<" + tag + "(?:[^>]*)>([^<]*)</" + tag + ">");
+
if (std::regex_search(xml, match, pattern) && match.size() > 1) {
+
std::string extractXmlAttribute(const std::string& xml, const std::string& attribute) {
+
std::regex pattern(attribute + "=\"([^\"]*)\"");
+
if (std::regex_search(xml, match, pattern) && match.size() > 1) {
+
std::vector<std::string> extractRequests(const std::string& logContent) {
+
std::vector<std::string> requests;
+
std::regex pattern("PPAPIService: Request: (.*)");
+
std::string::const_iterator searchStart(logContent.cbegin());
+
while (std::regex_search(searchStart, logContent.cend(), match, pattern)) {
+
if (match.size() > 1) {
+
requests.push_back(match[1].str());
+
searchStart = match.suffix().first;
+
std::vector<std::string> extractResponses(const std::string& logContent) {
+
std::vector<std::string> responses;
+
std::regex pattern("PPAPIService: Response: <\\?.*\\?>(.*)");
+
std::string::const_iterator searchStart(logContent.cbegin());
+
while (std::regex_search(searchStart, logContent.cend(), match, pattern)) {
+
if (match.size() > 1) {
+
responses.push_back(match[1].str());
+
searchStart = match.suffix().first;
+
std::vector<Response> parseResponses(const std::vector<std::string>& responseXmls) {
+
std::vector<Response> responses;
+
for (const auto& xml : responseXmls) {
+
response.transId = extractXmlValue(xml, "TransactionID");
+
response.status = extractXmlValue(xml, "Ack");
+
response.corrId = extractXmlValue(xml, "CorrelationID");
+
response.procAmount = extractXmlValue(xml, "Amount");
+
responses.push_back(response);
+
std::vector<Transaction> parseTransactions(const std::vector<std::string>& requestXmls, const std::vector<Response>& responses) {
+
std::vector<Transaction> transactions;
+
for (size_t i = 0; i < requestXmls.size(); ++i) {
+
const auto& xml = requestXmls[i];
+
Transaction transaction;
+
transaction.transNum = transNum++;
+
// Extract request fields
+
transaction.amount = extractXmlValue(xml, "ebl:OrderTotal");
+
transaction.currency = extractXmlAttribute(xml, "currencyID");
+
transaction.firstName = extractXmlValue(xml, "ebl:FirstName");
+
transaction.lastName = extractXmlValue(xml, "ebl:LastName");
+
transaction.street = extractXmlValue(xml, "ebl:Street1");
+
transaction.city = extractXmlValue(xml, "ebl:CityName");
+
transaction.state = extractXmlValue(xml, "ebl:StateOrProvince");
+
transaction.zip = extractXmlValue(xml, "ebl:PostalCode");
+
transaction.ccType = extractXmlValue(xml, "ebl:CreditCardType");
+
transaction.ccLast4 = extractXmlValue(xml, "ebl:CreditCardLastFourDigits");
+
transaction.expMonth = extractXmlValue(xml, "ebl:ExpMonth");
+
transaction.expYear = extractXmlValue(xml, "ebl:ExpYear");
+
transaction.cvv = extractXmlValue(xml, "ebl:CVV2");
+
// Get corresponding response data
+
if (i < responses.size()) {
+
transaction.transId = responses[i].transId;
+
transaction.status = responses[i].status;
+
transaction.corrId = responses[i].corrId;
+
transaction.procAmount = responses[i].procAmount;
+
transactions.push_back(transaction);
+
void outputRawData(const std::vector<Transaction>& transactions) {
+
for (const auto& t : transactions) {
+
std::cout << t.transNum << "|"
+
<< t.procAmount << std::endl;
+
void outputSummary(const std::vector<Transaction>& transactions) {
+
std::cout << "=== SUMMARY ===" << std::endl;
+
int total = transactions.size();
+
int successful = std::count_if(transactions.begin(), transactions.end(),
+
[](const Transaction& t) { return t.status == "Success"; });
+
std::cout << "Total Transactions: " << total << std::endl;
+
std::cout << "Successful: " << successful << std::endl;
+
std::cout << "Failed: " << (total - successful) << std::endl;
+
std::cout << std::endl;
+
std::map<std::string, int> stateCounts;
+
for (const auto& t : transactions) {
+
stateCounts[t.state]++;
+
std::cout << "Top 5 States by Transaction Count:" << std::endl;
+
std::vector<std::pair<std::string, int>> stateCountVec(stateCounts.begin(), stateCounts.end());
+
std::sort(stateCountVec.begin(), stateCountVec.end(),
+
[](const auto& a, const auto& b) { return a.second > b.second; });
+
for (const auto& sc : stateCountVec) {
+
if (count++ >= 5) break;
+
std::cout << " " << sc.first << ": " << sc.second << std::endl;
+
std::cout << std::endl;
+
// Transaction amount stats
+
std::vector<double> amounts;
+
for (const auto& t : transactions) {
+
amounts.push_back(std::stod(t.amount));
+
// Skip invalid amounts
+
if (!amounts.empty()) {
+
double totalAmount = std::accumulate(amounts.begin(), amounts.end(), 0.0);
+
double largest = *std::max_element(amounts.begin(), amounts.end());
+
double smallest = *std::min_element(amounts.begin(), amounts.end());
+
std::cout << "Transaction Amount Stats:" << std::endl;
+
std::cout << " Total: $" << std::fixed << std::setprecision(2) << totalAmount << std::endl;
+
std::cout << " Largest: $" << std::fixed << std::setprecision(2) << largest << std::endl;
+
std::cout << " Smallest: $" << std::fixed << std::setprecision(2) << smallest << std::endl;