starflut 0.5.1 starflut: ^0.5.1 copied to clipboard
A new flutter plugin project,which supports flutter to interact with other scripting languages such as python, java, ruby, golang, rust, etc. It is easy to use, supports android and ios platform.
starflut #
A new flutter plugin project, which supports flutter to interact with other scripting languages such as python, java, ruby, golang, rust, etc. It is easy to use, supports android and ios platform.
starflut is based on "starcore-for-android" and "starfore-for-ios project".
First release at 2018/07/22 #
Getting Started #
For help getting started with Flutter, view offical site documentation.
1. Get source code #
$ git clone https://github.com/srplab/starcore_for_flutter
- a. ** download "starcore_for_android" **
$ git clone https://github.com/srplab/starcore_for_android
or download from srplab:starcore_for_android.2.6.0.zip.
- b. ** download "starcore_for_ios" **
$ git clone https://github.com/srplab/starcore_for_ios
or download from srplab:starcore_for_ios.2.6.0.tar.gz.
2. How to use, with an example of calling python #
- a. ** Create project **
$ flutter create teststarflut
- b. ** Modify "pubspec.yaml", add "starflut" package **
dev_dependencies:
flutter_test:
sdk: flutter
starflut:
path: ../starcore_for_flutter/starflut
- c. ** For android, create sub folder under "main" and add python share libraries as follow **
android
app
src
main
assets
unicodedata.cpython-36m.so
zlib.cpython-36m.so
java
jniLibs
arm64-v8a
libpython3.6m.so
libstar_python36.so
armeabi
libpython3.6m.so
libstar_python36.so
armeabi-v7a
libpython3.6m.so
libstar_python36.so
x86
libpython3.6m.so
libstar_python36.so
x86_64
libpython3.6m.so
libstar_python36.so
res
- d. ** For ios, define the environment variable based on the features used **
- set "STARCORE_PATH" to the folder of "starcore_for_ios"
- if starcore native service is used, set "STARCORE_EXPORTDEFINE" ,"STARCORE_EXPORTFUNCTION", "STARCORE_EXPORTLIBRARY", and , "STARCORE_EXPORTLIBRARYPATH"
- if python is used, set "STARCORE_PYTHONVERSION" and "STARCORE_PYTHONLIBRARY"
- if ruby is used, set "STARCORE_RUBYVERSION"
- if golang module is used ,set "STARCORE_GOLIBRARYPATH", where "libstar_go.a" and "libvsopenapi_c_stub.a" is located
STARCORE_PATH # '/Users/srplab/Desktop'
STARCORE_PYTHONVERSION # '3.6' '3.5' '2.7'
STARCORE_PYTHONLIBRARY # 'star_python36,python3.6m'
STARCORE_RUBYVERSION # '2.4' '2.5
STARCORE_GOLIBRARYPATH # '/Users/srplab/Desktop/go.study'
STARCORE_EXPORTDEFINE # 'extern\ \"C\"\ void\ *star_go_GetExportFunctionTable();'
STARCORE_EXPORTFUNCTION # 'star_go_GetExportFunctionTable();'
STARCORE_EXPORTLIBRARY # 'star_go,vsopenapi_c_stub'
STARCORE_EXPORTLIBRARYPATH # '/Users/srplab/Desktop/go.study'
for example
$ flutter clean
$ export STARCORE_PATH='/Users/srplab/Desktop'
$ export STARCORE_PYTHONVERSION='3.6'
$ export STARCORE_PYTHONLIBRARY='star_python36,python3.6m'
$ flutter build ios --no-codesign
- d. ** Python file to be called **
- create folder "starfiles" under the project, add python scripts. ** The folder name must be "starfiles" **
starfiles
python3.6.zip
testpy.py
- modify "pubspec.yaml", add assets folder
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
assets:
- starfiles/
- testpy.py
def tt(a,b) :
print(a,b)
return 666,777
g1 = 123
def yy(a,b,z) :
print(a,b,z)
return {'jack': 4098, 'sape': 4139}
class Multiply :
def __init__(self,x,y) :
self.a = x
self.b = y
def multiply(self,a,b):
print("multiply....",self,a,b)
return a * b
- d. ** main.dart **
Future<void> testCallPython() async {
StarCoreFactory starcore = await Starflut.getFactory();
StarServiceClass Service = await starcore.initSimple("test", "123", 0, 0, []);
await starcore.regMsgCallBackP(
(int serviceGroupID, int uMsg, Object wParam, Object lParam) async{
print("$serviceGroupID $uMsg $wParam $lParam");
return null;
});
StarSrvGroupClass SrvGroup = await Service["_ServiceGroup"];
/*---script python--*/
bool isAndroid = await Starflut.isAndroid();
if( isAndroid == true ){
await Starflut.copyFileFromAssets("testpy.py", "flutter_assets/starfiles","flutter_assets/starfiles");
await Starflut.copyFileFromAssets("python3.6.zip", "flutter_assets/starfiles",null); //desRelatePath must be null
await Starflut.copyFileFromAssets("zlib.cpython-36m.so", null,null);
await Starflut.copyFileFromAssets("unicodedata.cpython-36m.so", null,null);
await Starflut.loadLibrary("libpython3.6m.so");
}
String docPath = await Starflut.getDocumentPath();
print("docPath = $docPath");
String resPath = await Starflut.getResourcePath();
print("resPath = $resPath");
dynamic rr1 = await SrvGroup.initRaw("python36", Service);
print("initRaw = $rr1");
var Result = await SrvGroup.loadRawModule("python", "", resPath + "/flutter_assets/starfiles/" + "testpy.py", false);
print("loadRawModule = $Result");
dynamic python = await Service.importRawContext("python", "", false, "");
print("python = "+ await python.getString());
StarObjectClass retobj = await python.call("tt", ["hello ", "world"]);
print(await retobj[0]);
print(await retobj[1]);
print(await python["g1"]);
StarObjectClass yy = await python.call("yy", ["hello ", "world", 123]);
print(await yy.call("__len__",[]));
StarObjectClass multiply = await Service.importRawContext("python", "Multiply", true, "");
StarObjectClass multiply_inst = await multiply.newObject(["", "", 33, 44]);
print(await multiply_inst.getString());
print(await multiply_inst.call("multiply", [11, 22]));
await SrvGroup.clearService();
await starcore.moduleExit();
}
API Interface: #
note:
!! important
!! for dart does not support destruct function of class, so the starobject must be freed manually, or else will cause memory leak
!! starflut must be run in main ui thread.
Starflut:
** for android and ios
isAndroid : static Future<bool> isAndroid() async
getFactory : static Future<StarCoreFactory> getFactory() async
getDocumentPath : static Future<String> getDocumentPath() async
getResourcePath : static Future<String> getResourcePath() async
: for ios : [[NSBundle mainBundle] resourcePath]
: for android : is same with getDocumentPath
pushLocalFrame : static void pushLocalFrame()
popLocalFrame : static void popLocalFrame()
note: when popLocalFrame is called, the starobject allocated from pushLocalFrame may be freed
If starobject will be used after, it's lock function must be called.
: StarSrvGroupClass instance always in root frame
: StarServiceClass instance returned from getService or initSimple always in root frame
** for android
getNativeLibraryDir : static Future<String> getNativeLibraryDir() async
getPackageName :
unzipFromAssets : static Future<bool> unzipFromAssets(String fileName,String desPath,bool overWriteFlag) async
: fileName is fullname with path relative to assets
: desPath is fullname with path relative to '/'
copyFileFromAssets : static Future<bool> copyFileFromAssets(String name,String srcRelatePath,String desRelatePath) async
: srcRelatePath is the path fromm assets, may be null, if at assets's root
: desRelatePath is the path relative to "/data/data/"+activity.getPackageName()+"/files"
: if null, the desRelatePath is "/data/data/"+activity.getPackageName()+"/files"
loadLibrary : static Future<bool> loadLibrary(String name) async
getActivity : static Future<StarObjectClass> getActivity() async
: note: this function must be called after [await SrvGroup.initRaw("java",Service);]
note: only valid for android
** for ios
rubyInitExt : static Future<String> rubyInitExt() async
: this function should be called after initRaw("ruby",Service);
: this function load ext: md5,rmd160,sha1,sha2,openssl
StarCoreBase
lock : void lock()
: move the starobject from local frame to global frame,
: !! important this object must be freed manually when not used.
StarCoreFactory:
initCore : Future<int> initCore(bool serverFlag,bool showMenuFlag,bool showClientWndFlag,bool sRPPrintFlag,String debugInterface,int debugPort,String clientInterface,int clientPort) async
initSimpleEx : Future<StarSrvGroupClass> initSimpleEx(int clientPort,int webPort,List<String> dependService) async
initSimple : Future<StarServiceClass> initSimple(String serviceName,String servicePass,int clientPortNumber,int webPortNumber,List<String> dependService) async
getSrvGroup : Future<StarSrvGroupClass> getSrvGroup(Object ServiceName_GroupID) async
moduleExit : Future<void> moduleExit() async
moduleClear : Future<void> moduleClear() async
regMsgCallBackP : Future<void> regMsgCallBackP(MsgCallBackProc callBack) async
: note: !!! In callback function, do not call any starflut functions
//regDispatchRequestP : Future<void> regDispatchRequestP(DispatchRequestProc callBack) async
sRPDispatch : Future<bool> sRPDispatch(bool waitFalg) async
sRPLock : Future<void> sRPLock() async
sRPUnLock : Future<void> sRPUnLock() async
setRegisterCode : Future<bool> setRegisterCode(String codeString,bool single) async
isRegistered : Future<bool> isRegistered () async
setLocale : Future<void> setLocale(String lang) async
getLocale : Future<String> getLocale () async
version : Future<List> version () async
getScriptIndex : Future<int> getScriptIndex (String interface) async
setScript : Future<bool> setScript(String scriptInterface,String module, String para) async
detachCurrentThread : Future<void> detachCurrentThread() async
coreHandle : Future<int> coreHandle () async
StarSrvGroupClass :
getString : Future<String> getString() async
= toString
createService : Future<StarServiceClass> createService(String servicePath,String serviceName,String rootPass,int frameInterval,int netPkgSize,int uploadPkgSize,int downloadPkgSize,int dataUpPkgSize,int dataDownPkgSize,String derviceID) async
getService : Future<StarServiceClass> getService(String username, String userpassword) async
clearService : Future<void> clearService() async
newParaPkg : Future<StarParaPkgClass> newParaPkg(Object args) async , example: StarSrvGroup.newParaPkg(['aaaa',234,[345]])
: args maybe List or Map
newBinBuf : Future<StarBinBufClass> newBinBuf() async
//newSXml : Future<StarSXmlClass> newSXml() async
isObject : bool isObject(Object which)
isParaPkg : bool isParaPkg(Object which)
isBinBuf : bool isBinBuf(Object which)
//isSXml : bool isSXml(Object which)
getServicePath : Future<String> getServicePath() async
setServicePath : Future<void> setServicePath (String args) async
servicePathIsSet : Future<bool> servicePathIsSet() async
getCurrentPath : Future<String> getCurrentPath() async
importService : Future<bool> importService (String serviceName,bool loadRunModule) async
clearServiceEx : Future<void> clearServiceEx() async
runScript : Future<bool> runScript (String scriptInterface,String scriptBuf,String moduleName) async
runScriptEx : Future<bool> runScriptEx (String scriptInterface,StarBinBufClass binBuf,String moduleName) async
doFile : Future<bool> doFile (String scriptInterface,String fileName) async
doFileEx : Future<bool> doFileEx (String scriptInterface,String fileName,String moduleName) async
setClientPort : Future<bool> setClientPort (String lInterface,int portnumber) async
setTelnetPort : Future<bool> setTelnetPort (int portnumber) async
setOutputPort : Future<bool> setOutputPort (String host,int portnumber) async
setWebServerPort : Future<bool> setWebServerPort (String host,int portnumber,int connectionNumber,int postSize) async
initRaw : Future<bool> initRaw (String scriptInterface,StarServiceClass service) async : note: always returns true, if error occured,it will be print in log window
loadRawModule : Future<bool> loadRawModule (String scriptInterface,String moduleName,String fileOrString, bool isString) async : note: always returns true, if error occured,it will be print in log window
getLastError : Future<int> getLastError () async
getLastErrorInfo : Future<String> getLastErrorInfo () async
getCorePath : Future<String> getCorePath () async
getUserPath : Future<String> getUserPath () async
getLocalIP : Future<String> getLocalIP () async
getLocalIPEx : Future<List> getLocalIPEx () async
getObjectNum : Future<int> getObjectNum () async
activeScriptInterface : Future<List> activeScriptInterface (String scriptInterfaceName) async
preCompile : Future<List> preCompile (String scriptInterfaceName,String ScriptSegment) async
StarServiceClass:
getString : Future<String> getString() async
= toString
[] : Future<Object> operator [](Object object) async
: == Get : "_Name" "_ServiceGroup" "_ID"
getObject : Future<StarObjectClass> getObject (String objectName) async
getObjectEx : Future<StarObjectClass> getObjectEx (String objectID) async
newObject : Future<StarObjectClass> newObject (List args) async
: == New
runScript : Future<List> runScript (String scriptInterface,String scriptBuf,String moduleName,String workDirectory) async
runScriptEx : Future<List> runScriptEx (String scriptInterface,StarBinBufClass binBuf,String moduleName,String workDirectory) async
doFile : Future<List> doFile (String scriptInterface,String fileName,String workDirectory) async
doFileEx : Future<List> doFileEx (String scriptInterface,String fileName,String workDirectory,String moduleName) async
isServiceRegistered : Future<bool> isServiceRegistered () async
checkPassword : Future<void> checkPassword (bool flag) async
newRawProxy : Future<StarObjectClass> newRawProxy (String scriptInterface,StarObjectClass attachObject,String attachFunction,String proyInfo,int proxyType) async
importRawContext : Future<StarObjectClass> importRawContext (String scriptInterface,String contextName,bool isClass,String contextInfo) async
getLastError : Future<int> getLastError () async
getLastErrorInfo : Future<String> getLastErrorInfo () async
StarParaPkg:
getString : Future<String> getString() async
= toString
number : Future<int> get number async
[] : Future<Object> operator [](int index) async
: == Get :
getValue : Future<Object> getValue(Object value) async
: == Get: value may be integer or List<int> which will returns multiple values corresponding to each index
:
setValue : Future<StarParaPkgClass> setValue(int index,Object value) async
: == Set
build : Future<StarParaPkgClass> build (Object args) async
: args maybe List or Map
clear : Future<StarParaPkgClass> clear () async
appendFrom : Future<bool> appendFrom (StarParaPkgClass srcParaPkg) async
free : Future<void> free () async
dispose : Future<void> dispose () async
releaseOwner : Future<void> releaseOwner () async
asDict : Future<StarParaPkgClass> asDict (bool isDict) async
isDict : Future<bool> isDict () async
fromJSon : Future<bool> fromJSon (String jsonstring) async
toJSon : Future<String> toJSon () async
toTuple : Future<Object> toTuple () async
StarBinBuf :
getString : Future<String> getString() async
= toString
offset : Future<int> get offset async
= _Offset
init : Future<void> init (int bufSize) async
clear : Future<void> clear (int bufSize) async
saveToFile : Future<bool> saveToFile (String fileName,bool txtFileFlag) async
loadFromFile : Future<bool> loadFromFile (String fileName,bool txtFileFlag) async
read : Future<Uint8List> read (int offset,int length) async
write : Future<int> write (int offset,Uint8List buf,int length) async
free : Future<void> free () async
dispose : Future<void> dispose () async
releaseOwner : Future<void> releaseOwner () async
StarObject :
getString : Future<String> getString() async
= toString
[] : Future<Object> operator [](Object indexOrName) async
= Get : "_Service" "_Class" "_ID" "_Name"
getValue : Future<Object> getValue(Object indexOrNameOrList) async
= Get : "_Service" "_Class" "_ID" "_Name"
value may be integer or List<int or String> which will returns multiple values corresponding to each index or Name
setValue : Future<void> setValue(Object indexOrName,Object value) async
= Set : "_Name"
call : Future<Object> call (String funcName,List args) async
: note: !!! In callback function, do not call any starflut functions
newObject : Future<StarObjectClass> newObject (List args) async
free : Future<void> free () async
dispose : Future<void> dispose () async
hasRawContext : Future<bool> hasRawContext () async
rawToParaPkg : Future<Object> rawToParaPkg () async
getSourceScript : Future<int> getSourceScript () async
getLastError : Future<int> getLastError () async
getLastErrorInfo : Future<String> getLastErrorInfo () async
releaseOwnerEx : Future<void> releaseOwnerEx () async
regScriptProcP : Future<void> regScriptProcP(String scriptName,StarObjectScriptProc callBack) async
More Info: #
For more information about use how to use cle's APIs, please refer to
common language extension_programmer's guide_en.pdf
and,
common language extension_interface for script_en.pdf
For more examples, please refer to