v: 5.10.24

Se hicieron invisibles normales de la venta, se agregaron 2 botones mas, uno indica que tieene venta y el otro que no tiene, tambien al boton que indica que tiene venta se le agrega una pequeña ventana para agregar la venta que se le indique.
This commit is contained in:
IsR0d
2024-10-07 10:14:24 -06:00
parent 7fe1d3059d
commit 65319638b4
1220 changed files with 160744 additions and 132 deletions

View File

@@ -0,0 +1,868 @@
package keymon.lat.medicomed;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.B4AClass;
import anywheresoftware.b4a.BALayout;
import anywheresoftware.b4a.debug.*;
public class httpjob extends B4AClass.ImplB4AClass implements BA.SubDelegator{
private static java.util.HashMap<String, java.lang.reflect.Method> htSubs;
private void innerInitialize(BA _ba) throws Exception {
if (ba == null) {
ba = new anywheresoftware.b4a.ShellBA(_ba, this, htSubs, "keymon.lat.medicomed.httpjob");
if (htSubs == null) {
ba.loadHtSubs(this.getClass());
htSubs = ba.htSubs;
}
}
if (BA.isShellModeRuntimeCheck(ba))
this.getClass().getMethod("_class_globals", keymon.lat.medicomed.httpjob.class).invoke(this, new Object[] {null});
else
ba.raiseEvent2(null, true, "class_globals", false);
}
public void innerInitializeHelper(anywheresoftware.b4a.BA _ba) throws Exception{
innerInitialize(_ba);
}
public Object callSub(String sub, Object sender, Object[] args) throws Exception {
return BA.SubDelegator.SubNotFound;
}
public static class _multipartfiledata{
public boolean IsInitialized;
public String Dir;
public String FileName;
public String KeyName;
public String ContentType;
public void Initialize() {
IsInitialized = true;
Dir = "";
FileName = "";
KeyName = "";
ContentType = "";
}
@Override
public String toString() {
return BA.TypeToString(this, false);
}}
public anywheresoftware.b4a.keywords.Common __c = null;
public String _jobname = "";
public boolean _success = false;
public String _username = "";
public String _password = "";
public String _errormessage = "";
public Object _target = null;
public String _taskid = "";
public anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest _req = null;
public anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpResponse _response = null;
public Object _tag = null;
public String _invalidurl = "";
public String _defaultscheme = "";
public b4a.example.dateutils _dateutils = null;
public keymon.lat.medicomed.main _main = null;
public keymon.lat.medicomed.starter _starter = null;
public keymon.lat.medicomed.subs _subs = null;
public keymon.lat.medicomed.appupdater _appupdater = null;
public keymon.lat.medicomed.mapa_rutas _mapa_rutas = null;
public keymon.lat.medicomed.tracker _tracker = null;
public keymon.lat.medicomed.newinst2 _newinst2 = null;
public keymon.lat.medicomed.b4xpages _b4xpages = null;
public keymon.lat.medicomed.b4xcollections _b4xcollections = null;
public keymon.lat.medicomed.httputils2service _httputils2service = null;
public keymon.lat.medicomed.xuiviewsutils _xuiviewsutils = null;
public String _release(keymon.lat.medicomed.httpjob __ref) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "release", true))
{return ((String) Debug.delegate(ba, "release", null));}
RDebugUtils.currentLine=43450368;
//BA.debugLineNum = 43450368;BA.debugLine="Public Sub Release";
RDebugUtils.currentLine=43450370;
//BA.debugLineNum = 43450370;BA.debugLine="File.Delete(HttpUtils2Service.TempFolder, taskId)";
__c.File.Delete(_httputils2service._tempfolder /*String*/ ,__ref._taskid /*String*/ );
RDebugUtils.currentLine=43450372;
//BA.debugLineNum = 43450372;BA.debugLine="End Sub";
return "";
}
public String _initialize(keymon.lat.medicomed.httpjob __ref,anywheresoftware.b4a.BA _ba,String _name,Object _targetmodule) throws Exception{
__ref = this;
innerInitialize(_ba);
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "initialize", true))
{return ((String) Debug.delegate(ba, "initialize", new Object[] {_ba,_name,_targetmodule}));}
RDebugUtils.currentLine=42336256;
//BA.debugLineNum = 42336256;BA.debugLine="Public Sub Initialize (Name As String, TargetModul";
RDebugUtils.currentLine=42336257;
//BA.debugLineNum = 42336257;BA.debugLine="JobName = Name";
__ref._jobname /*String*/ = _name;
RDebugUtils.currentLine=42336258;
//BA.debugLineNum = 42336258;BA.debugLine="target = TargetModule";
__ref._target /*Object*/ = _targetmodule;
RDebugUtils.currentLine=42336266;
//BA.debugLineNum = 42336266;BA.debugLine="End Sub";
return "";
}
public String _download(keymon.lat.medicomed.httpjob __ref,String _link) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "download", true))
{return ((String) Debug.delegate(ba, "download", new Object[] {_link}));}
RDebugUtils.currentLine=43122688;
//BA.debugLineNum = 43122688;BA.debugLine="Public Sub Download(Link As String)";
RDebugUtils.currentLine=43122689;
//BA.debugLineNum = 43122689;BA.debugLine="Try";
try {RDebugUtils.currentLine=43122690;
//BA.debugLineNum = 43122690;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=43122691;
//BA.debugLineNum = 43122691;BA.debugLine="req.InitializeGet(Link)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeGet(_link);
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=43122693;
//BA.debugLineNum = 43122693;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("943122693",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=43122694;
//BA.debugLineNum = 43122694;BA.debugLine="req.InitializeGet(InvalidURL)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeGet(__ref._invalidurl /*String*/ );
};
RDebugUtils.currentLine=43122696;
//BA.debugLineNum = 43122696;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=43122697;
//BA.debugLineNum = 43122697;BA.debugLine="End Sub";
return "";
}
public anywheresoftware.b4a.objects.streams.File.InputStreamWrapper _getinputstream(keymon.lat.medicomed.httpjob __ref) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "getinputstream", true))
{return ((anywheresoftware.b4a.objects.streams.File.InputStreamWrapper) Debug.delegate(ba, "getinputstream", null));}
anywheresoftware.b4a.objects.streams.File.InputStreamWrapper _in = null;
RDebugUtils.currentLine=43974656;
//BA.debugLineNum = 43974656;BA.debugLine="Public Sub GetInputStream As InputStream";
RDebugUtils.currentLine=43974657;
//BA.debugLineNum = 43974657;BA.debugLine="Dim In As InputStream";
_in = new anywheresoftware.b4a.objects.streams.File.InputStreamWrapper();
RDebugUtils.currentLine=43974658;
//BA.debugLineNum = 43974658;BA.debugLine="In = File.OpenInput(HttpUtils2Service.TempFolder,";
_in = __c.File.OpenInput(_httputils2service._tempfolder /*String*/ ,__ref._taskid /*String*/ );
RDebugUtils.currentLine=43974659;
//BA.debugLineNum = 43974659;BA.debugLine="Return In";
if (true) return _in;
RDebugUtils.currentLine=43974660;
//BA.debugLineNum = 43974660;BA.debugLine="End Sub";
return null;
}
public String _getstring(keymon.lat.medicomed.httpjob __ref) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "getstring", true))
{return ((String) Debug.delegate(ba, "getstring", null));}
RDebugUtils.currentLine=43515904;
//BA.debugLineNum = 43515904;BA.debugLine="Public Sub GetString As String";
RDebugUtils.currentLine=43515905;
//BA.debugLineNum = 43515905;BA.debugLine="Return GetString2(\"UTF8\")";
if (true) return __ref._getstring2 /*String*/ (null,"UTF8");
RDebugUtils.currentLine=43515906;
//BA.debugLineNum = 43515906;BA.debugLine="End Sub";
return "";
}
public String _postbytes(keymon.lat.medicomed.httpjob __ref,String _link,byte[] _data) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "postbytes", true))
{return ((String) Debug.delegate(ba, "postbytes", new Object[] {_link,_data}));}
RDebugUtils.currentLine=42532864;
//BA.debugLineNum = 42532864;BA.debugLine="Public Sub PostBytes(Link As String, Data() As Byt";
RDebugUtils.currentLine=42532865;
//BA.debugLineNum = 42532865;BA.debugLine="Try";
try {RDebugUtils.currentLine=42532866;
//BA.debugLineNum = 42532866;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=42532867;
//BA.debugLineNum = 42532867;BA.debugLine="req.InitializePost2(Link, Data)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializePost2(_link,_data);
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=42532869;
//BA.debugLineNum = 42532869;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("942532869",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=42532870;
//BA.debugLineNum = 42532870;BA.debugLine="req.InitializePost2(InvalidURL, Data)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializePost2(__ref._invalidurl /*String*/ ,_data);
};
RDebugUtils.currentLine=42532872;
//BA.debugLineNum = 42532872;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=42532873;
//BA.debugLineNum = 42532873;BA.debugLine="End Sub";
return "";
}
public String _complete(keymon.lat.medicomed.httpjob __ref,int _id) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "complete", true))
{return ((String) Debug.delegate(ba, "complete", new Object[] {_id}));}
RDebugUtils.currentLine=43712512;
//BA.debugLineNum = 43712512;BA.debugLine="Public Sub Complete (id As Int)";
RDebugUtils.currentLine=43712513;
//BA.debugLineNum = 43712513;BA.debugLine="taskId = id";
__ref._taskid /*String*/ = BA.NumberToString(_id);
RDebugUtils.currentLine=43712514;
//BA.debugLineNum = 43712514;BA.debugLine="CallSubDelayed2(target, \"JobDone\", Me)";
__c.CallSubDelayed2(ba,__ref._target /*Object*/ ,"JobDone",this);
RDebugUtils.currentLine=43712515;
//BA.debugLineNum = 43712515;BA.debugLine="End Sub";
return "";
}
public anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest _getrequest(keymon.lat.medicomed.httpjob __ref) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "getrequest", true))
{return ((anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest) Debug.delegate(ba, "getrequest", null));}
RDebugUtils.currentLine=43646976;
//BA.debugLineNum = 43646976;BA.debugLine="Public Sub GetRequest As OkHttpRequest";
RDebugUtils.currentLine=43646977;
//BA.debugLineNum = 43646977;BA.debugLine="Return req";
if (true) return __ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ ;
RDebugUtils.currentLine=43646978;
//BA.debugLineNum = 43646978;BA.debugLine="End Sub";
return null;
}
public String _addscheme(keymon.lat.medicomed.httpjob __ref,String _link) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "addscheme", true))
{return ((String) Debug.delegate(ba, "addscheme", new Object[] {_link}));}
RDebugUtils.currentLine=42401792;
//BA.debugLineNum = 42401792;BA.debugLine="Private Sub AddScheme (Link As String) As String";
RDebugUtils.currentLine=42401793;
//BA.debugLineNum = 42401793;BA.debugLine="If DefaultScheme = \"\" Or Link.Contains(\":\") Then";
if ((__ref._defaultscheme /*String*/ ).equals("") || _link.contains(":")) {
if (true) return _link;};
RDebugUtils.currentLine=42401794;
//BA.debugLineNum = 42401794;BA.debugLine="Return DefaultScheme & \"://\" & Link";
if (true) return __ref._defaultscheme /*String*/ +"://"+_link;
RDebugUtils.currentLine=42401795;
//BA.debugLineNum = 42401795;BA.debugLine="End Sub";
return "";
}
public String _class_globals(keymon.lat.medicomed.httpjob __ref) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
RDebugUtils.currentLine=42270720;
//BA.debugLineNum = 42270720;BA.debugLine="Sub Class_Globals";
RDebugUtils.currentLine=42270721;
//BA.debugLineNum = 42270721;BA.debugLine="Public JobName As String";
_jobname = "";
RDebugUtils.currentLine=42270722;
//BA.debugLineNum = 42270722;BA.debugLine="Public Success As Boolean";
_success = false;
RDebugUtils.currentLine=42270723;
//BA.debugLineNum = 42270723;BA.debugLine="Public Username, Password As String";
_username = "";
_password = "";
RDebugUtils.currentLine=42270724;
//BA.debugLineNum = 42270724;BA.debugLine="Public ErrorMessage As String";
_errormessage = "";
RDebugUtils.currentLine=42270725;
//BA.debugLineNum = 42270725;BA.debugLine="Private target As Object";
_target = new Object();
RDebugUtils.currentLine=42270731;
//BA.debugLineNum = 42270731;BA.debugLine="Private taskId As String";
_taskid = "";
RDebugUtils.currentLine=42270733;
//BA.debugLineNum = 42270733;BA.debugLine="Private req As OkHttpRequest";
_req = new anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest();
RDebugUtils.currentLine=42270734;
//BA.debugLineNum = 42270734;BA.debugLine="Public Response As OkHttpResponse";
_response = new anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpResponse();
RDebugUtils.currentLine=42270743;
//BA.debugLineNum = 42270743;BA.debugLine="Public Tag As Object";
_tag = new Object();
RDebugUtils.currentLine=42270744;
//BA.debugLineNum = 42270744;BA.debugLine="Type MultipartFileData (Dir As String, FileName A";
;
RDebugUtils.currentLine=42270748;
//BA.debugLineNum = 42270748;BA.debugLine="Private Const InvalidURL As String = \"https://inv";
_invalidurl = "https://invalid-url/";
RDebugUtils.currentLine=42270749;
//BA.debugLineNum = 42270749;BA.debugLine="Public DefaultScheme As String = \"https\"";
_defaultscheme = "https";
RDebugUtils.currentLine=42270750;
//BA.debugLineNum = 42270750;BA.debugLine="End Sub";
return "";
}
public String _delete(keymon.lat.medicomed.httpjob __ref,String _link) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "delete", true))
{return ((String) Debug.delegate(ba, "delete", new Object[] {_link}));}
RDebugUtils.currentLine=43319296;
//BA.debugLineNum = 43319296;BA.debugLine="Public Sub Delete(Link As String)";
RDebugUtils.currentLine=43319297;
//BA.debugLineNum = 43319297;BA.debugLine="Try";
try {RDebugUtils.currentLine=43319298;
//BA.debugLineNum = 43319298;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=43319299;
//BA.debugLineNum = 43319299;BA.debugLine="req.InitializeDelete(Link)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeDelete(_link);
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=43319301;
//BA.debugLineNum = 43319301;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("943319301",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=43319302;
//BA.debugLineNum = 43319302;BA.debugLine="req.InitializeDelete(InvalidURL)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeDelete(__ref._invalidurl /*String*/ );
};
RDebugUtils.currentLine=43319304;
//BA.debugLineNum = 43319304;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=43319305;
//BA.debugLineNum = 43319305;BA.debugLine="End Sub";
return "";
}
public String _delete2(keymon.lat.medicomed.httpjob __ref,String _link,String[] _parameters) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "delete2", true))
{return ((String) Debug.delegate(ba, "delete2", new Object[] {_link,_parameters}));}
RDebugUtils.currentLine=43384832;
//BA.debugLineNum = 43384832;BA.debugLine="Public Sub Delete2(Link As String, Parameters() As";
RDebugUtils.currentLine=43384833;
//BA.debugLineNum = 43384833;BA.debugLine="Try";
try {RDebugUtils.currentLine=43384834;
//BA.debugLineNum = 43384834;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=43384835;
//BA.debugLineNum = 43384835;BA.debugLine="req.InitializeDelete(escapeLink(Link, Parameters";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeDelete(__ref._escapelink /*String*/ (null,_link,_parameters));
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=43384837;
//BA.debugLineNum = 43384837;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("943384837",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=43384838;
//BA.debugLineNum = 43384838;BA.debugLine="req.InitializeDelete(escapeLink(InvalidURL, Para";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeDelete(__ref._escapelink /*String*/ (null,__ref._invalidurl /*String*/ ,_parameters));
};
RDebugUtils.currentLine=43384840;
//BA.debugLineNum = 43384840;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=43384841;
//BA.debugLineNum = 43384841;BA.debugLine="End Sub";
return "";
}
public String _escapelink(keymon.lat.medicomed.httpjob __ref,String _link,String[] _parameters) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "escapelink", true))
{return ((String) Debug.delegate(ba, "escapelink", new Object[] {_link,_parameters}));}
anywheresoftware.b4a.keywords.StringBuilderWrapper _sb = null;
anywheresoftware.b4a.objects.StringUtils _su = null;
int _i = 0;
RDebugUtils.currentLine=43253760;
//BA.debugLineNum = 43253760;BA.debugLine="Private Sub escapeLink(Link As String, Parameters(";
RDebugUtils.currentLine=43253761;
//BA.debugLineNum = 43253761;BA.debugLine="Dim sb As StringBuilder";
_sb = new anywheresoftware.b4a.keywords.StringBuilderWrapper();
RDebugUtils.currentLine=43253762;
//BA.debugLineNum = 43253762;BA.debugLine="sb.Initialize";
_sb.Initialize();
RDebugUtils.currentLine=43253763;
//BA.debugLineNum = 43253763;BA.debugLine="sb.Append(Link)";
_sb.Append(_link);
RDebugUtils.currentLine=43253764;
//BA.debugLineNum = 43253764;BA.debugLine="If Parameters.Length > 0 Then sb.Append(\"?\")";
if (_parameters.length>0) {
_sb.Append("?");};
RDebugUtils.currentLine=43253765;
//BA.debugLineNum = 43253765;BA.debugLine="Dim su As StringUtils";
_su = new anywheresoftware.b4a.objects.StringUtils();
RDebugUtils.currentLine=43253766;
//BA.debugLineNum = 43253766;BA.debugLine="For i = 0 To Parameters.Length - 1 Step 2";
{
final int step6 = 2;
final int limit6 = (int) (_parameters.length-1);
_i = (int) (0) ;
for (;_i <= limit6 ;_i = _i + step6 ) {
RDebugUtils.currentLine=43253767;
//BA.debugLineNum = 43253767;BA.debugLine="If i > 0 Then sb.Append(\"&\")";
if (_i>0) {
_sb.Append("&");};
RDebugUtils.currentLine=43253768;
//BA.debugLineNum = 43253768;BA.debugLine="sb.Append(su.EncodeUrl(Parameters(i), \"UTF8\")).A";
_sb.Append(_su.EncodeUrl(_parameters[_i],"UTF8")).Append("=");
RDebugUtils.currentLine=43253769;
//BA.debugLineNum = 43253769;BA.debugLine="sb.Append(su.EncodeUrl(Parameters(i + 1), \"UTF8\"";
_sb.Append(_su.EncodeUrl(_parameters[(int) (_i+1)],"UTF8"));
}
};
RDebugUtils.currentLine=43253771;
//BA.debugLineNum = 43253771;BA.debugLine="Return sb.ToString";
if (true) return _sb.ToString();
RDebugUtils.currentLine=43253772;
//BA.debugLineNum = 43253772;BA.debugLine="End Sub";
return "";
}
public String _download2(keymon.lat.medicomed.httpjob __ref,String _link,String[] _parameters) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "download2", true))
{return ((String) Debug.delegate(ba, "download2", new Object[] {_link,_parameters}));}
RDebugUtils.currentLine=43188224;
//BA.debugLineNum = 43188224;BA.debugLine="Public Sub Download2(Link As String, Parameters()";
RDebugUtils.currentLine=43188225;
//BA.debugLineNum = 43188225;BA.debugLine="Try";
try {RDebugUtils.currentLine=43188226;
//BA.debugLineNum = 43188226;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=43188227;
//BA.debugLineNum = 43188227;BA.debugLine="req.InitializeGet(escapeLink(Link, Parameters))";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeGet(__ref._escapelink /*String*/ (null,_link,_parameters));
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=43188229;
//BA.debugLineNum = 43188229;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("943188229",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=43188230;
//BA.debugLineNum = 43188230;BA.debugLine="req.InitializeGet(escapeLink(InvalidURL, Paramet";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeGet(__ref._escapelink /*String*/ (null,__ref._invalidurl /*String*/ ,_parameters));
};
RDebugUtils.currentLine=43188232;
//BA.debugLineNum = 43188232;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=43188233;
//BA.debugLineNum = 43188233;BA.debugLine="End Sub";
return "";
}
public anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper _getbitmap(keymon.lat.medicomed.httpjob __ref) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "getbitmap", true))
{return ((anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper) Debug.delegate(ba, "getbitmap", null));}
anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper _b = null;
RDebugUtils.currentLine=43778048;
//BA.debugLineNum = 43778048;BA.debugLine="Public Sub GetBitmap As Bitmap";
RDebugUtils.currentLine=43778049;
//BA.debugLineNum = 43778049;BA.debugLine="Dim b As Bitmap";
_b = new anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper();
RDebugUtils.currentLine=43778050;
//BA.debugLineNum = 43778050;BA.debugLine="b = LoadBitmap(HttpUtils2Service.TempFolder, task";
_b = __c.LoadBitmap(_httputils2service._tempfolder /*String*/ ,__ref._taskid /*String*/ );
RDebugUtils.currentLine=43778051;
//BA.debugLineNum = 43778051;BA.debugLine="Return b";
if (true) return _b;
RDebugUtils.currentLine=43778052;
//BA.debugLineNum = 43778052;BA.debugLine="End Sub";
return null;
}
public anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper _getbitmapresize(keymon.lat.medicomed.httpjob __ref,int _width,int _height,boolean _keepaspectratio) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "getbitmapresize", true))
{return ((anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper) Debug.delegate(ba, "getbitmapresize", new Object[] {_width,_height,_keepaspectratio}));}
RDebugUtils.currentLine=43909120;
//BA.debugLineNum = 43909120;BA.debugLine="Public Sub GetBitmapResize(Width As Int, Height As";
RDebugUtils.currentLine=43909121;
//BA.debugLineNum = 43909121;BA.debugLine="Return LoadBitmapResize(HttpUtils2Service.TempFol";
if (true) return __c.LoadBitmapResize(_httputils2service._tempfolder /*String*/ ,__ref._taskid /*String*/ ,_width,_height,_keepaspectratio);
RDebugUtils.currentLine=43909122;
//BA.debugLineNum = 43909122;BA.debugLine="End Sub";
return null;
}
public anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper _getbitmapsample(keymon.lat.medicomed.httpjob __ref,int _width,int _height) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "getbitmapsample", true))
{return ((anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper) Debug.delegate(ba, "getbitmapsample", new Object[] {_width,_height}));}
RDebugUtils.currentLine=43843584;
//BA.debugLineNum = 43843584;BA.debugLine="Public Sub GetBitmapSample(Width As Int, Height As";
RDebugUtils.currentLine=43843585;
//BA.debugLineNum = 43843585;BA.debugLine="Return LoadBitmapSample(HttpUtils2Service.TempFol";
if (true) return __c.LoadBitmapSample(_httputils2service._tempfolder /*String*/ ,__ref._taskid /*String*/ ,_width,_height);
RDebugUtils.currentLine=43843586;
//BA.debugLineNum = 43843586;BA.debugLine="End Sub";
return null;
}
public String _getstring2(keymon.lat.medicomed.httpjob __ref,String _encoding) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "getstring2", true))
{return ((String) Debug.delegate(ba, "getstring2", new Object[] {_encoding}));}
anywheresoftware.b4a.objects.streams.File.TextReaderWrapper _tr = null;
String _res = "";
RDebugUtils.currentLine=43581440;
//BA.debugLineNum = 43581440;BA.debugLine="Public Sub GetString2(Encoding As String) As Strin";
RDebugUtils.currentLine=43581444;
//BA.debugLineNum = 43581444;BA.debugLine="Dim tr As TextReader";
_tr = new anywheresoftware.b4a.objects.streams.File.TextReaderWrapper();
RDebugUtils.currentLine=43581445;
//BA.debugLineNum = 43581445;BA.debugLine="tr.Initialize2(File.OpenInput(HttpUtils2Service.T";
_tr.Initialize2((java.io.InputStream)(__c.File.OpenInput(_httputils2service._tempfolder /*String*/ ,__ref._taskid /*String*/ ).getObject()),_encoding);
RDebugUtils.currentLine=43581446;
//BA.debugLineNum = 43581446;BA.debugLine="Dim res As String = tr.ReadAll";
_res = _tr.ReadAll();
RDebugUtils.currentLine=43581447;
//BA.debugLineNum = 43581447;BA.debugLine="tr.Close";
_tr.Close();
RDebugUtils.currentLine=43581448;
//BA.debugLineNum = 43581448;BA.debugLine="Return res";
if (true) return _res;
RDebugUtils.currentLine=43581450;
//BA.debugLineNum = 43581450;BA.debugLine="End Sub";
return "";
}
public String _head(keymon.lat.medicomed.httpjob __ref,String _link) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "head", true))
{return ((String) Debug.delegate(ba, "head", new Object[] {_link}));}
RDebugUtils.currentLine=42860544;
//BA.debugLineNum = 42860544;BA.debugLine="Public Sub Head(Link As String)";
RDebugUtils.currentLine=42860545;
//BA.debugLineNum = 42860545;BA.debugLine="Try";
try {RDebugUtils.currentLine=42860546;
//BA.debugLineNum = 42860546;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=42860547;
//BA.debugLineNum = 42860547;BA.debugLine="req.InitializeHead(Link)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeHead(_link);
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=42860549;
//BA.debugLineNum = 42860549;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("942860549",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=42860550;
//BA.debugLineNum = 42860550;BA.debugLine="req.InitializeHead(InvalidURL)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializeHead(__ref._invalidurl /*String*/ );
};
RDebugUtils.currentLine=42860552;
//BA.debugLineNum = 42860552;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=42860553;
//BA.debugLineNum = 42860553;BA.debugLine="End Sub";
return "";
}
public boolean _multipartstartsection(keymon.lat.medicomed.httpjob __ref,anywheresoftware.b4a.objects.streams.File.OutputStreamWrapper _stream,boolean _empty) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "multipartstartsection", true))
{return ((Boolean) Debug.delegate(ba, "multipartstartsection", new Object[] {_stream,_empty}));}
RDebugUtils.currentLine=42991616;
//BA.debugLineNum = 42991616;BA.debugLine="Private Sub MultipartStartSection (stream As Outpu";
RDebugUtils.currentLine=42991617;
//BA.debugLineNum = 42991617;BA.debugLine="If empty = False Then";
if (_empty==__c.False) {
RDebugUtils.currentLine=42991618;
//BA.debugLineNum = 42991618;BA.debugLine="stream.WriteBytes(Array As Byte(13, 10), 0, 2)";
_stream.WriteBytes(new byte[]{(byte) (13),(byte) (10)},(int) (0),(int) (2));
}else {
RDebugUtils.currentLine=42991620;
//BA.debugLineNum = 42991620;BA.debugLine="empty = False";
_empty = __c.False;
};
RDebugUtils.currentLine=42991622;
//BA.debugLineNum = 42991622;BA.debugLine="Return empty";
if (true) return _empty;
RDebugUtils.currentLine=42991623;
//BA.debugLineNum = 42991623;BA.debugLine="End Sub";
return false;
}
public String _patchbytes(keymon.lat.medicomed.httpjob __ref,String _link,byte[] _data) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "patchbytes", true))
{return ((String) Debug.delegate(ba, "patchbytes", new Object[] {_link,_data}));}
RDebugUtils.currentLine=42795008;
//BA.debugLineNum = 42795008;BA.debugLine="Public Sub PatchBytes(Link As String, Data() As By";
RDebugUtils.currentLine=42795009;
//BA.debugLineNum = 42795009;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=42795017;
//BA.debugLineNum = 42795017;BA.debugLine="Try";
try {RDebugUtils.currentLine=42795018;
//BA.debugLineNum = 42795018;BA.debugLine="req.InitializePatch2(Link, Data)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializePatch2(_link,_data);
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=42795020;
//BA.debugLineNum = 42795020;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("942795020",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=42795021;
//BA.debugLineNum = 42795021;BA.debugLine="req.InitializePatch2(InvalidURL, Data)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializePatch2(__ref._invalidurl /*String*/ ,_data);
};
RDebugUtils.currentLine=42795025;
//BA.debugLineNum = 42795025;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=42795026;
//BA.debugLineNum = 42795026;BA.debugLine="End Sub";
return "";
}
public String _patchstring(keymon.lat.medicomed.httpjob __ref,String _link,String _text) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "patchstring", true))
{return ((String) Debug.delegate(ba, "patchstring", new Object[] {_link,_text}));}
RDebugUtils.currentLine=42729472;
//BA.debugLineNum = 42729472;BA.debugLine="Public Sub PatchString(Link As String, Text As Str";
RDebugUtils.currentLine=42729473;
//BA.debugLineNum = 42729473;BA.debugLine="PatchBytes(Link, Text.GetBytes(\"UTF8\"))";
__ref._patchbytes /*String*/ (null,_link,_text.getBytes("UTF8"));
RDebugUtils.currentLine=42729474;
//BA.debugLineNum = 42729474;BA.debugLine="End Sub";
return "";
}
public String _postfile(keymon.lat.medicomed.httpjob __ref,String _link,String _dir,String _filename) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "postfile", true))
{return ((String) Debug.delegate(ba, "postfile", new Object[] {_link,_dir,_filename}));}
int _length = 0;
anywheresoftware.b4a.objects.streams.File.InputStreamWrapper _in = null;
anywheresoftware.b4a.objects.streams.File.OutputStreamWrapper _out = null;
RDebugUtils.currentLine=43057152;
//BA.debugLineNum = 43057152;BA.debugLine="Public Sub PostFile(Link As String, Dir As String,";
RDebugUtils.currentLine=43057153;
//BA.debugLineNum = 43057153;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=43057158;
//BA.debugLineNum = 43057158;BA.debugLine="Dim length As Int";
_length = 0;
RDebugUtils.currentLine=43057159;
//BA.debugLineNum = 43057159;BA.debugLine="If Dir = File.DirAssets Then";
if ((_dir).equals(__c.File.getDirAssets())) {
RDebugUtils.currentLine=43057160;
//BA.debugLineNum = 43057160;BA.debugLine="Log(\"Cannot send files from the assets folder.\")";
__c.LogImpl("943057160","Cannot send files from the assets folder.",0);
RDebugUtils.currentLine=43057161;
//BA.debugLineNum = 43057161;BA.debugLine="Return";
if (true) return "";
};
RDebugUtils.currentLine=43057163;
//BA.debugLineNum = 43057163;BA.debugLine="length = File.Size(Dir, FileName)";
_length = (int) (__c.File.Size(_dir,_filename));
RDebugUtils.currentLine=43057164;
//BA.debugLineNum = 43057164;BA.debugLine="Dim In As InputStream";
_in = new anywheresoftware.b4a.objects.streams.File.InputStreamWrapper();
RDebugUtils.currentLine=43057165;
//BA.debugLineNum = 43057165;BA.debugLine="In = File.OpenInput(Dir, FileName)";
_in = __c.File.OpenInput(_dir,_filename);
RDebugUtils.currentLine=43057166;
//BA.debugLineNum = 43057166;BA.debugLine="If length < 1000000 Then '1mb";
if (_length<1000000) {
RDebugUtils.currentLine=43057169;
//BA.debugLineNum = 43057169;BA.debugLine="Dim out As OutputStream";
_out = new anywheresoftware.b4a.objects.streams.File.OutputStreamWrapper();
RDebugUtils.currentLine=43057170;
//BA.debugLineNum = 43057170;BA.debugLine="out.InitializeToBytesArray(length)";
_out.InitializeToBytesArray(_length);
RDebugUtils.currentLine=43057171;
//BA.debugLineNum = 43057171;BA.debugLine="File.Copy2(In, out)";
__c.File.Copy2((java.io.InputStream)(_in.getObject()),(java.io.OutputStream)(_out.getObject()));
RDebugUtils.currentLine=43057172;
//BA.debugLineNum = 43057172;BA.debugLine="PostBytes(Link, out.ToBytesArray)";
__ref._postbytes /*String*/ (null,_link,_out.ToBytesArray());
}else {
RDebugUtils.currentLine=43057174;
//BA.debugLineNum = 43057174;BA.debugLine="req.InitializePost(Link, In, length)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializePost(_link,(java.io.InputStream)(_in.getObject()),_length);
RDebugUtils.currentLine=43057175;
//BA.debugLineNum = 43057175;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\",";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
};
RDebugUtils.currentLine=43057178;
//BA.debugLineNum = 43057178;BA.debugLine="End Sub";
return "";
}
public String _postmultipart(keymon.lat.medicomed.httpjob __ref,String _link,anywheresoftware.b4a.objects.collections.Map _namevalues,anywheresoftware.b4a.objects.collections.List _files) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "postmultipart", true))
{return ((String) Debug.delegate(ba, "postmultipart", new Object[] {_link,_namevalues,_files}));}
String _boundary = "";
anywheresoftware.b4a.objects.streams.File.OutputStreamWrapper _stream = null;
byte[] _b = null;
String _eol = "";
boolean _empty = false;
String _key = "";
String _value = "";
String _s = "";
keymon.lat.medicomed.httpjob._multipartfiledata _fd = null;
anywheresoftware.b4a.objects.streams.File.InputStreamWrapper _in = null;
RDebugUtils.currentLine=42926080;
//BA.debugLineNum = 42926080;BA.debugLine="Public Sub PostMultipart(Link As String, NameValue";
RDebugUtils.currentLine=42926081;
//BA.debugLineNum = 42926081;BA.debugLine="Dim boundary As String = \"-----------------------";
_boundary = "---------------------------1461124740692";
RDebugUtils.currentLine=42926082;
//BA.debugLineNum = 42926082;BA.debugLine="Dim stream As OutputStream";
_stream = new anywheresoftware.b4a.objects.streams.File.OutputStreamWrapper();
RDebugUtils.currentLine=42926083;
//BA.debugLineNum = 42926083;BA.debugLine="stream.InitializeToBytesArray(0)";
_stream.InitializeToBytesArray((int) (0));
RDebugUtils.currentLine=42926084;
//BA.debugLineNum = 42926084;BA.debugLine="Dim b() As Byte";
_b = new byte[(int) (0)];
;
RDebugUtils.currentLine=42926085;
//BA.debugLineNum = 42926085;BA.debugLine="Dim eol As String = Chr(13) & Chr(10)";
_eol = BA.ObjectToString(__c.Chr((int) (13)))+BA.ObjectToString(__c.Chr((int) (10)));
RDebugUtils.currentLine=42926086;
//BA.debugLineNum = 42926086;BA.debugLine="Dim empty As Boolean = True";
_empty = __c.True;
RDebugUtils.currentLine=42926087;
//BA.debugLineNum = 42926087;BA.debugLine="If NameValues <> Null And NameValues.IsInitialize";
if (_namevalues!= null && _namevalues.IsInitialized()) {
RDebugUtils.currentLine=42926088;
//BA.debugLineNum = 42926088;BA.debugLine="For Each key As String In NameValues.Keys";
{
final anywheresoftware.b4a.BA.IterableList group8 = _namevalues.Keys();
final int groupLen8 = group8.getSize()
;int index8 = 0;
;
for (; index8 < groupLen8;index8++){
_key = BA.ObjectToString(group8.Get(index8));
RDebugUtils.currentLine=42926089;
//BA.debugLineNum = 42926089;BA.debugLine="Dim value As String = NameValues.Get(key)";
_value = BA.ObjectToString(_namevalues.Get((Object)(_key)));
RDebugUtils.currentLine=42926090;
//BA.debugLineNum = 42926090;BA.debugLine="empty = MultipartStartSection (stream, empty)";
_empty = __ref._multipartstartsection /*boolean*/ (null,_stream,_empty);
RDebugUtils.currentLine=42926091;
//BA.debugLineNum = 42926091;BA.debugLine="Dim s As String = _ $\"--${boundary} Content-Dis";
_s = ("--"+__c.SmartStringFormatter("",(Object)(_boundary))+"\n"+"Content-Disposition: form-data; name=\""+__c.SmartStringFormatter("",(Object)(_key))+"\"\n"+"\n"+""+__c.SmartStringFormatter("",(Object)(_value))+"");
RDebugUtils.currentLine=42926096;
//BA.debugLineNum = 42926096;BA.debugLine="b = s.Replace(CRLF, eol).GetBytes(\"UTF8\")";
_b = _s.replace(__c.CRLF,_eol).getBytes("UTF8");
RDebugUtils.currentLine=42926097;
//BA.debugLineNum = 42926097;BA.debugLine="stream.WriteBytes(b, 0, b.Length)";
_stream.WriteBytes(_b,(int) (0),_b.length);
}
};
};
RDebugUtils.currentLine=42926100;
//BA.debugLineNum = 42926100;BA.debugLine="If Files <> Null And Files.IsInitialized Then";
if (_files!= null && _files.IsInitialized()) {
RDebugUtils.currentLine=42926101;
//BA.debugLineNum = 42926101;BA.debugLine="For Each fd As MultipartFileData In Files";
{
final anywheresoftware.b4a.BA.IterableList group17 = _files;
final int groupLen17 = group17.getSize()
;int index17 = 0;
;
for (; index17 < groupLen17;index17++){
_fd = (keymon.lat.medicomed.httpjob._multipartfiledata)(group17.Get(index17));
RDebugUtils.currentLine=42926102;
//BA.debugLineNum = 42926102;BA.debugLine="empty = MultipartStartSection (stream, empty)";
_empty = __ref._multipartstartsection /*boolean*/ (null,_stream,_empty);
RDebugUtils.currentLine=42926103;
//BA.debugLineNum = 42926103;BA.debugLine="Dim s As String = _ $\"--${boundary} Content-Dis";
_s = ("--"+__c.SmartStringFormatter("",(Object)(_boundary))+"\n"+"Content-Disposition: form-data; name=\""+__c.SmartStringFormatter("",(Object)(_fd.KeyName /*String*/ ))+"\"; filename=\""+__c.SmartStringFormatter("",(Object)(_fd.FileName /*String*/ ))+"\"\n"+"Content-Type: "+__c.SmartStringFormatter("",(Object)(_fd.ContentType /*String*/ ))+"\n"+"\n"+"");
RDebugUtils.currentLine=42926109;
//BA.debugLineNum = 42926109;BA.debugLine="b = s.Replace(CRLF, eol).GetBytes(\"UTF8\")";
_b = _s.replace(__c.CRLF,_eol).getBytes("UTF8");
RDebugUtils.currentLine=42926110;
//BA.debugLineNum = 42926110;BA.debugLine="stream.WriteBytes(b, 0, b.Length)";
_stream.WriteBytes(_b,(int) (0),_b.length);
RDebugUtils.currentLine=42926111;
//BA.debugLineNum = 42926111;BA.debugLine="Dim in As InputStream = File.OpenInput(fd.Dir,";
_in = new anywheresoftware.b4a.objects.streams.File.InputStreamWrapper();
_in = __c.File.OpenInput(_fd.Dir /*String*/ ,_fd.FileName /*String*/ );
RDebugUtils.currentLine=42926112;
//BA.debugLineNum = 42926112;BA.debugLine="File.Copy2(in, stream)";
__c.File.Copy2((java.io.InputStream)(_in.getObject()),(java.io.OutputStream)(_stream.getObject()));
}
};
};
RDebugUtils.currentLine=42926115;
//BA.debugLineNum = 42926115;BA.debugLine="empty = MultipartStartSection (stream, empty)";
_empty = __ref._multipartstartsection /*boolean*/ (null,_stream,_empty);
RDebugUtils.currentLine=42926116;
//BA.debugLineNum = 42926116;BA.debugLine="s = _ $\"--${boundary}-- \"$";
_s = ("--"+__c.SmartStringFormatter("",(Object)(_boundary))+"--\n"+"");
RDebugUtils.currentLine=42926119;
//BA.debugLineNum = 42926119;BA.debugLine="b = s.Replace(CRLF, eol).GetBytes(\"UTF8\")";
_b = _s.replace(__c.CRLF,_eol).getBytes("UTF8");
RDebugUtils.currentLine=42926120;
//BA.debugLineNum = 42926120;BA.debugLine="stream.WriteBytes(b, 0, b.Length)";
_stream.WriteBytes(_b,(int) (0),_b.length);
RDebugUtils.currentLine=42926121;
//BA.debugLineNum = 42926121;BA.debugLine="PostBytes(Link, stream.ToBytesArray)";
__ref._postbytes /*String*/ (null,_link,_stream.ToBytesArray());
RDebugUtils.currentLine=42926122;
//BA.debugLineNum = 42926122;BA.debugLine="req.SetContentType(\"multipart/form-data; boundary";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .SetContentType("multipart/form-data; boundary="+_boundary);
RDebugUtils.currentLine=42926123;
//BA.debugLineNum = 42926123;BA.debugLine="req.SetContentEncoding(\"UTF8\")";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .SetContentEncoding("UTF8");
RDebugUtils.currentLine=42926124;
//BA.debugLineNum = 42926124;BA.debugLine="End Sub";
return "";
}
public String _poststring(keymon.lat.medicomed.httpjob __ref,String _link,String _text) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "poststring", true))
{return ((String) Debug.delegate(ba, "poststring", new Object[] {_link,_text}));}
RDebugUtils.currentLine=42467328;
//BA.debugLineNum = 42467328;BA.debugLine="Public Sub PostString(Link As String, Text As Stri";
RDebugUtils.currentLine=42467329;
//BA.debugLineNum = 42467329;BA.debugLine="PostBytes(Link, Text.GetBytes(\"UTF8\"))";
__ref._postbytes /*String*/ (null,_link,_text.getBytes("UTF8"));
RDebugUtils.currentLine=42467330;
//BA.debugLineNum = 42467330;BA.debugLine="End Sub";
return "";
}
public String _putbytes(keymon.lat.medicomed.httpjob __ref,String _link,byte[] _data) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "putbytes", true))
{return ((String) Debug.delegate(ba, "putbytes", new Object[] {_link,_data}));}
RDebugUtils.currentLine=42663936;
//BA.debugLineNum = 42663936;BA.debugLine="Public Sub PutBytes(Link As String, Data() As Byte";
RDebugUtils.currentLine=42663937;
//BA.debugLineNum = 42663937;BA.debugLine="Try";
try {RDebugUtils.currentLine=42663938;
//BA.debugLineNum = 42663938;BA.debugLine="Link = AddScheme(Link)";
_link = __ref._addscheme /*String*/ (null,_link);
RDebugUtils.currentLine=42663939;
//BA.debugLineNum = 42663939;BA.debugLine="req.InitializePut2(Link, Data)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializePut2(_link,_data);
}
catch (Exception e5) {
ba.setLastException(e5);RDebugUtils.currentLine=42663941;
//BA.debugLineNum = 42663941;BA.debugLine="Log($\"Invalid link: ${Link}\"$)";
__c.LogImpl("942663941",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0);
RDebugUtils.currentLine=42663942;
//BA.debugLineNum = 42663942;BA.debugLine="req.InitializePut2(InvalidURL, Data)";
__ref._req /*anywheresoftware.b4h.okhttp.OkHttpClientWrapper.OkHttpRequest*/ .InitializePut2(__ref._invalidurl /*String*/ ,_data);
};
RDebugUtils.currentLine=42663944;
//BA.debugLineNum = 42663944;BA.debugLine="CallSubDelayed2(HttpUtils2Service, \"SubmitJob\", M";
__c.CallSubDelayed2(ba,(Object)(_httputils2service.getObject()),"SubmitJob",this);
RDebugUtils.currentLine=42663945;
//BA.debugLineNum = 42663945;BA.debugLine="End Sub";
return "";
}
public String _putstring(keymon.lat.medicomed.httpjob __ref,String _link,String _text) throws Exception{
__ref = this;
RDebugUtils.currentModule="httpjob";
if (Debug.shouldDelegate(ba, "putstring", true))
{return ((String) Debug.delegate(ba, "putstring", new Object[] {_link,_text}));}
RDebugUtils.currentLine=42598400;
//BA.debugLineNum = 42598400;BA.debugLine="Public Sub PutString(Link As String, Text As Strin";
RDebugUtils.currentLine=42598401;
//BA.debugLineNum = 42598401;BA.debugLine="PutBytes(Link, Text.GetBytes(\"UTF8\"))";
__ref._putbytes /*String*/ (null,_link,_text.getBytes("UTF8"));
RDebugUtils.currentLine=42598402;
//BA.debugLineNum = 42598402;BA.debugLine="End Sub";
return "";
}
}