diff --git a/sdrbase/resources/webapi/doc/html2/index.html b/sdrbase/resources/webapi/doc/html2/index.html index 870afebe9..d1c41a364 100644 --- a/sdrbase/resources/webapi/doc/html2/index.html +++ b/sdrbase/resources/webapi/doc/html2/index.html @@ -3142,6 +3142,27 @@ margin-bottom: 20px; } }, "description" : "RTLSDR" +}; + defs.SDRDaemonDataSettings = { + "properties" : { + "nbFECBlocks" : { + "type" : "integer", + "description" : "Number of FEC blocks per frame" + }, + "dataAddress" : { + "type" : "string", + "description" : "Receiving USB data address" + }, + "dataPort" : { + "type" : "integer", + "description" : "Receiving USB data port" + }, + "txDelay" : { + "type" : "integer", + "description" : "Minimum delay in ms between consecutive USB blocks transmissions" + } + }, + "description" : "Data handling details for SDRDaemon" }; defs.SDRPlayReport = { "properties" : { @@ -4003,6 +4024,27 @@ margin-bottom: 20px; +
  • + daemonDataSettingsGet +
  • +
  • + daemonDataSettingsPatch +
  • +
  • + daemonDataSettingsPut +
  • +
  • + daemonDeviceReportGet +
  • +
  • + daemonDeviceSettingsGet +
  • +
  • + daemonDeviceSettingsPatch +
  • +
  • + daemonDeviceSettingsPut +
  • daemonInstanceLoggingGet
  • @@ -4012,9 +4054,6 @@ margin-bottom: 20px;
  • daemonInstanceSummary
  • -
  • - daemonReportGet -
  • daemonRunDelete
  • @@ -4024,15 +4063,6 @@ margin-bottom: 20px;
  • daemonRunPost
  • -
  • - daemonSettingsGet -
  • -
  • - daemonSettingsPatch -
  • -
  • - daemonSettingsPut -
  • devicesetChannelDelete @@ -4200,6 +4230,2774 @@ margin-bottom: 20px;

    Daemon

    +
    +
    +
    +

    daemonDataSettingsGet

    +

    +
    +
    +
    +

    +

    Get data handling details

    +

    +
    +
    /sdrdaemon/data/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X GET "http://localhost/sdrdaemon/data/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDataSettingsGetWithCompletionHandler: 
    +              ^(SDRDaemonDataSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDataSettingsGet(callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDataSettingsGetExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +
    +            try
    +            {
    +                SDRDaemonDataSettings result = apiInstance.daemonDataSettingsGet();
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDataSettingsGet: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +
    +try {
    +    $result = $api_instance->daemonDataSettingsGet();
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDataSettingsGet: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +
    +eval { 
    +    my $result = $api_instance->daemonDataSettingsGet();
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDataSettingsGet: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +
    +try: 
    +    api_response = api_instance.daemon_data_settings_get()
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDataSettingsGet: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + + + + +

    Responses

    +

    Status: 200 - On success returns current data handling details

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDataSettingsPatch

    +

    +
    +
    +
    +

    +

    Apply data handling details differentially (no force)

    +

    +
    +
    /sdrdaemon/data/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PATCH "http://localhost/sdrdaemon/data/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling detail to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling detail to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    SDRDaemonDataSettings *body = ; // Data handling detail to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDataSettingsPatchWith:body
    +              completionHandler: ^(SDRDaemonDataSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {SDRDaemonDataSettings} Data handling detail to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDataSettingsPatch(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDataSettingsPatchExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new SDRDaemonDataSettings(); // SDRDaemonDataSettings | Data handling detail to apply
    +
    +            try
    +            {
    +                SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPatch(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDataSettingsPatch: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // SDRDaemonDataSettings | Data handling detail to apply
    +
    +try {
    +    $result = $api_instance->daemonDataSettingsPatch($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDataSettingsPatch: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::SDRDaemonDataSettings->new(); # SDRDaemonDataSettings | Data handling detail to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDataSettingsPatch(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDataSettingsPatch: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # SDRDaemonDataSettings | Data handling detail to apply
    +
    +try: 
    +    api_response = api_instance.daemon_data_settings_patch(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDataSettingsPatch: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDataSettingsPut

    +

    +
    +
    +
    +

    +

    Apply data handling details unconditionally (force)

    +

    +
    +
    /sdrdaemon/data/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PUT "http://localhost/sdrdaemon/data/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling details to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling details to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    SDRDaemonDataSettings *body = ; // Data handling details to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDataSettingsPutWith:body
    +              completionHandler: ^(SDRDaemonDataSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {SDRDaemonDataSettings} Data handling details to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDataSettingsPut(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDataSettingsPutExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new SDRDaemonDataSettings(); // SDRDaemonDataSettings | Data handling details to apply
    +
    +            try
    +            {
    +                SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPut(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDataSettingsPut: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // SDRDaemonDataSettings | Data handling details to apply
    +
    +try {
    +    $result = $api_instance->daemonDataSettingsPut($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDataSettingsPut: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::SDRDaemonDataSettings->new(); # SDRDaemonDataSettings | Data handling details to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDataSettingsPut(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDataSettingsPut: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # SDRDaemonDataSettings | Data handling details to apply
    +
    +try: 
    +    api_response = api_instance.daemon_data_settings_put(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDataSettingsPut: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceReportGet

    +

    +
    +
    +
    +

    +

    get the device report

    +

    +
    +
    /sdrdaemon/device/report
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X GET "http://localhost/sdrdaemon/device/report"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceReport result = apiInstance.daemonDeviceReportGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceReportGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceReport result = apiInstance.daemonDeviceReportGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceReportGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceReportGetWithCompletionHandler: 
    +              ^(DeviceReport output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceReportGet(callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceReportGetExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +
    +            try
    +            {
    +                DeviceReport result = apiInstance.daemonDeviceReportGet();
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceReportGet: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +
    +try {
    +    $result = $api_instance->daemonDeviceReportGet();
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceReportGet: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceReportGet();
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceReportGet: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +
    +try: 
    +    api_response = api_instance.daemon_device_report_get()
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceReportGet: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + + + + +

    Responses

    +

    Status: 200 - On success return device report

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 400 - Invalid device set

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceSettingsGet

    +

    +
    +
    +
    +

    +

    Get device settings

    +

    +
    +
    /sdrdaemon/device/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X GET "http://localhost/sdrdaemon/device/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceSettingsGetWithCompletionHandler: 
    +              ^(DeviceSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceSettingsGet(callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceSettingsGetExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +
    +            try
    +            {
    +                DeviceSettings result = apiInstance.daemonDeviceSettingsGet();
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceSettingsGet: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +
    +try {
    +    $result = $api_instance->daemonDeviceSettingsGet();
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceSettingsGet: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceSettingsGet();
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceSettingsGet: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +
    +try: 
    +    api_response = api_instance.daemon_device_settings_get()
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceSettingsGet: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + + + + +

    Responses

    +

    Status: 200 - On success returns current settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Invalid device set index or device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceSettingsPatch

    +

    +
    +
    +
    +

    +

    Apply settings differentially (no force)

    +

    +
    +
    /sdrdaemon/device/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PATCH "http://localhost/sdrdaemon/device/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    DeviceSettings *body = ; // Device settings to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceSettingsPatchWith:body
    +              completionHandler: ^(DeviceSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {DeviceSettings} Device settings to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceSettingsPatch(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceSettingsPatchExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    +
    +            try
    +            {
    +                DeviceSettings result = apiInstance.daemonDeviceSettingsPatch(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceSettingsPatch: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // DeviceSettings | Device settings to apply
    +
    +try {
    +    $result = $api_instance->daemonDeviceSettingsPatch($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceSettingsPatch: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceSettingsPatch(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceSettingsPatch: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # DeviceSettings | Device settings to apply
    +
    +try: 
    +    api_response = api_instance.daemon_device_settings_patch(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceSettingsPatch: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Invalid device set index or device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceSettingsPut

    +

    +
    +
    +
    +

    +

    Apply all settings unconditionally (force)

    +

    +
    +
    /sdrdaemon/device/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PUT "http://localhost/sdrdaemon/device/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    DeviceSettings *body = ; // Device settings to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceSettingsPutWith:body
    +              completionHandler: ^(DeviceSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {DeviceSettings} Device settings to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceSettingsPut(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceSettingsPutExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    +
    +            try
    +            {
    +                DeviceSettings result = apiInstance.daemonDeviceSettingsPut(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceSettingsPut: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // DeviceSettings | Device settings to apply
    +
    +try {
    +    $result = $api_instance->daemonDeviceSettingsPut($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceSettingsPut: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceSettingsPut(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceSettingsPut: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # DeviceSettings | Device settings to apply
    +
    +try: 
    +    api_response = api_instance.daemon_device_settings_put(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceSettingsPut: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Invalid device set index or device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    @@ -5300,427 +8098,6 @@ except ApiException as e:

    -
    -
    -
    -

    daemonReportGet

    -

    -
    -
    -
    -

    -

    get the device report

    -

    -
    -
    /sdrdaemon/report
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X GET "http://localhost/sdrdaemon/report"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceReport result = apiInstance.daemonReportGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonReportGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceReport result = apiInstance.daemonReportGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonReportGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonReportGetWithCompletionHandler: 
    -              ^(DeviceReport output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonReportGet(callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonReportGetExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -
    -            try
    -            {
    -                DeviceReport result = apiInstance.daemonReportGet();
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonReportGet: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -
    -try {
    -    $result = $api_instance->daemonReportGet();
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonReportGet: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -
    -eval { 
    -    my $result = $api_instance->daemonReportGet();
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonReportGet: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -
    -try: 
    -    api_response = api_instance.daemon_report_get()
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonReportGet: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - - - - -

    Responses

    -

    Status: 200 - On success return device report

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 400 - Invalid device set

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -
    @@ -6984,1244 +9361,6 @@ except ApiException as e:

    -
    -
    -
    -

    daemonSettingsGet

    -

    -
    -
    -
    -

    -

    Get device settings

    -

    -
    -
    /sdrdaemon/settings
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X GET "http://localhost/sdrdaemon/settings"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonSettingsGetWithCompletionHandler: 
    -              ^(DeviceSettings output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonSettingsGet(callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonSettingsGetExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -
    -            try
    -            {
    -                DeviceSettings result = apiInstance.daemonSettingsGet();
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonSettingsGet: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -
    -try {
    -    $result = $api_instance->daemonSettingsGet();
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonSettingsGet: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -
    -eval { 
    -    my $result = $api_instance->daemonSettingsGet();
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonSettingsGet: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -
    -try: 
    -    api_response = api_instance.daemon_settings_get()
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonSettingsGet: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - - - - -

    Responses

    -

    Status: 200 - On success returns current settings values

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Invalid device set index or device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -
    -
    -
    -
    -

    daemonSettingsPatch

    -

    -
    -
    -
    -

    -

    Apply settings differentially (no force)

    -

    -
    -
    /sdrdaemon/settings
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X PATCH "http://localhost/sdrdaemon/settings"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPatch(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPatch");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPatch(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPatch");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    DeviceSettings *body = ; // Device settings to apply
    -
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonSettingsPatchWith:body
    -              completionHandler: ^(DeviceSettings output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var body = ; // {DeviceSettings} Device settings to apply
    -
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonSettingsPatch(body, callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonSettingsPatchExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    -
    -            try
    -            {
    -                DeviceSettings result = apiInstance.daemonSettingsPatch(body);
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonSettingsPatch: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -$body = ; // DeviceSettings | Device settings to apply
    -
    -try {
    -    $result = $api_instance->daemonSettingsPatch($body);
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonSettingsPatch: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    -
    -eval { 
    -    my $result = $api_instance->daemonSettingsPatch(body => $body);
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonSettingsPatch: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -body =  # DeviceSettings | Device settings to apply
    -
    -try: 
    -    api_response = api_instance.daemon_settings_patch(body)
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonSettingsPatch: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - -
    Body parameters
    - - - - - - - - - -
    NameDescription
    body * - - - -
    -
    - - - -

    Responses

    -

    Status: 200 - On success returns new settings values

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Invalid device set index or device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -
    -
    -
    -
    -

    daemonSettingsPut

    -

    -
    -
    -
    -

    -

    Apply all settings unconditionally (force)

    -

    -
    -
    /sdrdaemon/settings
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X PUT "http://localhost/sdrdaemon/settings"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPut(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPut");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPut(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPut");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    DeviceSettings *body = ; // Device settings to apply
    -
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonSettingsPutWith:body
    -              completionHandler: ^(DeviceSettings output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var body = ; // {DeviceSettings} Device settings to apply
    -
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonSettingsPut(body, callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonSettingsPutExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    -
    -            try
    -            {
    -                DeviceSettings result = apiInstance.daemonSettingsPut(body);
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonSettingsPut: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -$body = ; // DeviceSettings | Device settings to apply
    -
    -try {
    -    $result = $api_instance->daemonSettingsPut($body);
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonSettingsPut: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    -
    -eval { 
    -    my $result = $api_instance->daemonSettingsPut(body => $body);
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonSettingsPut: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -body =  # DeviceSettings | Device settings to apply
    -
    -try: 
    -    api_response = api_instance.daemon_settings_put(body)
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonSettingsPut: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - -
    Body parameters
    - - - - - - - - - -
    NameDescription
    body * - - - -
    -
    - - - -

    Responses

    -

    Status: 200 - On success returns new settings values

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Invalid device set index or device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -

    DeviceSet

    @@ -27073,7 +28212,7 @@ except ApiException as e:
    - Generated 2018-08-19T11:32:09.545+02:00 + Generated 2018-08-23T00:21:49.115+02:00
    diff --git a/sdrbase/resources/webapi/doc/swagger/swagger.yaml b/sdrbase/resources/webapi/doc/swagger/swagger.yaml index 536e0e7f1..6fce1d3ae 100644 --- a/sdrbase/resources/webapi/doc/swagger/swagger.yaml +++ b/sdrbase/resources/webapi/doc/swagger/swagger.yaml @@ -1297,12 +1297,73 @@ paths: $ref: "#/responses/Response_500" "501": $ref: "#/responses/Response_501" + + /sdrdaemon/data/settings: + x-swagger-router-controller: deviceset + get: + description: Get data handling details + operationId: daemonDataSettingsGet + tags: + - Daemon + responses: + "200": + description: On success returns current data handling details + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + "500": + $ref: "#/responses/Response_500" + "501": + $ref: "#/responses/Response_501" + put: + description: Apply data handling details unconditionally (force) + operationId: daemonDataSettingsPut + tags: + - Daemon + parameters: + - name: body + in: body + description: Data handling details to apply + required: true + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + responses: + "200": + description: On success returns new settings values + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + "500": + $ref: "#/responses/Response_500" + "501": + $ref: "#/responses/Response_501" + patch: + description: Apply data handling details differentially (no force) + operationId: daemonDataSettingsPatch + tags: + - Daemon + parameters: + - name: body + in: body + description: Data handling detail to apply + required: true + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + responses: + "200": + description: On success returns new settings values + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + "500": + $ref: "#/responses/Response_500" + "501": + $ref: "#/responses/Response_501" + + - /sdrdaemon/settings: + /sdrdaemon/device/settings: x-swagger-router-controller: deviceset get: description: Get device settings - operationId: daemonSettingsGet + operationId: daemonDeviceSettingsGet tags: - Daemon responses: @@ -1320,7 +1381,7 @@ paths: $ref: "#/responses/Response_501" put: description: Apply all settings unconditionally (force) - operationId: daemonSettingsPut + operationId: daemonDeviceSettingsPut tags: - Daemon parameters: @@ -1345,7 +1406,7 @@ paths: $ref: "#/responses/Response_501" patch: description: Apply settings differentially (no force) - operationId: daemonSettingsPatch + operationId: daemonDeviceSettingsPatch tags: - Daemon parameters: @@ -1438,11 +1499,11 @@ paths: "501": $ref: "#/responses/Response_501" - /sdrdaemon/report: + /sdrdaemon/device/report: x-swagger-router-controller: deviceset get: description: get the device report - operationId: daemonReportGet + operationId: daemonDeviceReportGet tags: - Daemon responses: @@ -2183,6 +2244,22 @@ definitions: WFMModReport: $ref: "/doc/swagger/include/WFMMod.yaml#/WFMModReport" + SDRDaemonDataSettings: + description: "Data handling details for SDRDaemon" + properties: + nbFECBlocks: + description: "Number of FEC blocks per frame" + type: integer + dataAddress: + description: "Receiving USB data address" + type: string + dataPort: + description: "Receiving USB data port" + type: integer + txDelay: + description: "Minimum delay in ms between consecutive USB blocks transmissions" + type: integer + responses: Response_500: diff --git a/sdrdaemon/webapi/webapiadapterdaemon.cpp b/sdrdaemon/webapi/webapiadapterdaemon.cpp index a92641bc2..7d084edbd 100644 --- a/sdrdaemon/webapi/webapiadapterdaemon.cpp +++ b/sdrdaemon/webapi/webapiadapterdaemon.cpp @@ -23,6 +23,7 @@ #include "SWGDeviceSettings.h" #include "SWGDeviceState.h" #include "SWGDeviceReport.h" +#include "SWGSDRDaemonDataSettings.h" #include "SWGErrorResponse.h" #include "dsp/dsptypes.h" @@ -38,8 +39,9 @@ QString WebAPIAdapterDaemon::daemonInstanceSummaryURL = "/sdrdaemon"; QString WebAPIAdapterDaemon::daemonInstanceLoggingURL = "/sdrdaemon/logging"; -QString WebAPIAdapterDaemon::daemonSettingsURL = "/sdrdaemon/settings"; -QString WebAPIAdapterDaemon::daemonReportURL = "/sdrdaemon/report"; +QString WebAPIAdapterDaemon::daemonDataSettingsURL = "/sdrdaemon/data/settings"; +QString WebAPIAdapterDaemon::daemonDeviceSettingsURL = "/sdrdaemon/device/settings"; +QString WebAPIAdapterDaemon::daemonDeviceReportURL = "/sdrdaemon/device/report"; QString WebAPIAdapterDaemon::daemonRunURL = "/sdrdaemon/run"; WebAPIAdapterDaemon::WebAPIAdapterDaemon(SDRDaemonMain& sdrDaemonMain) : @@ -174,7 +176,27 @@ int WebAPIAdapterDaemon::daemonInstanceLoggingPut( return 200; } -int WebAPIAdapterDaemon::daemonSettingsGet( +int WebAPIAdapterDaemon::daemonDataSettingsGet( + SWGSDRangel::SWGSDRDaemonDataSettings& response __attribute__((unused)), + SWGSDRangel::SWGErrorResponse& error) +{ + error.init(); + *error.getMessage() = "Not implemented"; + return 501; +} + +int WebAPIAdapterDaemon::daemonDataSettingsPutPatch( + bool force __attribute__((unused)), + const QStringList& dataSettingsKeys __attribute__((unused)), + SWGSDRangel::SWGSDRDaemonDataSettings& response __attribute__((unused)), + SWGSDRangel::SWGErrorResponse& error) +{ + error.init(); + *error.getMessage() = "Not implemented"; + return 501; +} + +int WebAPIAdapterDaemon::daemonDeviceSettingsGet( SWGSDRangel::SWGDeviceSettings& response __attribute__((unused)), SWGSDRangel::SWGErrorResponse& error) { @@ -201,7 +223,7 @@ int WebAPIAdapterDaemon::daemonSettingsGet( } } -int WebAPIAdapterDaemon::daemonSettingsPutPatch( +int WebAPIAdapterDaemon::daemonDeviceSettingsPutPatch( bool force, const QStringList& deviceSettingsKeys, SWGSDRangel::SWGDeviceSettings& response, diff --git a/sdrdaemon/webapi/webapiadapterdaemon.h b/sdrdaemon/webapi/webapiadapterdaemon.h index 8cd5af801..6403900bf 100644 --- a/sdrdaemon/webapi/webapiadapterdaemon.h +++ b/sdrdaemon/webapi/webapiadapterdaemon.h @@ -33,6 +33,7 @@ namespace SWGSDRangel class SWGSuccessResponse; class SWGErrorResponse; class SWGLoggingInfo; + class SWGSDRDaemonDataSettings; } class SDRDaemonMain; @@ -56,11 +57,21 @@ public: SWGSDRangel::SWGLoggingInfo& response, SWGSDRangel::SWGErrorResponse& error); - int daemonSettingsGet( + int daemonDataSettingsGet( + SWGSDRangel::SWGSDRDaemonDataSettings& response, + SWGSDRangel::SWGErrorResponse& error); + + int daemonDataSettingsPutPatch( + bool force, + const QStringList& dataSettingsKeys, + SWGSDRangel::SWGSDRDaemonDataSettings& response, + SWGSDRangel::SWGErrorResponse& error); + + int daemonDeviceSettingsGet( SWGSDRangel::SWGDeviceSettings& response, SWGSDRangel::SWGErrorResponse& error); - int daemonSettingsPutPatch( + int daemonDeviceSettingsPutPatch( bool force, const QStringList& deviceSettingsKeys, SWGSDRangel::SWGDeviceSettings& response, @@ -84,8 +95,9 @@ public: static QString daemonInstanceSummaryURL; static QString daemonInstanceLoggingURL; - static QString daemonSettingsURL; - static QString daemonReportURL; + static QString daemonDataSettingsURL; + static QString daemonDeviceSettingsURL; + static QString daemonDeviceReportURL; static QString daemonRunURL; private: diff --git a/sdrdaemon/webapi/webapirequestmapper.cpp b/sdrdaemon/webapi/webapirequestmapper.cpp index c8b2cd807..a5a162208 100644 --- a/sdrdaemon/webapi/webapirequestmapper.cpp +++ b/sdrdaemon/webapi/webapirequestmapper.cpp @@ -26,6 +26,7 @@ #include "webapirequestmapper.h" #include "SWGDaemonSummaryResponse.h" #include "SWGInstanceDevicesResponse.h" +#include "SWGSDRDaemonDataSettings.h" #include "SWGDeviceSettings.h" #include "SWGDeviceState.h" #include "SWGDeviceReport.h" @@ -95,10 +96,12 @@ void WebAPIRequestMapper::service(qtwebapp::HttpRequest& request, qtwebapp::Http daemonInstanceSummaryService(request, response); } else if (path == WebAPIAdapterDaemon::daemonInstanceLoggingURL) { daemonInstanceLoggingService(request, response); - } else if (path == WebAPIAdapterDaemon::daemonSettingsURL) { - daemonSettingsService(request, response); - } else if (path == WebAPIAdapterDaemon::daemonReportURL) { - daemonReportService(request, response); + } else if (path == WebAPIAdapterDaemon::daemonDataSettingsURL) { + daemonDataSettingsService(request, response); + } else if (path == WebAPIAdapterDaemon::daemonDeviceSettingsURL) { + daemonDeviceSettingsService(request, response); + } else if (path == WebAPIAdapterDaemon::daemonDeviceReportURL) { + daemonDeviceReportService(request, response); } else if (path == WebAPIAdapterDaemon::daemonRunURL) { daemonRunService(request, response); } else { @@ -188,7 +191,75 @@ void WebAPIRequestMapper::daemonInstanceLoggingService(qtwebapp::HttpRequest& re } } -void WebAPIRequestMapper::daemonSettingsService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response) +void WebAPIRequestMapper::daemonDataSettingsService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response) +{ + SWGSDRangel::SWGErrorResponse errorResponse; + response.setHeader("Content-Type", "application/json"); + response.setHeader("Access-Control-Allow-Origin", "*"); + + if ((request.getMethod() == "PUT") || (request.getMethod() == "PATCH")) + { + QString jsonStr = request.getBody(); + QJsonObject jsonObject; + + if (parseJsonBody(jsonStr, jsonObject, response)) + { + SWGSDRangel::SWGSDRDaemonDataSettings normalResponse; + QStringList dataSettingsKeys; + + if (validateDataSettings(normalResponse, jsonObject, dataSettingsKeys)) + { + int status = m_adapter->daemonDataSettingsPutPatch( + (request.getMethod() == "PUT"), // force settings on PUT + dataSettingsKeys, + normalResponse, + errorResponse); + response.setStatus(status); + + if (status/100 == 2) { + response.write(normalResponse.asJson().toUtf8()); + } else { + response.write(errorResponse.asJson().toUtf8()); + } + } + else + { + response.setStatus(400,"Invalid JSON request"); + errorResponse.init(); + *errorResponse.getMessage() = "Invalid JSON request"; + response.write(errorResponse.asJson().toUtf8()); + } + } + else + { + response.setStatus(400,"Invalid JSON format"); + errorResponse.init(); + *errorResponse.getMessage() = "Invalid JSON format"; + response.write(errorResponse.asJson().toUtf8()); + } + } + else if (request.getMethod() == "GET") + { + SWGSDRangel::SWGSDRDaemonDataSettings normalResponse; + int status = m_adapter->daemonDataSettingsGet(normalResponse, errorResponse); + response.setStatus(status); + + if (status/100 == 2) { + response.write(normalResponse.asJson().toUtf8()); + } else { + response.write(errorResponse.asJson().toUtf8()); + } + } + else + { + response.setStatus(405,"Invalid HTTP method"); + errorResponse.init(); + *errorResponse.getMessage() = "Invalid HTTP method"; + response.write(errorResponse.asJson().toUtf8()); + } +} + +void WebAPIRequestMapper::daemonDeviceSettingsService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response) { SWGSDRangel::SWGErrorResponse errorResponse; response.setHeader("Content-Type", "application/json"); @@ -207,7 +278,7 @@ void WebAPIRequestMapper::daemonSettingsService(qtwebapp::HttpRequest& request, if (validateDeviceSettings(normalResponse, jsonObject, deviceSettingsKeys)) { - int status = m_adapter->daemonSettingsPutPatch( + int status = m_adapter->daemonDeviceSettingsPutPatch( (request.getMethod() == "PUT"), // force settings on PUT deviceSettingsKeys, normalResponse, @@ -240,7 +311,7 @@ void WebAPIRequestMapper::daemonSettingsService(qtwebapp::HttpRequest& request, { SWGSDRangel::SWGDeviceSettings normalResponse; resetDeviceSettings(normalResponse); - int status = m_adapter->daemonSettingsGet(normalResponse, errorResponse); + int status = m_adapter->daemonDeviceSettingsGet(normalResponse, errorResponse); response.setStatus(status); if (status/100 == 2) { @@ -258,7 +329,7 @@ void WebAPIRequestMapper::daemonSettingsService(qtwebapp::HttpRequest& request, } } -void WebAPIRequestMapper::daemonReportService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response) +void WebAPIRequestMapper::daemonDeviceReportService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response) { SWGSDRangel::SWGErrorResponse errorResponse; response.setHeader("Content-Type", "application/json"); @@ -340,6 +411,53 @@ void WebAPIRequestMapper::daemonRunService(qtwebapp::HttpRequest& request, qtweb } } + +bool WebAPIRequestMapper::validateDataSettings(SWGSDRangel::SWGSDRDaemonDataSettings& dataSettings, QJsonObject& jsonObject, QStringList& dataSettingsKeys) +{ + if (jsonObject.contains("nbFECBlocks")) + { + int nbFECBlocks = jsonObject["nbFECBlocks"].toInt(); + + if (nbFECBlocks >=0 && nbFECBlocks < 127) { + dataSettings.setNbFecBlocks(nbFECBlocks); + } else { + dataSettings.setNbFecBlocks(0); + } + } + + if (jsonObject.contains("dataPort")) + { + int dataPort = jsonObject["dataPort"].toInt(); + + if (dataPort > 1023 && dataPort < 65536) { + dataSettings.setDataPort(dataPort); + } else { + dataSettings.setDataPort(9090); + } + } + + if (jsonObject.contains("txDelay")) + { + int txDelay = jsonObject["txDelay"].toInt(); + + if (txDelay > 100) { + dataSettings.setTxDelay(txDelay); + } else { + dataSettings.setTxDelay(100); + } + } + + if (jsonObject.contains("dataAddress") && jsonObject["dataAddress"].isString()) { + dataSettings.setDataAddress(new QString(jsonObject["dataAddress"].toString())); + } else { + return false; + } + + dataSettingsKeys = jsonObject.keys(); + + return true; +} + // TODO: put in library in common with SDRangel. Can be static. bool WebAPIRequestMapper::validateDeviceSettings(SWGSDRangel::SWGDeviceSettings& deviceSettings, QJsonObject& jsonObject, QStringList& deviceSettingsKeys) { diff --git a/sdrdaemon/webapi/webapirequestmapper.h b/sdrdaemon/webapi/webapirequestmapper.h index 14cc361c8..927fa8fc9 100644 --- a/sdrdaemon/webapi/webapirequestmapper.h +++ b/sdrdaemon/webapi/webapirequestmapper.h @@ -30,6 +30,7 @@ namespace SWGSDRangel { + class SWGSDRDaemonDataSettings; class SWGDeviceSettings; class SWGDeviceReport; } @@ -53,10 +54,12 @@ private: void daemonInstanceSummaryService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); void daemonInstanceLoggingService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); - void daemonSettingsService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); + void daemonDataSettingsService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); + void daemonDeviceSettingsService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); void daemonRunService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); - void daemonReportService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); + void daemonDeviceReportService(qtwebapp::HttpRequest& request, qtwebapp::HttpResponse& response); + bool validateDataSettings(SWGSDRangel::SWGSDRDaemonDataSettings& dataSettings, QJsonObject& jsonObject, QStringList& dataSettingsKeys); bool validateDeviceSettings(SWGSDRangel::SWGDeviceSettings& deviceSettings, QJsonObject& jsonObject, QStringList& deviceSettingsKeys); void appendSettingsSubKeys( diff --git a/swagger/sdrangel/api/swagger/swagger.yaml b/swagger/sdrangel/api/swagger/swagger.yaml index 2d51dbbe4..c6b1d8920 100644 --- a/swagger/sdrangel/api/swagger/swagger.yaml +++ b/swagger/sdrangel/api/swagger/swagger.yaml @@ -1297,12 +1297,73 @@ paths: $ref: "#/responses/Response_500" "501": $ref: "#/responses/Response_501" + + /sdrdaemon/data/settings: + x-swagger-router-controller: deviceset + get: + description: Get data handling details + operationId: daemonDataSettingsGet + tags: + - Daemon + responses: + "200": + description: On success returns current data handling details + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + "500": + $ref: "#/responses/Response_500" + "501": + $ref: "#/responses/Response_501" + put: + description: Apply data handling details unconditionally (force) + operationId: daemonDataSettingsPut + tags: + - Daemon + parameters: + - name: body + in: body + description: Data handling details to apply + required: true + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + responses: + "200": + description: On success returns new settings values + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + "500": + $ref: "#/responses/Response_500" + "501": + $ref: "#/responses/Response_501" + patch: + description: Apply data handling details differentially (no force) + operationId: daemonDataSettingsPatch + tags: + - Daemon + parameters: + - name: body + in: body + description: Data handling detail to apply + required: true + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + responses: + "200": + description: On success returns new settings values + schema: + $ref: "#/definitions/SDRDaemonDataSettings" + "500": + $ref: "#/responses/Response_500" + "501": + $ref: "#/responses/Response_501" + + - /sdrdaemon/settings: + /sdrdaemon/device/settings: x-swagger-router-controller: deviceset get: description: Get device settings - operationId: daemonSettingsGet + operationId: daemonDeviceSettingsGet tags: - Daemon responses: @@ -1320,7 +1381,7 @@ paths: $ref: "#/responses/Response_501" put: description: Apply all settings unconditionally (force) - operationId: daemonSettingsPut + operationId: daemonDeviceSettingsPut tags: - Daemon parameters: @@ -1345,7 +1406,7 @@ paths: $ref: "#/responses/Response_501" patch: description: Apply settings differentially (no force) - operationId: daemonSettingsPatch + operationId: daemonDeviceSettingsPatch tags: - Daemon parameters: @@ -1438,11 +1499,11 @@ paths: "501": $ref: "#/responses/Response_501" - /sdrdaemon/report: + /sdrdaemon/device/report: x-swagger-router-controller: deviceset get: description: get the device report - operationId: daemonReportGet + operationId: daemonDeviceReportGet tags: - Daemon responses: @@ -2183,6 +2244,22 @@ definitions: WFMModReport: $ref: "http://localhost:8081/api/swagger/include/WFMMod.yaml#/WFMModReport" + SDRDaemonDataSettings: + description: "Data handling details for SDRDaemon" + properties: + nbFECBlocks: + description: "Number of FEC blocks per frame" + type: integer + dataAddress: + description: "Receiving USB data address" + type: string + dataPort: + description: "Receiving USB data port" + type: integer + txDelay: + description: "Minimum delay in ms between consecutive USB blocks transmissions" + type: integer + responses: Response_500: diff --git a/swagger/sdrangel/code/html2/index.html b/swagger/sdrangel/code/html2/index.html index 870afebe9..d1c41a364 100644 --- a/swagger/sdrangel/code/html2/index.html +++ b/swagger/sdrangel/code/html2/index.html @@ -3142,6 +3142,27 @@ margin-bottom: 20px; } }, "description" : "RTLSDR" +}; + defs.SDRDaemonDataSettings = { + "properties" : { + "nbFECBlocks" : { + "type" : "integer", + "description" : "Number of FEC blocks per frame" + }, + "dataAddress" : { + "type" : "string", + "description" : "Receiving USB data address" + }, + "dataPort" : { + "type" : "integer", + "description" : "Receiving USB data port" + }, + "txDelay" : { + "type" : "integer", + "description" : "Minimum delay in ms between consecutive USB blocks transmissions" + } + }, + "description" : "Data handling details for SDRDaemon" }; defs.SDRPlayReport = { "properties" : { @@ -4003,6 +4024,27 @@ margin-bottom: 20px;
  • +
  • + daemonDataSettingsGet +
  • +
  • + daemonDataSettingsPatch +
  • +
  • + daemonDataSettingsPut +
  • +
  • + daemonDeviceReportGet +
  • +
  • + daemonDeviceSettingsGet +
  • +
  • + daemonDeviceSettingsPatch +
  • +
  • + daemonDeviceSettingsPut +
  • daemonInstanceLoggingGet
  • @@ -4012,9 +4054,6 @@ margin-bottom: 20px;
  • daemonInstanceSummary
  • -
  • - daemonReportGet -
  • daemonRunDelete
  • @@ -4024,15 +4063,6 @@ margin-bottom: 20px;
  • daemonRunPost
  • -
  • - daemonSettingsGet -
  • -
  • - daemonSettingsPatch -
  • -
  • - daemonSettingsPut -
  • devicesetChannelDelete @@ -4200,6 +4230,2774 @@ margin-bottom: 20px;

    Daemon

    +
    +
    +
    +

    daemonDataSettingsGet

    +

    +
    +
    +
    +

    +

    Get data handling details

    +

    +
    +
    /sdrdaemon/data/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X GET "http://localhost/sdrdaemon/data/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDataSettingsGetWithCompletionHandler: 
    +              ^(SDRDaemonDataSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDataSettingsGet(callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDataSettingsGetExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +
    +            try
    +            {
    +                SDRDaemonDataSettings result = apiInstance.daemonDataSettingsGet();
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDataSettingsGet: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +
    +try {
    +    $result = $api_instance->daemonDataSettingsGet();
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDataSettingsGet: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +
    +eval { 
    +    my $result = $api_instance->daemonDataSettingsGet();
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDataSettingsGet: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +
    +try: 
    +    api_response = api_instance.daemon_data_settings_get()
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDataSettingsGet: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + + + + +

    Responses

    +

    Status: 200 - On success returns current data handling details

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDataSettingsPatch

    +

    +
    +
    +
    +

    +

    Apply data handling details differentially (no force)

    +

    +
    +
    /sdrdaemon/data/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PATCH "http://localhost/sdrdaemon/data/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling detail to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling detail to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    SDRDaemonDataSettings *body = ; // Data handling detail to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDataSettingsPatchWith:body
    +              completionHandler: ^(SDRDaemonDataSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {SDRDaemonDataSettings} Data handling detail to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDataSettingsPatch(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDataSettingsPatchExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new SDRDaemonDataSettings(); // SDRDaemonDataSettings | Data handling detail to apply
    +
    +            try
    +            {
    +                SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPatch(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDataSettingsPatch: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // SDRDaemonDataSettings | Data handling detail to apply
    +
    +try {
    +    $result = $api_instance->daemonDataSettingsPatch($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDataSettingsPatch: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::SDRDaemonDataSettings->new(); # SDRDaemonDataSettings | Data handling detail to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDataSettingsPatch(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDataSettingsPatch: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # SDRDaemonDataSettings | Data handling detail to apply
    +
    +try: 
    +    api_response = api_instance.daemon_data_settings_patch(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDataSettingsPatch: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDataSettingsPut

    +

    +
    +
    +
    +

    +

    Apply data handling details unconditionally (force)

    +

    +
    +
    /sdrdaemon/data/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PUT "http://localhost/sdrdaemon/data/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling details to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        SDRDaemonDataSettings body = ; // SDRDaemonDataSettings | Data handling details to apply
    +        try {
    +            SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDataSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    SDRDaemonDataSettings *body = ; // Data handling details to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDataSettingsPutWith:body
    +              completionHandler: ^(SDRDaemonDataSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {SDRDaemonDataSettings} Data handling details to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDataSettingsPut(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDataSettingsPutExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new SDRDaemonDataSettings(); // SDRDaemonDataSettings | Data handling details to apply
    +
    +            try
    +            {
    +                SDRDaemonDataSettings result = apiInstance.daemonDataSettingsPut(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDataSettingsPut: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // SDRDaemonDataSettings | Data handling details to apply
    +
    +try {
    +    $result = $api_instance->daemonDataSettingsPut($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDataSettingsPut: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::SDRDaemonDataSettings->new(); # SDRDaemonDataSettings | Data handling details to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDataSettingsPut(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDataSettingsPut: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # SDRDaemonDataSettings | Data handling details to apply
    +
    +try: 
    +    api_response = api_instance.daemon_data_settings_put(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDataSettingsPut: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceReportGet

    +

    +
    +
    +
    +

    +

    get the device report

    +

    +
    +
    /sdrdaemon/device/report
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X GET "http://localhost/sdrdaemon/device/report"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceReport result = apiInstance.daemonDeviceReportGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceReportGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceReport result = apiInstance.daemonDeviceReportGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceReportGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceReportGetWithCompletionHandler: 
    +              ^(DeviceReport output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceReportGet(callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceReportGetExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +
    +            try
    +            {
    +                DeviceReport result = apiInstance.daemonDeviceReportGet();
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceReportGet: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +
    +try {
    +    $result = $api_instance->daemonDeviceReportGet();
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceReportGet: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceReportGet();
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceReportGet: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +
    +try: 
    +    api_response = api_instance.daemon_device_report_get()
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceReportGet: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + + + + +

    Responses

    +

    Status: 200 - On success return device report

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 400 - Invalid device set

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceSettingsGet

    +

    +
    +
    +
    +

    +

    Get device settings

    +

    +
    +
    /sdrdaemon/device/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X GET "http://localhost/sdrdaemon/device/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsGet();
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsGet");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceSettingsGetWithCompletionHandler: 
    +              ^(DeviceSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceSettingsGet(callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceSettingsGetExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +
    +            try
    +            {
    +                DeviceSettings result = apiInstance.daemonDeviceSettingsGet();
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceSettingsGet: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +
    +try {
    +    $result = $api_instance->daemonDeviceSettingsGet();
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceSettingsGet: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceSettingsGet();
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceSettingsGet: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +
    +try: 
    +    api_response = api_instance.daemon_device_settings_get()
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceSettingsGet: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + + + + +

    Responses

    +

    Status: 200 - On success returns current settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Invalid device set index or device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceSettingsPatch

    +

    +
    +
    +
    +

    +

    Apply settings differentially (no force)

    +

    +
    +
    /sdrdaemon/device/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PATCH "http://localhost/sdrdaemon/device/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPatch(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPatch");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    DeviceSettings *body = ; // Device settings to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceSettingsPatchWith:body
    +              completionHandler: ^(DeviceSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {DeviceSettings} Device settings to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceSettingsPatch(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceSettingsPatchExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    +
    +            try
    +            {
    +                DeviceSettings result = apiInstance.daemonDeviceSettingsPatch(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceSettingsPatch: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // DeviceSettings | Device settings to apply
    +
    +try {
    +    $result = $api_instance->daemonDeviceSettingsPatch($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceSettingsPatch: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceSettingsPatch(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceSettingsPatch: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # DeviceSettings | Device settings to apply
    +
    +try: 
    +    api_response = api_instance.daemon_device_settings_patch(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceSettingsPatch: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Invalid device set index or device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +

    daemonDeviceSettingsPut

    +

    +
    +
    +
    +

    +

    Apply all settings unconditionally (force)

    +

    +
    +
    /sdrdaemon/device/settings
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PUT "http://localhost/sdrdaemon/device/settings"
    +
    +
    +
    import SWGSDRangel.*;
    +import SWGSDRangel.auth.*;
    +import SWGSDRangel.model.*;
    +import SWGSDRangel.api.DaemonApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    import SWGSDRangel.api.DaemonApi;
    +
    +public class DaemonApiExample {
    +
    +    public static void main(String[] args) {
    +        DaemonApi apiInstance = new DaemonApi();
    +        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    +        try {
    +            DeviceSettings result = apiInstance.daemonDeviceSettingsPut(body);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling DaemonApi#daemonDeviceSettingsPut");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    DeviceSettings *body = ; // Device settings to apply
    +
    +DaemonApi *apiInstance = [[DaemonApi alloc] init];
    +
    +[apiInstance daemonDeviceSettingsPutWith:body
    +              completionHandler: ^(DeviceSettings output, NSError* error) {
    +                            if (output) {
    +                                NSLog(@"%@", output);
    +                            }
    +                            if (error) {
    +                                NSLog(@"Error: %@", error);
    +                            }
    +                        }];
    +
    +
    + +
    +
    var SdRangel = require('sd_rangel');
    +
    +var api = new SdRangel.DaemonApi()
    +
    +var body = ; // {DeviceSettings} Device settings to apply
    +
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.daemonDeviceSettingsPut(body, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using SWGSDRangel.Api;
    +using SWGSDRangel.Client;
    +using SWGSDRangel.Model;
    +
    +namespace Example
    +{
    +    public class daemonDeviceSettingsPutExample
    +    {
    +        public void main()
    +        {
    +            
    +            var apiInstance = new DaemonApi();
    +            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    +
    +            try
    +            {
    +                DeviceSettings result = apiInstance.daemonDeviceSettingsPut(body);
    +                Debug.WriteLine(result);
    +            }
    +            catch (Exception e)
    +            {
    +                Debug.Print("Exception when calling DaemonApi.daemonDeviceSettingsPut: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +$api_instance = new Swagger\Client\Api\DaemonApi();
    +$body = ; // DeviceSettings | Device settings to apply
    +
    +try {
    +    $result = $api_instance->daemonDeviceSettingsPut($body);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling DaemonApi->daemonDeviceSettingsPut: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use SWGSDRangel::Configuration;
    +use SWGSDRangel::DaemonApi;
    +
    +my $api_instance = SWGSDRangel::DaemonApi->new();
    +my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    +
    +eval { 
    +    my $result = $api_instance->daemonDeviceSettingsPut(body => $body);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling DaemonApi->daemonDeviceSettingsPut: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import swagger_sdrangel
    +from swagger_sdrangel.rest import ApiException
    +from pprint import pprint
    +
    +# create an instance of the API class
    +api_instance = swagger_sdrangel.DaemonApi()
    +body =  # DeviceSettings | Device settings to apply
    +
    +try: 
    +    api_response = api_instance.daemon_device_settings_put(body)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling DaemonApi->daemonDeviceSettingsPut: %s\n" % e)
    +
    +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    body * + + + +
    +
    + + + +

    Responses

    +

    Status: 200 - On success returns new settings values

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 404 - Invalid device set index or device not found

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 500 - Error

    + + + +
    +
    +
    + +
    + +
    +
    + +

    Status: 501 - Function not implemented

    + + + +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    @@ -5300,427 +8098,6 @@ except ApiException as e:

    -
    -
    -
    -

    daemonReportGet

    -

    -
    -
    -
    -

    -

    get the device report

    -

    -
    -
    /sdrdaemon/report
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X GET "http://localhost/sdrdaemon/report"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceReport result = apiInstance.daemonReportGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonReportGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceReport result = apiInstance.daemonReportGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonReportGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonReportGetWithCompletionHandler: 
    -              ^(DeviceReport output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonReportGet(callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonReportGetExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -
    -            try
    -            {
    -                DeviceReport result = apiInstance.daemonReportGet();
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonReportGet: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -
    -try {
    -    $result = $api_instance->daemonReportGet();
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonReportGet: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -
    -eval { 
    -    my $result = $api_instance->daemonReportGet();
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonReportGet: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -
    -try: 
    -    api_response = api_instance.daemon_report_get()
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonReportGet: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - - - - -

    Responses

    -

    Status: 200 - On success return device report

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 400 - Invalid device set

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -
    @@ -6984,1244 +9361,6 @@ except ApiException as e:

    -
    -
    -
    -

    daemonSettingsGet

    -

    -
    -
    -
    -

    -

    Get device settings

    -

    -
    -
    /sdrdaemon/settings
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X GET "http://localhost/sdrdaemon/settings"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsGet();
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsGet");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonSettingsGetWithCompletionHandler: 
    -              ^(DeviceSettings output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonSettingsGet(callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonSettingsGetExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -
    -            try
    -            {
    -                DeviceSettings result = apiInstance.daemonSettingsGet();
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonSettingsGet: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -
    -try {
    -    $result = $api_instance->daemonSettingsGet();
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonSettingsGet: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -
    -eval { 
    -    my $result = $api_instance->daemonSettingsGet();
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonSettingsGet: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -
    -try: 
    -    api_response = api_instance.daemon_settings_get()
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonSettingsGet: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - - - - -

    Responses

    -

    Status: 200 - On success returns current settings values

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Invalid device set index or device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -
    -
    -
    -
    -

    daemonSettingsPatch

    -

    -
    -
    -
    -

    -

    Apply settings differentially (no force)

    -

    -
    -
    /sdrdaemon/settings
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X PATCH "http://localhost/sdrdaemon/settings"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPatch(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPatch");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPatch(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPatch");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    DeviceSettings *body = ; // Device settings to apply
    -
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonSettingsPatchWith:body
    -              completionHandler: ^(DeviceSettings output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var body = ; // {DeviceSettings} Device settings to apply
    -
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonSettingsPatch(body, callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonSettingsPatchExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    -
    -            try
    -            {
    -                DeviceSettings result = apiInstance.daemonSettingsPatch(body);
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonSettingsPatch: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -$body = ; // DeviceSettings | Device settings to apply
    -
    -try {
    -    $result = $api_instance->daemonSettingsPatch($body);
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonSettingsPatch: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    -
    -eval { 
    -    my $result = $api_instance->daemonSettingsPatch(body => $body);
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonSettingsPatch: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -body =  # DeviceSettings | Device settings to apply
    -
    -try: 
    -    api_response = api_instance.daemon_settings_patch(body)
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonSettingsPatch: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - -
    Body parameters
    - - - - - - - - - -
    NameDescription
    body * - - - -
    -
    - - - -

    Responses

    -

    Status: 200 - On success returns new settings values

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Invalid device set index or device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -
    -
    -
    -
    -

    daemonSettingsPut

    -

    -
    -
    -
    -

    -

    Apply all settings unconditionally (force)

    -

    -
    -
    /sdrdaemon/settings
    -

    -

    Usage and SDK Samples

    -

    - - -
    -
    -
    curl -X PUT "http://localhost/sdrdaemon/settings"
    -
    -
    -
    import SWGSDRangel.*;
    -import SWGSDRangel.auth.*;
    -import SWGSDRangel.model.*;
    -import SWGSDRangel.api.DaemonApi;
    -
    -import java.io.File;
    -import java.util.*;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPut(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPut");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    import SWGSDRangel.api.DaemonApi;
    -
    -public class DaemonApiExample {
    -
    -    public static void main(String[] args) {
    -        DaemonApi apiInstance = new DaemonApi();
    -        DeviceSettings body = ; // DeviceSettings | Device settings to apply
    -        try {
    -            DeviceSettings result = apiInstance.daemonSettingsPut(body);
    -            System.out.println(result);
    -        } catch (ApiException e) {
    -            System.err.println("Exception when calling DaemonApi#daemonSettingsPut");
    -            e.printStackTrace();
    -        }
    -    }
    -}
    -
    - -
    -
    DeviceSettings *body = ; // Device settings to apply
    -
    -DaemonApi *apiInstance = [[DaemonApi alloc] init];
    -
    -[apiInstance daemonSettingsPutWith:body
    -              completionHandler: ^(DeviceSettings output, NSError* error) {
    -                            if (output) {
    -                                NSLog(@"%@", output);
    -                            }
    -                            if (error) {
    -                                NSLog(@"Error: %@", error);
    -                            }
    -                        }];
    -
    -
    - -
    -
    var SdRangel = require('sd_rangel');
    -
    -var api = new SdRangel.DaemonApi()
    -
    -var body = ; // {DeviceSettings} Device settings to apply
    -
    -
    -var callback = function(error, data, response) {
    -  if (error) {
    -    console.error(error);
    -  } else {
    -    console.log('API called successfully. Returned data: ' + data);
    -  }
    -};
    -api.daemonSettingsPut(body, callback);
    -
    -
    - - -
    -
    using System;
    -using System.Diagnostics;
    -using SWGSDRangel.Api;
    -using SWGSDRangel.Client;
    -using SWGSDRangel.Model;
    -
    -namespace Example
    -{
    -    public class daemonSettingsPutExample
    -    {
    -        public void main()
    -        {
    -            
    -            var apiInstance = new DaemonApi();
    -            var body = new DeviceSettings(); // DeviceSettings | Device settings to apply
    -
    -            try
    -            {
    -                DeviceSettings result = apiInstance.daemonSettingsPut(body);
    -                Debug.WriteLine(result);
    -            }
    -            catch (Exception e)
    -            {
    -                Debug.Print("Exception when calling DaemonApi.daemonSettingsPut: " + e.Message );
    -            }
    -        }
    -    }
    -}
    -
    -
    - -
    -
    <?php
    -require_once(__DIR__ . '/vendor/autoload.php');
    -
    -$api_instance = new Swagger\Client\Api\DaemonApi();
    -$body = ; // DeviceSettings | Device settings to apply
    -
    -try {
    -    $result = $api_instance->daemonSettingsPut($body);
    -    print_r($result);
    -} catch (Exception $e) {
    -    echo 'Exception when calling DaemonApi->daemonSettingsPut: ', $e->getMessage(), PHP_EOL;
    -}
    -?>
    -
    - -
    -
    use Data::Dumper;
    -use SWGSDRangel::Configuration;
    -use SWGSDRangel::DaemonApi;
    -
    -my $api_instance = SWGSDRangel::DaemonApi->new();
    -my $body = SWGSDRangel::Object::DeviceSettings->new(); # DeviceSettings | Device settings to apply
    -
    -eval { 
    -    my $result = $api_instance->daemonSettingsPut(body => $body);
    -    print Dumper($result);
    -};
    -if ($@) {
    -    warn "Exception when calling DaemonApi->daemonSettingsPut: $@\n";
    -}
    -
    - -
    -
    from __future__ import print_statement
    -import time
    -import swagger_sdrangel
    -from swagger_sdrangel.rest import ApiException
    -from pprint import pprint
    -
    -# create an instance of the API class
    -api_instance = swagger_sdrangel.DaemonApi()
    -body =  # DeviceSettings | Device settings to apply
    -
    -try: 
    -    api_response = api_instance.daemon_settings_put(body)
    -    pprint(api_response)
    -except ApiException as e:
    -    print("Exception when calling DaemonApi->daemonSettingsPut: %s\n" % e)
    -
    -
    - -

    Parameters

    - - - -
    Body parameters
    - - - - - - - - - -
    NameDescription
    body * - - - -
    -
    - - - -

    Responses

    -

    Status: 200 - On success returns new settings values

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 404 - Invalid device set index or device not found

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 500 - Error

    - - - -
    -
    -
    - -
    - -
    -
    - -

    Status: 501 - Function not implemented

    - - - -
    -
    -
    - -
    - -
    -
    - -
    -
    -

    DeviceSet

    @@ -27073,7 +28212,7 @@ except ApiException as e:
    - Generated 2018-08-19T11:32:09.545+02:00 + Generated 2018-08-23T00:21:49.115+02:00
    diff --git a/swagger/sdrangel/code/qt5/client/SWGDaemonApi.cpp b/swagger/sdrangel/code/qt5/client/SWGDaemonApi.cpp index 693082006..1a8a6f613 100644 --- a/swagger/sdrangel/code/qt5/client/SWGDaemonApi.cpp +++ b/swagger/sdrangel/code/qt5/client/SWGDaemonApi.cpp @@ -28,6 +28,382 @@ SWGDaemonApi::SWGDaemonApi(QString host, QString basePath) { this->basePath = basePath; } +void +SWGDaemonApi::daemonDataSettingsGet() { + QString fullPath; + fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/data/settings"); + + + + SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); + SWGHttpRequestInput input(fullPath, "GET"); + + + + + + foreach(QString key, this->defaultHeaders.keys()) { + input.headers.insert(key, this->defaultHeaders.value(key)); + } + + connect(worker, + &SWGHttpRequestWorker::on_execution_finished, + this, + &SWGDaemonApi::daemonDataSettingsGetCallback); + + worker->execute(&input); +} + +void +SWGDaemonApi::daemonDataSettingsGetCallback(SWGHttpRequestWorker * worker) { + QString msg; + QString error_str = worker->error_str; + QNetworkReply::NetworkError error_type = worker->error_type; + + if (worker->error_type == QNetworkReply::NoError) { + msg = QString("Success! %1 bytes").arg(worker->response.length()); + } + else { + msg = "Error: " + worker->error_str; + } + + + QString json(worker->response); + SWGSDRDaemonDataSettings* output = static_cast(create(json, QString("SWGSDRDaemonDataSettings"))); + worker->deleteLater(); + + if (worker->error_type == QNetworkReply::NoError) { + emit daemonDataSettingsGetSignal(output); + } else { + emit daemonDataSettingsGetSignalE(output, error_type, error_str); + emit daemonDataSettingsGetSignalEFull(worker, error_type, error_str); + } +} + +void +SWGDaemonApi::daemonDataSettingsPatch(SWGSDRDaemonDataSettings& body) { + QString fullPath; + fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/data/settings"); + + + + SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); + SWGHttpRequestInput input(fullPath, "PATCH"); + + + + QString output = body.asJson(); + input.request_body.append(output); + + + + foreach(QString key, this->defaultHeaders.keys()) { + input.headers.insert(key, this->defaultHeaders.value(key)); + } + + connect(worker, + &SWGHttpRequestWorker::on_execution_finished, + this, + &SWGDaemonApi::daemonDataSettingsPatchCallback); + + worker->execute(&input); +} + +void +SWGDaemonApi::daemonDataSettingsPatchCallback(SWGHttpRequestWorker * worker) { + QString msg; + QString error_str = worker->error_str; + QNetworkReply::NetworkError error_type = worker->error_type; + + if (worker->error_type == QNetworkReply::NoError) { + msg = QString("Success! %1 bytes").arg(worker->response.length()); + } + else { + msg = "Error: " + worker->error_str; + } + + + QString json(worker->response); + SWGSDRDaemonDataSettings* output = static_cast(create(json, QString("SWGSDRDaemonDataSettings"))); + worker->deleteLater(); + + if (worker->error_type == QNetworkReply::NoError) { + emit daemonDataSettingsPatchSignal(output); + } else { + emit daemonDataSettingsPatchSignalE(output, error_type, error_str); + emit daemonDataSettingsPatchSignalEFull(worker, error_type, error_str); + } +} + +void +SWGDaemonApi::daemonDataSettingsPut(SWGSDRDaemonDataSettings& body) { + QString fullPath; + fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/data/settings"); + + + + SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); + SWGHttpRequestInput input(fullPath, "PUT"); + + + + QString output = body.asJson(); + input.request_body.append(output); + + + + foreach(QString key, this->defaultHeaders.keys()) { + input.headers.insert(key, this->defaultHeaders.value(key)); + } + + connect(worker, + &SWGHttpRequestWorker::on_execution_finished, + this, + &SWGDaemonApi::daemonDataSettingsPutCallback); + + worker->execute(&input); +} + +void +SWGDaemonApi::daemonDataSettingsPutCallback(SWGHttpRequestWorker * worker) { + QString msg; + QString error_str = worker->error_str; + QNetworkReply::NetworkError error_type = worker->error_type; + + if (worker->error_type == QNetworkReply::NoError) { + msg = QString("Success! %1 bytes").arg(worker->response.length()); + } + else { + msg = "Error: " + worker->error_str; + } + + + QString json(worker->response); + SWGSDRDaemonDataSettings* output = static_cast(create(json, QString("SWGSDRDaemonDataSettings"))); + worker->deleteLater(); + + if (worker->error_type == QNetworkReply::NoError) { + emit daemonDataSettingsPutSignal(output); + } else { + emit daemonDataSettingsPutSignalE(output, error_type, error_str); + emit daemonDataSettingsPutSignalEFull(worker, error_type, error_str); + } +} + +void +SWGDaemonApi::daemonDeviceReportGet() { + QString fullPath; + fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/device/report"); + + + + SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); + SWGHttpRequestInput input(fullPath, "GET"); + + + + + + foreach(QString key, this->defaultHeaders.keys()) { + input.headers.insert(key, this->defaultHeaders.value(key)); + } + + connect(worker, + &SWGHttpRequestWorker::on_execution_finished, + this, + &SWGDaemonApi::daemonDeviceReportGetCallback); + + worker->execute(&input); +} + +void +SWGDaemonApi::daemonDeviceReportGetCallback(SWGHttpRequestWorker * worker) { + QString msg; + QString error_str = worker->error_str; + QNetworkReply::NetworkError error_type = worker->error_type; + + if (worker->error_type == QNetworkReply::NoError) { + msg = QString("Success! %1 bytes").arg(worker->response.length()); + } + else { + msg = "Error: " + worker->error_str; + } + + + QString json(worker->response); + SWGDeviceReport* output = static_cast(create(json, QString("SWGDeviceReport"))); + worker->deleteLater(); + + if (worker->error_type == QNetworkReply::NoError) { + emit daemonDeviceReportGetSignal(output); + } else { + emit daemonDeviceReportGetSignalE(output, error_type, error_str); + emit daemonDeviceReportGetSignalEFull(worker, error_type, error_str); + } +} + +void +SWGDaemonApi::daemonDeviceSettingsGet() { + QString fullPath; + fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/device/settings"); + + + + SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); + SWGHttpRequestInput input(fullPath, "GET"); + + + + + + foreach(QString key, this->defaultHeaders.keys()) { + input.headers.insert(key, this->defaultHeaders.value(key)); + } + + connect(worker, + &SWGHttpRequestWorker::on_execution_finished, + this, + &SWGDaemonApi::daemonDeviceSettingsGetCallback); + + worker->execute(&input); +} + +void +SWGDaemonApi::daemonDeviceSettingsGetCallback(SWGHttpRequestWorker * worker) { + QString msg; + QString error_str = worker->error_str; + QNetworkReply::NetworkError error_type = worker->error_type; + + if (worker->error_type == QNetworkReply::NoError) { + msg = QString("Success! %1 bytes").arg(worker->response.length()); + } + else { + msg = "Error: " + worker->error_str; + } + + + QString json(worker->response); + SWGDeviceSettings* output = static_cast(create(json, QString("SWGDeviceSettings"))); + worker->deleteLater(); + + if (worker->error_type == QNetworkReply::NoError) { + emit daemonDeviceSettingsGetSignal(output); + } else { + emit daemonDeviceSettingsGetSignalE(output, error_type, error_str); + emit daemonDeviceSettingsGetSignalEFull(worker, error_type, error_str); + } +} + +void +SWGDaemonApi::daemonDeviceSettingsPatch(SWGDeviceSettings& body) { + QString fullPath; + fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/device/settings"); + + + + SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); + SWGHttpRequestInput input(fullPath, "PATCH"); + + + + QString output = body.asJson(); + input.request_body.append(output); + + + + foreach(QString key, this->defaultHeaders.keys()) { + input.headers.insert(key, this->defaultHeaders.value(key)); + } + + connect(worker, + &SWGHttpRequestWorker::on_execution_finished, + this, + &SWGDaemonApi::daemonDeviceSettingsPatchCallback); + + worker->execute(&input); +} + +void +SWGDaemonApi::daemonDeviceSettingsPatchCallback(SWGHttpRequestWorker * worker) { + QString msg; + QString error_str = worker->error_str; + QNetworkReply::NetworkError error_type = worker->error_type; + + if (worker->error_type == QNetworkReply::NoError) { + msg = QString("Success! %1 bytes").arg(worker->response.length()); + } + else { + msg = "Error: " + worker->error_str; + } + + + QString json(worker->response); + SWGDeviceSettings* output = static_cast(create(json, QString("SWGDeviceSettings"))); + worker->deleteLater(); + + if (worker->error_type == QNetworkReply::NoError) { + emit daemonDeviceSettingsPatchSignal(output); + } else { + emit daemonDeviceSettingsPatchSignalE(output, error_type, error_str); + emit daemonDeviceSettingsPatchSignalEFull(worker, error_type, error_str); + } +} + +void +SWGDaemonApi::daemonDeviceSettingsPut(SWGDeviceSettings& body) { + QString fullPath; + fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/device/settings"); + + + + SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); + SWGHttpRequestInput input(fullPath, "PUT"); + + + + QString output = body.asJson(); + input.request_body.append(output); + + + + foreach(QString key, this->defaultHeaders.keys()) { + input.headers.insert(key, this->defaultHeaders.value(key)); + } + + connect(worker, + &SWGHttpRequestWorker::on_execution_finished, + this, + &SWGDaemonApi::daemonDeviceSettingsPutCallback); + + worker->execute(&input); +} + +void +SWGDaemonApi::daemonDeviceSettingsPutCallback(SWGHttpRequestWorker * worker) { + QString msg; + QString error_str = worker->error_str; + QNetworkReply::NetworkError error_type = worker->error_type; + + if (worker->error_type == QNetworkReply::NoError) { + msg = QString("Success! %1 bytes").arg(worker->response.length()); + } + else { + msg = "Error: " + worker->error_str; + } + + + QString json(worker->response); + SWGDeviceSettings* output = static_cast(create(json, QString("SWGDeviceSettings"))); + worker->deleteLater(); + + if (worker->error_type == QNetworkReply::NoError) { + emit daemonDeviceSettingsPutSignal(output); + } else { + emit daemonDeviceSettingsPutSignalE(output, error_type, error_str); + emit daemonDeviceSettingsPutSignalEFull(worker, error_type, error_str); + } +} + void SWGDaemonApi::daemonInstanceLoggingGet() { QString fullPath; @@ -187,58 +563,6 @@ SWGDaemonApi::daemonInstanceSummaryCallback(SWGHttpRequestWorker * worker) { } } -void -SWGDaemonApi::daemonReportGet() { - QString fullPath; - fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/report"); - - - - SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); - SWGHttpRequestInput input(fullPath, "GET"); - - - - - - foreach(QString key, this->defaultHeaders.keys()) { - input.headers.insert(key, this->defaultHeaders.value(key)); - } - - connect(worker, - &SWGHttpRequestWorker::on_execution_finished, - this, - &SWGDaemonApi::daemonReportGetCallback); - - worker->execute(&input); -} - -void -SWGDaemonApi::daemonReportGetCallback(SWGHttpRequestWorker * worker) { - QString msg; - QString error_str = worker->error_str; - QNetworkReply::NetworkError error_type = worker->error_type; - - if (worker->error_type == QNetworkReply::NoError) { - msg = QString("Success! %1 bytes").arg(worker->response.length()); - } - else { - msg = "Error: " + worker->error_str; - } - - - QString json(worker->response); - SWGDeviceReport* output = static_cast(create(json, QString("SWGDeviceReport"))); - worker->deleteLater(); - - if (worker->error_type == QNetworkReply::NoError) { - emit daemonReportGetSignal(output); - } else { - emit daemonReportGetSignalE(output, error_type, error_str); - emit daemonReportGetSignalEFull(worker, error_type, error_str); - } -} - void SWGDaemonApi::daemonRunDelete() { QString fullPath; @@ -395,167 +719,5 @@ SWGDaemonApi::daemonRunPostCallback(SWGHttpRequestWorker * worker) { } } -void -SWGDaemonApi::daemonSettingsGet() { - QString fullPath; - fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/settings"); - - - - SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); - SWGHttpRequestInput input(fullPath, "GET"); - - - - - - foreach(QString key, this->defaultHeaders.keys()) { - input.headers.insert(key, this->defaultHeaders.value(key)); - } - - connect(worker, - &SWGHttpRequestWorker::on_execution_finished, - this, - &SWGDaemonApi::daemonSettingsGetCallback); - - worker->execute(&input); -} - -void -SWGDaemonApi::daemonSettingsGetCallback(SWGHttpRequestWorker * worker) { - QString msg; - QString error_str = worker->error_str; - QNetworkReply::NetworkError error_type = worker->error_type; - - if (worker->error_type == QNetworkReply::NoError) { - msg = QString("Success! %1 bytes").arg(worker->response.length()); - } - else { - msg = "Error: " + worker->error_str; - } - - - QString json(worker->response); - SWGDeviceSettings* output = static_cast(create(json, QString("SWGDeviceSettings"))); - worker->deleteLater(); - - if (worker->error_type == QNetworkReply::NoError) { - emit daemonSettingsGetSignal(output); - } else { - emit daemonSettingsGetSignalE(output, error_type, error_str); - emit daemonSettingsGetSignalEFull(worker, error_type, error_str); - } -} - -void -SWGDaemonApi::daemonSettingsPatch(SWGDeviceSettings& body) { - QString fullPath; - fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/settings"); - - - - SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); - SWGHttpRequestInput input(fullPath, "PATCH"); - - - - QString output = body.asJson(); - input.request_body.append(output); - - - - foreach(QString key, this->defaultHeaders.keys()) { - input.headers.insert(key, this->defaultHeaders.value(key)); - } - - connect(worker, - &SWGHttpRequestWorker::on_execution_finished, - this, - &SWGDaemonApi::daemonSettingsPatchCallback); - - worker->execute(&input); -} - -void -SWGDaemonApi::daemonSettingsPatchCallback(SWGHttpRequestWorker * worker) { - QString msg; - QString error_str = worker->error_str; - QNetworkReply::NetworkError error_type = worker->error_type; - - if (worker->error_type == QNetworkReply::NoError) { - msg = QString("Success! %1 bytes").arg(worker->response.length()); - } - else { - msg = "Error: " + worker->error_str; - } - - - QString json(worker->response); - SWGDeviceSettings* output = static_cast(create(json, QString("SWGDeviceSettings"))); - worker->deleteLater(); - - if (worker->error_type == QNetworkReply::NoError) { - emit daemonSettingsPatchSignal(output); - } else { - emit daemonSettingsPatchSignalE(output, error_type, error_str); - emit daemonSettingsPatchSignalEFull(worker, error_type, error_str); - } -} - -void -SWGDaemonApi::daemonSettingsPut(SWGDeviceSettings& body) { - QString fullPath; - fullPath.append(this->host).append(this->basePath).append("/sdrdaemon/settings"); - - - - SWGHttpRequestWorker *worker = new SWGHttpRequestWorker(); - SWGHttpRequestInput input(fullPath, "PUT"); - - - - QString output = body.asJson(); - input.request_body.append(output); - - - - foreach(QString key, this->defaultHeaders.keys()) { - input.headers.insert(key, this->defaultHeaders.value(key)); - } - - connect(worker, - &SWGHttpRequestWorker::on_execution_finished, - this, - &SWGDaemonApi::daemonSettingsPutCallback); - - worker->execute(&input); -} - -void -SWGDaemonApi::daemonSettingsPutCallback(SWGHttpRequestWorker * worker) { - QString msg; - QString error_str = worker->error_str; - QNetworkReply::NetworkError error_type = worker->error_type; - - if (worker->error_type == QNetworkReply::NoError) { - msg = QString("Success! %1 bytes").arg(worker->response.length()); - } - else { - msg = "Error: " + worker->error_str; - } - - - QString json(worker->response); - SWGDeviceSettings* output = static_cast(create(json, QString("SWGDeviceSettings"))); - worker->deleteLater(); - - if (worker->error_type == QNetworkReply::NoError) { - emit daemonSettingsPutSignal(output); - } else { - emit daemonSettingsPutSignalE(output, error_type, error_str); - emit daemonSettingsPutSignalEFull(worker, error_type, error_str); - } -} - } diff --git a/swagger/sdrangel/code/qt5/client/SWGDaemonApi.h b/swagger/sdrangel/code/qt5/client/SWGDaemonApi.h index 86f4a3359..19cbba2e6 100644 --- a/swagger/sdrangel/code/qt5/client/SWGDaemonApi.h +++ b/swagger/sdrangel/code/qt5/client/SWGDaemonApi.h @@ -21,6 +21,7 @@ #include "SWGDeviceState.h" #include "SWGErrorResponse.h" #include "SWGLoggingInfo.h" +#include "SWGSDRDaemonDataSettings.h" #include @@ -38,62 +39,77 @@ public: QString basePath; QMap defaultHeaders; + void daemonDataSettingsGet(); + void daemonDataSettingsPatch(SWGSDRDaemonDataSettings& body); + void daemonDataSettingsPut(SWGSDRDaemonDataSettings& body); + void daemonDeviceReportGet(); + void daemonDeviceSettingsGet(); + void daemonDeviceSettingsPatch(SWGDeviceSettings& body); + void daemonDeviceSettingsPut(SWGDeviceSettings& body); void daemonInstanceLoggingGet(); void daemonInstanceLoggingPut(SWGLoggingInfo& body); void daemonInstanceSummary(); - void daemonReportGet(); void daemonRunDelete(); void daemonRunGet(); void daemonRunPost(); - void daemonSettingsGet(); - void daemonSettingsPatch(SWGDeviceSettings& body); - void daemonSettingsPut(SWGDeviceSettings& body); private: + void daemonDataSettingsGetCallback (SWGHttpRequestWorker * worker); + void daemonDataSettingsPatchCallback (SWGHttpRequestWorker * worker); + void daemonDataSettingsPutCallback (SWGHttpRequestWorker * worker); + void daemonDeviceReportGetCallback (SWGHttpRequestWorker * worker); + void daemonDeviceSettingsGetCallback (SWGHttpRequestWorker * worker); + void daemonDeviceSettingsPatchCallback (SWGHttpRequestWorker * worker); + void daemonDeviceSettingsPutCallback (SWGHttpRequestWorker * worker); void daemonInstanceLoggingGetCallback (SWGHttpRequestWorker * worker); void daemonInstanceLoggingPutCallback (SWGHttpRequestWorker * worker); void daemonInstanceSummaryCallback (SWGHttpRequestWorker * worker); - void daemonReportGetCallback (SWGHttpRequestWorker * worker); void daemonRunDeleteCallback (SWGHttpRequestWorker * worker); void daemonRunGetCallback (SWGHttpRequestWorker * worker); void daemonRunPostCallback (SWGHttpRequestWorker * worker); - void daemonSettingsGetCallback (SWGHttpRequestWorker * worker); - void daemonSettingsPatchCallback (SWGHttpRequestWorker * worker); - void daemonSettingsPutCallback (SWGHttpRequestWorker * worker); signals: + void daemonDataSettingsGetSignal(SWGSDRDaemonDataSettings* summary); + void daemonDataSettingsPatchSignal(SWGSDRDaemonDataSettings* summary); + void daemonDataSettingsPutSignal(SWGSDRDaemonDataSettings* summary); + void daemonDeviceReportGetSignal(SWGDeviceReport* summary); + void daemonDeviceSettingsGetSignal(SWGDeviceSettings* summary); + void daemonDeviceSettingsPatchSignal(SWGDeviceSettings* summary); + void daemonDeviceSettingsPutSignal(SWGDeviceSettings* summary); void daemonInstanceLoggingGetSignal(SWGLoggingInfo* summary); void daemonInstanceLoggingPutSignal(SWGLoggingInfo* summary); void daemonInstanceSummarySignal(SWGDaemonSummaryResponse* summary); - void daemonReportGetSignal(SWGDeviceReport* summary); void daemonRunDeleteSignal(SWGDeviceState* summary); void daemonRunGetSignal(SWGDeviceState* summary); void daemonRunPostSignal(SWGDeviceState* summary); - void daemonSettingsGetSignal(SWGDeviceSettings* summary); - void daemonSettingsPatchSignal(SWGDeviceSettings* summary); - void daemonSettingsPutSignal(SWGDeviceSettings* summary); + void daemonDataSettingsGetSignalE(SWGSDRDaemonDataSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDataSettingsPatchSignalE(SWGSDRDaemonDataSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDataSettingsPutSignalE(SWGSDRDaemonDataSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceReportGetSignalE(SWGDeviceReport* summary, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceSettingsGetSignalE(SWGDeviceSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceSettingsPatchSignalE(SWGDeviceSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceSettingsPutSignalE(SWGDeviceSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); void daemonInstanceLoggingGetSignalE(SWGLoggingInfo* summary, QNetworkReply::NetworkError error_type, QString& error_str); void daemonInstanceLoggingPutSignalE(SWGLoggingInfo* summary, QNetworkReply::NetworkError error_type, QString& error_str); void daemonInstanceSummarySignalE(SWGDaemonSummaryResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonReportGetSignalE(SWGDeviceReport* summary, QNetworkReply::NetworkError error_type, QString& error_str); void daemonRunDeleteSignalE(SWGDeviceState* summary, QNetworkReply::NetworkError error_type, QString& error_str); void daemonRunGetSignalE(SWGDeviceState* summary, QNetworkReply::NetworkError error_type, QString& error_str); void daemonRunPostSignalE(SWGDeviceState* summary, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonSettingsGetSignalE(SWGDeviceSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonSettingsPatchSignalE(SWGDeviceSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonSettingsPutSignalE(SWGDeviceSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDataSettingsGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDataSettingsPatchSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDataSettingsPutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceSettingsGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceSettingsPatchSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); + void daemonDeviceSettingsPutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); void daemonInstanceLoggingGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); void daemonInstanceLoggingPutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); void daemonInstanceSummarySignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); void daemonRunDeleteSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); void daemonRunGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); void daemonRunPostSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonSettingsGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonSettingsPatchSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); - void daemonSettingsPutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str); }; diff --git a/swagger/sdrangel/code/qt5/client/SWGModelFactory.h b/swagger/sdrangel/code/qt5/client/SWGModelFactory.h index 11a5c1580..915d4b0c9 100644 --- a/swagger/sdrangel/code/qt5/client/SWGModelFactory.h +++ b/swagger/sdrangel/code/qt5/client/SWGModelFactory.h @@ -89,6 +89,7 @@ #include "SWGRDSReport_altFrequencies.h" #include "SWGRtlSdrReport.h" #include "SWGRtlSdrSettings.h" +#include "SWGSDRDaemonDataSettings.h" #include "SWGSDRPlayReport.h" #include "SWGSDRPlaySettings.h" #include "SWGSDRdaemonSinkReport.h" @@ -340,6 +341,9 @@ namespace SWGSDRangel { if(QString("SWGRtlSdrSettings").compare(type) == 0) { return new SWGRtlSdrSettings(); } + if(QString("SWGSDRDaemonDataSettings").compare(type) == 0) { + return new SWGSDRDaemonDataSettings(); + } if(QString("SWGSDRPlayReport").compare(type) == 0) { return new SWGSDRPlayReport(); } diff --git a/swagger/sdrangel/code/qt5/client/SWGSDRDaemonDataSettings.cpp b/swagger/sdrangel/code/qt5/client/SWGSDRDaemonDataSettings.cpp new file mode 100644 index 000000000..1a8925524 --- /dev/null +++ b/swagger/sdrangel/code/qt5/client/SWGSDRDaemonDataSettings.cpp @@ -0,0 +1,171 @@ +/** + * SDRangel + * This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations and specifcities: * In SDRangel GUI the first Rx device set cannot be deleted. Conversely the server starts with no device sets and its number of device sets can be reduced to zero by as many calls as necessary to /sdrangel/deviceset with DELETE method. * Preset import and export from/to file is a server only feature. * Device set focus is a GUI only feature. * The following channels are not implemented (status 501 is returned): ATV and DATV demodulators, Channel Analyzer NG, LoRa demodulator * The device settings and report structures contains only the sub-structure corresponding to the device type. The DeviceSettings and DeviceReport structures documented here shows all of them but only one will be or should be present at a time * The channel settings and report structures contains only the sub-structure corresponding to the channel type. The ChannelSettings and ChannelReport structures documented here shows all of them but only one will be or should be present at a time --- + * + * OpenAPI spec version: 4.1.0 + * Contact: f4exb06@gmail.com + * + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen.git + * Do not edit the class manually. + */ + + +#include "SWGSDRDaemonDataSettings.h" + +#include "SWGHelpers.h" + +#include +#include +#include +#include + +namespace SWGSDRangel { + +SWGSDRDaemonDataSettings::SWGSDRDaemonDataSettings(QString* json) { + init(); + this->fromJson(*json); +} + +SWGSDRDaemonDataSettings::SWGSDRDaemonDataSettings() { + nb_fec_blocks = 0; + m_nb_fec_blocks_isSet = false; + data_address = nullptr; + m_data_address_isSet = false; + data_port = 0; + m_data_port_isSet = false; + tx_delay = 0; + m_tx_delay_isSet = false; +} + +SWGSDRDaemonDataSettings::~SWGSDRDaemonDataSettings() { + this->cleanup(); +} + +void +SWGSDRDaemonDataSettings::init() { + nb_fec_blocks = 0; + m_nb_fec_blocks_isSet = false; + data_address = new QString(""); + m_data_address_isSet = false; + data_port = 0; + m_data_port_isSet = false; + tx_delay = 0; + m_tx_delay_isSet = false; +} + +void +SWGSDRDaemonDataSettings::cleanup() { + + if(data_address != nullptr) { + delete data_address; + } + + +} + +SWGSDRDaemonDataSettings* +SWGSDRDaemonDataSettings::fromJson(QString &json) { + QByteArray array (json.toStdString().c_str()); + QJsonDocument doc = QJsonDocument::fromJson(array); + QJsonObject jsonObject = doc.object(); + this->fromJsonObject(jsonObject); + return this; +} + +void +SWGSDRDaemonDataSettings::fromJsonObject(QJsonObject &pJson) { + ::SWGSDRangel::setValue(&nb_fec_blocks, pJson["nbFECBlocks"], "qint32", ""); + + ::SWGSDRangel::setValue(&data_address, pJson["dataAddress"], "QString", "QString"); + + ::SWGSDRangel::setValue(&data_port, pJson["dataPort"], "qint32", ""); + + ::SWGSDRangel::setValue(&tx_delay, pJson["txDelay"], "qint32", ""); + +} + +QString +SWGSDRDaemonDataSettings::asJson () +{ + QJsonObject* obj = this->asJsonObject(); + + QJsonDocument doc(*obj); + QByteArray bytes = doc.toJson(); + delete obj; + return QString(bytes); +} + +QJsonObject* +SWGSDRDaemonDataSettings::asJsonObject() { + QJsonObject* obj = new QJsonObject(); + if(m_nb_fec_blocks_isSet){ + obj->insert("nbFECBlocks", QJsonValue(nb_fec_blocks)); + } + if(data_address != nullptr && *data_address != QString("")){ + toJsonValue(QString("dataAddress"), data_address, obj, QString("QString")); + } + if(m_data_port_isSet){ + obj->insert("dataPort", QJsonValue(data_port)); + } + if(m_tx_delay_isSet){ + obj->insert("txDelay", QJsonValue(tx_delay)); + } + + return obj; +} + +qint32 +SWGSDRDaemonDataSettings::getNbFecBlocks() { + return nb_fec_blocks; +} +void +SWGSDRDaemonDataSettings::setNbFecBlocks(qint32 nb_fec_blocks) { + this->nb_fec_blocks = nb_fec_blocks; + this->m_nb_fec_blocks_isSet = true; +} + +QString* +SWGSDRDaemonDataSettings::getDataAddress() { + return data_address; +} +void +SWGSDRDaemonDataSettings::setDataAddress(QString* data_address) { + this->data_address = data_address; + this->m_data_address_isSet = true; +} + +qint32 +SWGSDRDaemonDataSettings::getDataPort() { + return data_port; +} +void +SWGSDRDaemonDataSettings::setDataPort(qint32 data_port) { + this->data_port = data_port; + this->m_data_port_isSet = true; +} + +qint32 +SWGSDRDaemonDataSettings::getTxDelay() { + return tx_delay; +} +void +SWGSDRDaemonDataSettings::setTxDelay(qint32 tx_delay) { + this->tx_delay = tx_delay; + this->m_tx_delay_isSet = true; +} + + +bool +SWGSDRDaemonDataSettings::isSet(){ + bool isObjectUpdated = false; + do{ + if(m_nb_fec_blocks_isSet){ isObjectUpdated = true; break;} + if(data_address != nullptr && *data_address != QString("")){ isObjectUpdated = true; break;} + if(m_data_port_isSet){ isObjectUpdated = true; break;} + if(m_tx_delay_isSet){ isObjectUpdated = true; break;} + }while(false); + return isObjectUpdated; +} +} + diff --git a/swagger/sdrangel/code/qt5/client/SWGSDRDaemonDataSettings.h b/swagger/sdrangel/code/qt5/client/SWGSDRDaemonDataSettings.h new file mode 100644 index 000000000..a0edbaf28 --- /dev/null +++ b/swagger/sdrangel/code/qt5/client/SWGSDRDaemonDataSettings.h @@ -0,0 +1,77 @@ +/** + * SDRangel + * This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations and specifcities: * In SDRangel GUI the first Rx device set cannot be deleted. Conversely the server starts with no device sets and its number of device sets can be reduced to zero by as many calls as necessary to /sdrangel/deviceset with DELETE method. * Preset import and export from/to file is a server only feature. * Device set focus is a GUI only feature. * The following channels are not implemented (status 501 is returned): ATV and DATV demodulators, Channel Analyzer NG, LoRa demodulator * The device settings and report structures contains only the sub-structure corresponding to the device type. The DeviceSettings and DeviceReport structures documented here shows all of them but only one will be or should be present at a time * The channel settings and report structures contains only the sub-structure corresponding to the channel type. The ChannelSettings and ChannelReport structures documented here shows all of them but only one will be or should be present at a time --- + * + * OpenAPI spec version: 4.1.0 + * Contact: f4exb06@gmail.com + * + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen.git + * Do not edit the class manually. + */ + +/* + * SWGSDRDaemonDataSettings.h + * + * Data handling details for SDRDaemon + */ + +#ifndef SWGSDRDaemonDataSettings_H_ +#define SWGSDRDaemonDataSettings_H_ + +#include + + +#include + +#include "SWGObject.h" +#include "export.h" + +namespace SWGSDRangel { + +class SWG_API SWGSDRDaemonDataSettings: public SWGObject { +public: + SWGSDRDaemonDataSettings(); + SWGSDRDaemonDataSettings(QString* json); + virtual ~SWGSDRDaemonDataSettings(); + void init(); + void cleanup(); + + virtual QString asJson () override; + virtual QJsonObject* asJsonObject() override; + virtual void fromJsonObject(QJsonObject &json) override; + virtual SWGSDRDaemonDataSettings* fromJson(QString &jsonString) override; + + qint32 getNbFecBlocks(); + void setNbFecBlocks(qint32 nb_fec_blocks); + + QString* getDataAddress(); + void setDataAddress(QString* data_address); + + qint32 getDataPort(); + void setDataPort(qint32 data_port); + + qint32 getTxDelay(); + void setTxDelay(qint32 tx_delay); + + + virtual bool isSet() override; + +private: + qint32 nb_fec_blocks; + bool m_nb_fec_blocks_isSet; + + QString* data_address; + bool m_data_address_isSet; + + qint32 data_port; + bool m_data_port_isSet; + + qint32 tx_delay; + bool m_tx_delay_isSet; + +}; + +} + +#endif /* SWGSDRDaemonDataSettings_H_ */