xref: /xnu-10002.81.5/libkern/c++/Tests/TestSerialization/test1/test1_main.cpp (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587)
1*5e3eaea3SApple OSS Distributions /*
2*5e3eaea3SApple OSS Distributions  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3*5e3eaea3SApple OSS Distributions  *
4*5e3eaea3SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*5e3eaea3SApple OSS Distributions  *
6*5e3eaea3SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*5e3eaea3SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*5e3eaea3SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*5e3eaea3SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*5e3eaea3SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*5e3eaea3SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*5e3eaea3SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*5e3eaea3SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*5e3eaea3SApple OSS Distributions  *
15*5e3eaea3SApple OSS Distributions  * Please obtain a copy of the License at
16*5e3eaea3SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*5e3eaea3SApple OSS Distributions  *
18*5e3eaea3SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*5e3eaea3SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*5e3eaea3SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*5e3eaea3SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*5e3eaea3SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*5e3eaea3SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*5e3eaea3SApple OSS Distributions  * limitations under the License.
25*5e3eaea3SApple OSS Distributions  *
26*5e3eaea3SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*5e3eaea3SApple OSS Distributions  */
28*5e3eaea3SApple OSS Distributions #include <libkern/OSBase.h>
29*5e3eaea3SApple OSS Distributions 
30*5e3eaea3SApple OSS Distributions __BEGIN_DECLS
31*5e3eaea3SApple OSS Distributions #include <mach/mach_types.h>
32*5e3eaea3SApple OSS Distributions #include <mach/vm_types.h>
33*5e3eaea3SApple OSS Distributions #include <mach/kmod.h>
34*5e3eaea3SApple OSS Distributions 
35*5e3eaea3SApple OSS Distributions kmod_start_func_t test1_start;
36*5e3eaea3SApple OSS Distributions kmod_stop_func_t test1_stop;
37*5e3eaea3SApple OSS Distributions __END_DECLS
38*5e3eaea3SApple OSS Distributions 
39*5e3eaea3SApple OSS Distributions #include <libkern/c++/OSContainers.h>
40*5e3eaea3SApple OSS Distributions #include <iokit/IOLib.h>
41*5e3eaea3SApple OSS Distributions 
42*5e3eaea3SApple OSS Distributions const char *testBuffer = ""
43*5e3eaea3SApple OSS Distributions     "{ string	= \"this is a 'string' with spaces\";"
44*5e3eaea3SApple OSS Distributions     "  string2	= 'this is also a \"string\" with spaces';"
45*5e3eaea3SApple OSS Distributions     "  offset	= 16384:32;"
46*5e3eaea3SApple OSS Distributions     "  true          = .true.;"
47*5e3eaea3SApple OSS Distributions     "  false         = .false.;"
48*5e3eaea3SApple OSS Distributions     "  data		= <0123 4567 89abcdef>;"
49*5e3eaea3SApple OSS Distributions     "  array		= (1:8, 2:16, 3:32, 4:64 );"
50*5e3eaea3SApple OSS Distributions     "  set		= [ one, two, three, four ];"
51*5e3eaea3SApple OSS Distributions     "  emptydict	= { }@1;"
52*5e3eaea3SApple OSS Distributions     "  emptyarray	= ( )@2;"
53*5e3eaea3SApple OSS Distributions     "  emptyset	= [ ]@3;"
54*5e3eaea3SApple OSS Distributions     "  emptydata	= < >@4;"
55*5e3eaea3SApple OSS Distributions     "  emptydict2	= @1;"
56*5e3eaea3SApple OSS Distributions     "  emptyarray2	= @2;"
57*5e3eaea3SApple OSS Distributions     "  emptyset2	= @3;"
58*5e3eaea3SApple OSS Distributions     "  emptydata2	= @4;"
59*5e3eaea3SApple OSS Distributions     "  dict2		= { string = asdfasdf; };"
60*5e3eaea3SApple OSS Distributions     "  dict3		= { string = asdfasdf; };"
61*5e3eaea3SApple OSS Distributions     "}@0";
62*5e3eaea3SApple OSS Distributions 
63*5e3eaea3SApple OSS Distributions kern_return_t
test1_start(struct kmod_info * ki,void * data)64*5e3eaea3SApple OSS Distributions test1_start(struct kmod_info *ki, void *data)
65*5e3eaea3SApple OSS Distributions {
66*5e3eaea3SApple OSS Distributions 	IOLog("test buffer start:\n%s\n:test buffer end.\n", testBuffer);
67*5e3eaea3SApple OSS Distributions 
68*5e3eaea3SApple OSS Distributions 	// test unserialize
69*5e3eaea3SApple OSS Distributions 	OSString *errmsg;
70*5e3eaea3SApple OSS Distributions 	OSObject *d = OSUnserialize(testBuffer, &errmsg);
71*5e3eaea3SApple OSS Distributions 	if (!d) {
72*5e3eaea3SApple OSS Distributions 		IOLog("%s\n", errmsg->getCStringNoCopy());
73*5e3eaea3SApple OSS Distributions 		return KMOD_RETURN_SUCCESS;
74*5e3eaea3SApple OSS Distributions 	}
75*5e3eaea3SApple OSS Distributions 
76*5e3eaea3SApple OSS Distributions 	// test serialize
77*5e3eaea3SApple OSS Distributions 	OSSerialize *s = OSSerialize::withCapacity(5);
78*5e3eaea3SApple OSS Distributions 	if (!d->serialize(s)) {
79*5e3eaea3SApple OSS Distributions 		IOLog("serialization failed\n");
80*5e3eaea3SApple OSS Distributions 		return KMOD_RETURN_SUCCESS;
81*5e3eaea3SApple OSS Distributions 	}
82*5e3eaea3SApple OSS Distributions 
83*5e3eaea3SApple OSS Distributions 	IOLog("serialized object's length = %d, capacity = %d\n", s->getLength(), s->getCapacity());
84*5e3eaea3SApple OSS Distributions 	IOLog("object unformatted = %s\n", s->text());
85*5e3eaea3SApple OSS Distributions 
86*5e3eaea3SApple OSS Distributions 	// try second time
87*5e3eaea3SApple OSS Distributions 	OSObject *d2 = OSUnserializeXML(s->text(), &errmsg);
88*5e3eaea3SApple OSS Distributions 	if (!d2) {
89*5e3eaea3SApple OSS Distributions 		IOLog("%s\n", errmsg->getCStringNoCopy());
90*5e3eaea3SApple OSS Distributions 		return KMOD_RETURN_SUCCESS;
91*5e3eaea3SApple OSS Distributions 	}
92*5e3eaea3SApple OSS Distributions 
93*5e3eaea3SApple OSS Distributions 	IOLog("\nserialized objects compared %ssuccessfully objectwise\n\n",
94*5e3eaea3SApple OSS Distributions 	    d->isEqualTo(d2) ? "":"un");
95*5e3eaea3SApple OSS Distributions 
96*5e3eaea3SApple OSS Distributions 	if (d2) {
97*5e3eaea3SApple OSS Distributions 		d2->release();
98*5e3eaea3SApple OSS Distributions 	}
99*5e3eaea3SApple OSS Distributions 	s->release();
100*5e3eaea3SApple OSS Distributions 	if (d) {
101*5e3eaea3SApple OSS Distributions 		d->release();
102*5e3eaea3SApple OSS Distributions 	}
103*5e3eaea3SApple OSS Distributions 
104*5e3eaea3SApple OSS Distributions 	return KMOD_RETURN_SUCCESS;
105*5e3eaea3SApple OSS Distributions }
106*5e3eaea3SApple OSS Distributions 
107*5e3eaea3SApple OSS Distributions kern_return_t
test1_stop(struct kmod_info * ki,void * data)108*5e3eaea3SApple OSS Distributions test1_stop(struct kmod_info *ki, void *data)
109*5e3eaea3SApple OSS Distributions {
110*5e3eaea3SApple OSS Distributions 	return KMOD_RETURN_SUCCESS;
111*5e3eaea3SApple OSS Distributions }
112