1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28#include <libkern/OSBase.h>
29
30__BEGIN_DECLS
31#include <mach/mach_types.h>
32#include <mach/vm_types.h>
33#include <mach/kmod.h>
34
35kmod_start_func_t test2_start;
36kmod_stop_func_t test2_stop;
37__END_DECLS
38
39#include <libkern/c++/OSContainers.h>
40#include <iokit/IOLib.h>
41
42char *testBuffer =
43" <?xml version=\"1.0\" encoding=\"UTF-8\"?> \n"
44" <!DOCTYPE plist SYSTEM \"file://localhost/System/Library/DTDs/PropertyList.dtd\"> \n"
45" <plist version=\"1.0\"> \n"
46" <!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"> \n"
47" <plist version=\"0.9\"> \n"
48" <dict> \n"
49
50" <key>key true</key>	<true/> \n"
51" <key>key false</key>	<false/> \n"
52
53" <key>key d0</key>	<data> </data> \n"
54" <key>key d1</key>	<data>AQ==</data> \n"
55" <key>key d2</key>	<data>ASM=</data> \n"
56" <key>key d3</key>	<data>ASNF</data> \n"
57" <key>key d4</key>	<data ID=\"1\">ASNFZw==</data> \n"
58
59" <key>key i0</key>	<integer></integer> \n"
60" <key>key i1</key>	<integer>123456789</integer> \n"
61" <key>key i2</key>	<integer>-123456789</integer> \n"
62" <key>key i3</key>	<integer size=\"32\" ID=\"2\">0x12345678</integer> \n"
63
64" <key>key s0</key>	<string></string> \n"
65" <key>key s1</key>	<string>string 1</string> \n"
66" <key>key s2</key>	<string ID=\"3\">string 2</string> \n"
67" <key>key mr �</key>	<string>mac roman copyright �</string> \n"
68" <key>key uft8 \xc2\xa9</key>	<string>utf-8 copyright \xc2\xa9</string> \n"
69" <key>key &lt;&amp;&gt;</key>	<string>&lt;&amp;&gt;</string> \n"
70
71" <key>key D0</key>	<dict ID=\"4\"> \n"
72"                        </dict> \n"
73
74" <key>key a0</key>	<array> \n"
75"                        </array> \n"
76
77" <key>key a1</key>	<array ID=\"5\"> \n"
78"                            <string>array string 1</string> \n"
79"                            <string>array string 2</string> \n"
80"                        </array> \n"
81
82" <key>key r1</key>	<ref IDREF=\"1\"/> \n"
83" <key>key r2</key>	<ref IDREF=\"2\"/> \n"
84" <key>key r3</key>	<ref IDREF=\"3\"/> \n"
85" <key>key r4</key>	<ref IDREF=\"4\"/> \n"
86" <key>key r5</key>	<ref IDREF=\"5\"/> \n"
87
88" <key>key e1</key>	<array/> \n"
89" <key>key e2</key>	<dict/> \n"
90" <key>key e4</key>	<integer/> \n"
91" <key>key e5</key>	<string/> \n"
92" <key>key e6</key>	<data/> \n"
93
94" <key>key S0</key>	<set> \n"
95"                        </set> \n"
96" <key>key S1</key>	<set ID=\"6\"> \n"
97"                             <string>set string 1</string> \n"
98"                             <string>set string 2</string> \n"
99"                         </set> \n"
100" <key>key r6</key>	<ref IDREF=\"6\"/> \n"
101" <key>key e3</key>	<set/> \n"
102
103" </dict> \n"
104" </plist> \n"
105;
106
107/*
108 this causes the parser to return an empty string? it doesn't look like yyerror gets called
109 char *testBuffer = "<array ID=1><array IDREF=\"1\"/></array>"
110
111*/
112
113kern_return_t
114test2_start(struct kmod_info *ki, void *data)
115{
116        IOLog("test buffer start:\n%s\n:test buffer end.\n", testBuffer);
117
118	// test unserialize
119	OSString *errmsg = 0;
120	OSObject *d = OSUnserializeXML(testBuffer, &errmsg);
121	if (!d) {
122                if (errmsg)
123                    IOLog("%s\n", errmsg->getCStringNoCopy());
124                else
125                    IOLog("bogus error message\n");
126
127		return KMOD_RETURN_SUCCESS;
128	}
129
130	// test serialize
131	OSSerialize *s = OSSerialize::withCapacity(5);
132	if (!d->serialize(s)) {
133		IOLog("serialization failed\n");
134                return KMOD_RETURN_SUCCESS;
135	}
136
137	IOLog("serialized object's length = %d, capacity = %d\n", s->getLength(), s->getCapacity());
138	IOLog("object unformatted = %s\n", s->text());
139
140	// try second time
141	OSObject *d2 = OSUnserializeXML(s->text(), &errmsg);
142	if (!d2) {
143		IOLog("%s\n", errmsg->getCStringNoCopy());
144                return KMOD_RETURN_SUCCESS;
145	}
146	OSSerialize *s2 = OSSerialize::withCapacity(5);
147	if (!d2->serialize(s2)) {
148		IOLog("serialization #2 failed\n");
149                return KMOD_RETURN_SUCCESS;
150	}
151
152	IOLog("serialized object's length = %d, capacity = %d\n",
153		s2->getLength(), s2->getCapacity());
154	IOLog("object unformatted = %s\n", s2->text());
155
156	IOLog("\nserialized objects compared %ssuccessfully textually\n\n",
157	       strcmp(s->text(), s2->text()) ? "un":"");
158
159	IOLog("\nserialized objects compared %ssuccessfully objectwise\n\n",
160	       d->isEqualTo(d2) ? "":"un");
161
162	s2->release();
163	if (d2) d2->release();
164	s->release();
165	if (d) d->release();
166
167        return KMOD_RETURN_SUCCESS;
168}
169
170kern_return_t
171test2_stop(struct kmod_info *ki, void *data)
172{
173        return KMOD_RETURN_SUCCESS;
174}
175