summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2010-01-10 17:19:24 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-01-10 17:20:33 +0100
commitf5a394a5051384a930d635da22ccafc6beb1cb84 (patch)
treed28fc14408a6bb91170e05880b4d2af6a17fcc14 /src/utils
parent5757066312cab082378dbc5d8df97dea3fe40af0 (diff)
downloadmana-client-f5a394a5051384a930d635da22ccafc6beb1cb84.tar.gz
mana-client-f5a394a5051384a930d635da22ccafc6beb1cb84.tar.bz2
mana-client-f5a394a5051384a930d635da22ccafc6beb1cb84.tar.xz
mana-client-f5a394a5051384a930d635da22ccafc6beb1cb84.zip
Change code style
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/base64.cpp39
-rw-r--r--src/utils/xml.cpp16
2 files changed, 37 insertions, 18 deletions
diff --git a/src/utils/base64.cpp b/src/utils/base64.cpp
index 298841be..57a9fc84 100644
--- a/src/utils/base64.cpp
+++ b/src/utils/base64.cpp
@@ -42,12 +42,14 @@ static char base64_table[] =
};
static char base64_pad = '=';
-unsigned char *php3_base64_encode(const unsigned char *string, int length, int *ret_length) {
+unsigned char *php3_base64_encode(const unsigned char *string, int length, int *ret_length)
+{
const unsigned char *current = string;
int i = 0;
unsigned char *result = (unsigned char *)malloc(((length + 3 - length % 3) * 4 / 3 + 1) * sizeof(char));
- while (length > 2) { /* keep going until we have less than 24 bits */
+ while (length > 2)
+ { /* keep going until we have less than 24 bits */
result[i++] = base64_table[current[0] >> 2];
result[i++] = base64_table[((current[0] & 0x03) << 4) + (current[1] >> 4)];
result[i++] = base64_table[((current[1] & 0x0f) << 2) + (current[2] >> 6)];
@@ -58,20 +60,24 @@ unsigned char *php3_base64_encode(const unsigned char *string, int length, int *
}
/* now deal with the tail end of things */
- if (length != 0) {
+ if (length != 0)
+ {
result[i++] = base64_table[current[0] >> 2];
- if (length > 1) {
+ if (length > 1)
+ {
result[i++] = base64_table[((current[0] & 0x03) << 4) + (current[1] >> 4)];
result[i++] = base64_table[(current[1] & 0x0f) << 2];
result[i++] = base64_pad;
}
- else {
+ else
+ {
result[i++] = base64_table[(current[0] & 0x03) << 4];
result[i++] = base64_pad;
result[i++] = base64_pad;
}
}
- if(ret_length) {
+ if (ret_length)
+ {
*ret_length = i;
}
result[i] = '\0';
@@ -79,19 +85,22 @@ unsigned char *php3_base64_encode(const unsigned char *string, int length, int *
}
/* as above, but backwards. :) */
-unsigned char *php3_base64_decode(const unsigned char *string, int length, int *ret_length) {
+unsigned char *php3_base64_decode(const unsigned char *string, int length, int *ret_length)
+{
const unsigned char *current = string;
int ch, i = 0, j = 0, k;
char *chp;
unsigned char *result = (unsigned char *)malloc(length + 1);
- if (result == NULL) {
+ if (result == NULL)
+ {
return NULL;
}
/* run through the whole string, converting as we go */
- while ((ch = *current++) != '\0') {
+ while ((ch = *current++) != '\0')
+ {
if (ch == base64_pad) break;
/* When Base64 gets POSTed, all pluses are interpreted as spaces.
@@ -107,7 +116,8 @@ unsigned char *php3_base64_decode(const unsigned char *string, int length, int *
if (chp == NULL) continue;
ch = chp - base64_table;
- switch(i % 4) {
+ switch(i % 4)
+ {
case 0:
result[j] = ch << 2;
break;
@@ -128,8 +138,10 @@ unsigned char *php3_base64_decode(const unsigned char *string, int length, int *
k = j;
/* mop things up if we ended on a boundary */
- if (ch == base64_pad) {
- switch(i % 4) {
+ if (ch == base64_pad)
+ {
+ switch(i % 4)
+ {
case 0:
case 1:
free(result);
@@ -140,7 +152,8 @@ unsigned char *php3_base64_decode(const unsigned char *string, int length, int *
result[k++] = 0;
}
}
- if(ret_length) {
+ if (ret_length)
+ {
*ret_length = j;
}
result[k] = '\0';
diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp
index 63487215..a81c37da 100644
--- a/src/utils/xml.cpp
+++ b/src/utils/xml.cpp
@@ -63,13 +63,16 @@ namespace XML
}
}
- if (data) {
+ if (data)
+ {
mDoc = xmlParseMemory(data, size);
free(data);
if (!mDoc)
logger->log("Error parsing XML file %s", filename.c_str());
- } else {
+ }
+ else
+ {
logger->log("Error loading %s", filename.c_str());
}
}
@@ -95,7 +98,8 @@ namespace XML
int &ret = def;
xmlChar *prop = xmlGetProp(node, BAD_CAST name);
- if (prop) {
+ if (prop)
+ {
ret = atoi((char*)prop);
xmlFree(prop);
}
@@ -108,7 +112,8 @@ namespace XML
double &ret = def;
xmlChar *prop = xmlGetProp(node, BAD_CAST name);
- if (prop) {
+ if (prop)
+ {
ret = atof((char*)prop);
xmlFree(prop);
}
@@ -120,7 +125,8 @@ namespace XML
const std::string &def)
{
xmlChar *prop = xmlGetProp(node, BAD_CAST name);
- if (prop) {
+ if (prop)
+ {
std::string val = (char*)prop;
xmlFree(prop);
return val;