forked from xamarin/XobotOS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
126 lines (81 loc) · 3.75 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
A build guide can be found here:
https://wiki.liberateos.org/index.php?title=XobotOS
XobotOS project
===============
XobotOS is a Xamarin research project that explored porting Android
4.0 from Java/Dalvik to C# to explore the performance and memory
footprint benefits of C#.
XobotOS is a semi-automated port of the Android 4.0 source code from
Java to C#. The automated parts were ported using an improved version
of Sharpen that can compile more advanced Java constructs and supports
generics. Most of the manual bits of code fall in two categories (a)
code to integrate with the host operating system and (b) replace the
Java JNI code used to call into C, with the ECMA CLI P/Invoke
functionality.
License
=======
The various components of XobotOS are licensed under the same license
as their upstream providers. The C# versions of Android is licensed
under the terms of the Apache 2 license, while the improved version of
Sharpen is licensed under the GPL.
XobotOS Source Code
===================
XobotOS is made up of the following sources:
sharpen:
* Our updated version of Sharpen, see below for changes.
android/generated:
* Fully translated Java to C# code, classes that have been
translated in this way contain the attribute [Sharpen.Sharpened]
* Empty C# stubs based on the Java declaration: these are
needed as intermediate steps to get things to build in the
new C# world. Classes with empty stubs are decorated with
the [Sharpen.NakedStub] attribute
android/extra-sources:
* Custom written code that either fine tunes the port,
provides an alternative optimized version to a class or
provides a runtime facility.
android/api:
* XML files that describe the translation process from Java to C#.
android/upstream:
* Google's Android 4.0 source code.
libxobotos:
* Glue code to integrate with various Android C++ libraries as
well as the Linux X11 host that sets up the toplevel window
and the optional OpenGL context.
* Mostly calls into Skia, Jpeg, OpenGL and ICU libraries.
binaries:
* Libraries to get you started without requiring you to build Skia,
and other native Android tools.
* Screenshots, videos, and some basic precompiled samples.
monodevelop:
* Add-in to build native XobotOS applications with MonoDevelop
samples:
* Ported samples to C# using XobotOS
external:
* Native libraries needed to build the unmanaged libxobotos C library
Sharpen
=======
The outcome of this project is a vastly improved Sharpen tool that is
able to port very sophisticated and advanced Java codebases from Java
to C#. This code lives in the "sharpen" directory.
This modified version of Sharpen can cope with the following enhancements:
* Java generics
* XML-driven translation process
* Type remapping for native Java types to C# types, and supports
for custom type mappings.
* Support for translating code that does native interop
* Support for generating C's .c and .h files for native glue
(to assist in P/Invoke support)
* Add attribute-supported translations
* Improved incremental compilation
Documentation on the improved Sharpen engine will be posted in the
future so other developers can more easily port Java code to C#.
Support
=======
Further documentation can be found at https://wiki.liberateos.org/index.php?title=XobotOS
If you find issues in the code or need assistance, please open a
issue on GitHub. For feedback and discussions you our community
at https://www.liberateos.org/community.html
And we need your help to:
1. Create the Sharpen documentation promised by Xamarin above that was never published as far as we know
2. Improve the code as specially in regards to interacting with the native Android libraries