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