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