summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2005-01-02 02:47:51 +0000
committerHavoc Pennington <hp@redhat.com>2005-01-02 02:47:51 +0000
commitdf652bd9a1f170b9a1af193b0b94136b7be690db (patch)
tree0b68beb5a8e22f317ab986253cbb773568b3bcf0
parent721e6c7abcfa2f3d7a320d612539a501e8d485af (diff)
change strings to be marshaled consistently with the other basic types (address of the value passed in, so char**)
-rw-r--r--dbus/dbus-marshal-basic.c18
-rw-r--r--dbus/dbus-marshal-recursive.c15
2 files changed, 19 insertions, 14 deletions
diff --git a/dbus/dbus-marshal-basic.c b/dbus/dbus-marshal-basic.c
index 7de7a4a6..d949bff1 100644
--- a/dbus/dbus-marshal-basic.c
+++ b/dbus/dbus-marshal-basic.c
@@ -999,12 +999,17 @@ marshal_signature (DBusString *str,
}
/**
- * Marshals a basic type
+ * Marshals a basic type. The "value" pointer is always the
+ * address of a variable containing the basic type value.
+ * So for example for int32 it will be dbus_int32_t*, and
+ * for string it will be const char**. This is for symmetry
+ * with _dbus_demarshal_basic_type() and to have a simple
+ * consistent rule.
*
* @param str string to marshal to
* @param insert_at where to insert the value
* @param type type of value
- * @param value pointer to value
+ * @param value pointer to a variable containing the value
* @param byte_order byte order
* @param pos_after #NULL or the position after the type
* @returns #TRUE on success
@@ -1051,10 +1056,10 @@ _dbus_marshal_basic_type (DBusString *str,
break;
case DBUS_TYPE_STRING:
case DBUS_TYPE_OBJECT_PATH:
- return marshal_string (str, insert_at, (const char*) value, byte_order, pos_after);
+ return marshal_string (str, insert_at, *(const char**) value, byte_order, pos_after);
break;
case DBUS_TYPE_SIGNATURE:
- return marshal_signature (str, insert_at, (const char*) value, pos_after);
+ return marshal_signature (str, insert_at, *(const char**) value, pos_after);
break;
default:
_dbus_assert_not_reached ("not a basic type");
@@ -1285,10 +1290,7 @@ _dbus_marshal_basic_type_array (DBusString *str,
#define MARSHAL_TEST_STRCMP(typename, byte_order, literal) \
do { \
- if (!_dbus_marshal_basic_type (&str, pos, DBUS_TYPE_##typename, \
- literal, \
- byte_order, NULL)) \
- _dbus_assert_not_reached ("no memory"); \
+ MARSHAL_BASIC (typename, byte_order, literal); \
dump_pos = pos; \
DEMARSHAL_BASIC (typename, byte_order); \
if (strcmp (literal, v_##typename) != 0) \
diff --git a/dbus/dbus-marshal-recursive.c b/dbus/dbus-marshal-recursive.c
index ba5d2bff..7829b452 100644
--- a/dbus/dbus-marshal-recursive.c
+++ b/dbus/dbus-marshal-recursive.c
@@ -2871,13 +2871,14 @@ string_write_value (TestTypeNode *node,
int seed)
{
char buf[MAX_SAMPLE_STRING_LEN];
+ const char *v_string = buf;
string_from_seed (buf, node->klass->subclass_detail,
seed);
-
+
return _dbus_type_writer_write_basic (writer,
node->klass->typecode,
- buf);
+ &v_string);
}
static dbus_bool_t
@@ -3063,12 +3064,13 @@ object_path_write_value (TestTypeNode *node,
int seed)
{
char buf[MAX_SAMPLE_OBJECT_PATH_LEN];
-
+ const char *v_string = buf;
+
object_path_from_seed (buf, seed);
return _dbus_type_writer_write_basic (writer,
node->klass->typecode,
- buf);
+ &v_string);
}
static dbus_bool_t
@@ -3129,12 +3131,13 @@ signature_write_value (TestTypeNode *node,
int seed)
{
char buf[MAX_SAMPLE_SIGNATURE_LEN];
-
+ const char *v_string = buf;
+
signature_from_seed (buf, seed);
return _dbus_type_writer_write_basic (writer,
node->klass->typecode,
- buf);
+ &v_string);
}
static dbus_bool_t