From: Inkyun Kil Date: Fri, 29 Sep 2017 02:50:29 +0000 (+0900) Subject: Add guide document for DataControl of dotnet X-Git-Tag: MD/guides-dotnet~96^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F16%2F153616%2F4;p=sdk%2Fonline-doc.git Add guide document for DataControl of dotnet PS3: Reviewed Change-Id: I8e6ef116a45240dc6d4614ce204a0010f9c191e5 Signed-off-by: Inkyun Kil --- diff --git a/org.tizen.guides/html/dotnet/data_control_n.htm b/org.tizen.guides/html/dotnet/data_control_n.htm new file mode 100755 index 0000000..d22c7dc --- /dev/null +++ b/org.tizen.guides/html/dotnet/data_control_n.htm @@ -0,0 +1,592 @@ + + + + + + + + + + + + + Data Control + + + +
+
+

Dependencies

+
    +
  • Tizen 4.0 and Higher
  • +
+

Content

+ +

Related Info

+ +
+
+ +
+ +

Data Control

+

The data control is a standard mechanism for exchanging specific data between applications.

+ +

A provider application shares its data, and a consumer application can request the shared data. All applications can function as consumers and request data shared by other applications using a data control. However, only service applications can function as providers and share their own data.

+ +

The main features of the Tizen.Applications.DataControl namespace include:

+ + +

Figure: Data control mechanism

+

Data control mechanism

+ +

Prerequisites

+ +

The data control use cases run 2 applications. Each application plays a different role: one as the consumer, the other as the provider.

+ +

To enable your application to use the data control functionality:

+
    +
  1. To use the Tizen.Applications.DataControl namespace, the consumer has to request permission by adding the following privileges to the tizen-manifest.xml file: +
    +<privileges>
    +   <privilege>http://tizen.org/privilege/datasharing</privilege>
    +   <privilege>http://tizen.org/privilege/appmanager.launch</privilege>
    +</privileges>
    +
    +
  2. +
  3. For the provider, in Visual Studio, double-click tizen-manifest.xml, and in the manifest editor, go to Advanced > Data Control, and click Add to add the provider details. Add the Read and Write access rights to both SQL and Map types, as needed. +

    You can set the data access to be trusted, allowing other applications signed with the same certificate to access the data. You can also define privileges to restrict access to applications having the specific privileges.

    +

    The following code example shows how the <datacontrol> elements are consequently added to the tizen-manifest.xml file:

    +
    +<?xml version="1.0" encoding="utf-8"?>
    +<manifest xmlns="http://tizen.org/ns/packages" api-version="4.0"
    +          package="@PACKAGE_NAME@" version="@VERSION@" install-location="internal-only">
    +   <label>datacontrolprovider</label>
    +   <author email="PUT YOUR EMAIL" href="www.tizen.org">PUT YOUR NAME</author>
    +   <description>datacontrolprovider</description>
    +   <service-application appid="org.tizen.datacontrolprovider"
    +                        exec="datacontrolprovider"
    +                        nodisplay="true" multiple="false" type="capp" taskmanage="true"
    +                        auto-restart="false" on-boot="false">
    +      <datacontrol providerid = "Your Provider ID" access="ReadWrite" type="Sql" trusted="True">
    +         <privilege>http://tizen.org/privilege/contact.read</privilege>
    +         <privilege>http://tizen.org/privilege/email</privilege>
    +      </datacontrol>
    +      <datacontrol providerid = "Your Provider ID" access="ReadWrite" type="Map" trusted="False"/>
    +   </service-application>
    +   <privileges>
    +      <privilege>http://tizen.org/privilege/datasharing</privilege>
    +   </privileges>
    +</manifest>
    +
    +
  4. +
  5. To use the methods and properties of the Tizen.Applications.DataControl namespace, include it in your application: +
    +using Tizen.Applications.DataControl;
    +
    +
  6. +
+ +

Managing a Provider

+ +

In a provider application, you must override the following abstract methods of the Tizen.Applications.DataControl.Provider class for handling SQL requests: OnSelect(), OnInsert(), OnUpdate(), and OnDelete(). If you want to use Map-type data controls, you must override the OnMapAdd(), OnMapGet(), OnMapSet(), and OnMapRemove() methods. Optionally, you can override the OnBulkInsert(), OnMapBulkAdd(), and OnDataChangeListenRequest() methods as well.

+ +

The applicable overridden method is called when a request is received from a consumer application.

+ +
    +
  1. Create a new MyProvider class, which inherits the Tizen.Applications.DataControl.Provider class, and implement the method overrides to react to the requests from consumer applications: +
    +namespace XamarinProvider
    +{
    +    public class MyProvider : Provider
    +    {
    +        private const string LogTag = "XamarinProvider";
    +
    +        public MyProvider(string dataId) : base(dataId)
    +        {
    +        }
    +
    +        protected override BulkInsertResult OnBulkInsert(IEnumerable<string> queryList, BulkData bulkInsertData)
    +        {
    +            Log.Error(LogTag, "datacontrol  OnBulkInsert " + bulkInsertData.GetCount().ToString());
    +
    +            for (int i = 0; i < bulkInsertData.GetCount(); i ++)
    +            {
    +                Log.Error(LogTag, "datacontrol " + bulkInsertData.GetData(i).GetItem<string>("test"));
    +            }
    +
    +            BulkResultData data = new BulkResultData();
    +            foreach (string query in queryList)
    +            {
    +                Log.Error(LogTag, "provider !!! @@@@! OnBulkInsert " + query);
    +            }
    +
    +            var b = new Bundle();
    +            b.AddItem("test", "test123");
    +
    +            var b2 = new Bundle();
    +            b2.AddItem("test", "test777");
    +
    +            var b3 = new Bundle();
    +            b3.AddItem("test", "test!!!!");
    +
    +            data.Add(b, 0);
    +            data.Add(b2, 0);
    +            data.Add(b3, 0);
    +
    +            BulkInsertResult rdata = new BulkInsertResult(data, true);
    +
    +            return rdata;
    +        }
    +
    +        protected override DataChangeListenResult OnDataChangeListenRequest(string requestAppID)
    +        {
    +            Log.Error(LogTag, "provider !!! @@@@! DataChangeListenRequestResult " + requestAppID);
    +
    +            return new DataChangeListenResult(ResultType.Success);
    +        }
    +
    +        protected override InsertResult OnInsert(string query, Bundle insertData)
    +        {
    +            long rowId = 0;
    +            bool result = true;
    +            Log.Error(LogTag, "provider !!! @@@@! OnInsert " + query);
    +
    +            SendDataChange(ChangeType.Insert, insertData);
    +
    +            return new InsertResult(rowId, result);
    +        }
    +
    +        protected override UpdateResult OnUpdate(string query, string where, Bundle updateData)
    +        {
    +            bool result = true;
    +            Log.Error(LogTag, "provider !!! @@@@! OnUpdate " + query);
    +
    +            return new UpdateResult(result);
    +        }
    +
    +        protected override DeleteResult OnDelete(string query, string where)
    +        {
    +            bool result = true;
    +            Log.Error(LogTag, "provider !!! @@@@! OnDelete " + query);
    +
    +            return new DeleteResult(result);
    +        }
    +
    +        protected override SelectResult OnSelect(string query, string where, string[] columList, int columnCount, string order, int pageNum, int countPerPage)
    +        {
    +
    +            Log.Error(LogTag, "provider !!! @@@@! OnSelect ");
    +
    +            string[] name = new string[] {"str1", "str2", "str3", "str4"};
    +            ColumnType[] type = new ColumnType[]
    +            {
    +                ColumnType.ColumnTypeInt,
    +                ColumnType.ColumnTypeDouble,
    +                ColumnType.ColumnTypeString,
    +                ColumnType.ColumnTypeBlob
    +            };
    +            MatrixCursor mc = new MatrixCursor(name, type);
    +            object[] value = new object[4];
    +
    +            int a = 10;
    +            double b = 0.111;
    +
    +            byte[] _byte = new byte[] {50, 60, 70, 80, 90};
    +            for (int i = 0; i < 5; i++)
    +            {
    +                value[0] = a;
    +                value[1] = b;
    +                value[2] ="testvalue";
    +                value[3] = _byte;
    +                mc.AddRow(value);
    +                a++;
    +                b++;
    +            }
    +
    +            return new SelectResult(mc, true);
    +        }
    +    }
    +
    +
  2. +
  3. Create an instance of the MyProvider class, and start the provider functionality with the Run() method of the new instance: +

    +
    +    public class App
    +    {
    +        MyProvider _dp;
    +
    +        public App()
    +        {
    +            _dp = new MyProvider("Dictionary");
    +            _dp.Run();
    +
    +
  4. +
  5. To notify the consumer of data changes, use the SendDataChange() method: +
    +            var b = new Bundle();
    +            b.AddItem("test", "test123");
    +
    +            dp.SendDataChange(ChangeType.Delete, b);
    +
    +
  6. +
  7. When no longer needed, stop the provider with the Stop() method: +
    +            _dp.Stop();
    +        }
    +    }
    +}
    +
    +
  8. +
+ + +

Managing a Consumer

+

In a consumer application, you must override the following abstract methods of the Tizen.Applications.DataControl.Consumer class for handling responses to SQL requests: OnSelectResult(), OnInsertResult(), OnUpdateResult(), and OnDeleteResult(). +If you want to use Map-type data controls, you must override the OnMapAddResult(), OnMapGetResult(), OnMapSetResult(), and OnMapRemoveResult() methods. Optionally, you can override the OnBulkInsertResult(), OnMapBulkAddResult(), and OnDataChangeListenResult() methods as well. If you want to override the behavior for when the provider uses the SendDataChange() method of the Tizen.Applications.DataControl.Provider class, override the OnDataChange() method.

+ +

The applicable overridden method is called when a result is received from a provider.

+ +
    +
  1. Create a new MyConsumer class, which inherits the Tizen.Applications.DataControl.Consumer class, and implement the method overrides to react to the requests from the provider: +
    +namespace XamarinConsumer
    +{
    +    public class MyConsumer : Consumer
    +    {
    +        private const string LogTag = "MyConsumer";
    +
    +        public MyConsumer(string providerId, string dataId) : base(providerId, dataId)
    +        {
    +        }
    +
    +        protected override void OnDataChangeListenResult(DataChangeListenResult result)
    +        {
    +            Log.Debug(LogTag, "OnDataChangeListenResult called");
    +        }
    +
    +        protected override void OnDataChange(ChangeType type, Bundle data)
    +        {
    +            Log.Debug(LogTag, "OnDataChange called");
    +        }
    +
    +        protected override void OnInsertResult(InsertResult result)
    +        {
    +            Log.Debug(LogTag, "OnInsertResult called");
    +        }
    +
    +        protected override void OnSelectResult(SelectResult result)
    +        {
    +            Log.Debug(LogTag, "OnSelectResult called");
    +        }
    +
    +        protected override void OnUpdateResult(UpdateResult result)
    +        {
    +            Log.Debug(LogTag, "OnUpdateResult called");
    +        }
    +
    +        protected override void OnDeleteResult(DeleteResult result)
    +        {
    +            Log.Debug(LogTag, "OnDeleteResult called");
    +        }
    +    }
    +
    +    public class App
    +    {
    +        private const string _dataId = "ProviderTest";
    +        private const string _providerId = "http://Tizen.DataControl.Tests.dll.com/datacontrol/provider/Tizen.DataControl.Tests.dll";
    +        MyConsumer dc;
    +        public App()
    +        {
    +            dc = new MyConsumer(_providerId, _dataId);
    +        }
    +    }
    +}
    +
    +
  2. +
  3. Implement the consumer application: +
      +
    1. In case of SQL-type data, the consumer sends requests for the insert, select, update, and delete operations to the provider, and receives the result as a response from the provider: +
      +public class App
      +{
      +    var b = new Bundle();
      +    b.AddItem("test_insert", "test_insert");
      +    dc.Insert(b);
      +
      +    var b_update = new Bundle();
      +    b_update.AddItem("test_insert", "test_update");
      +    dc.Update(b_update, "WHERE test_insert = 'test_insert'");
      +
      +    string[] columnList = new string[] {"test_insert"};
      +    dc.Select(columnList, null, null);
      +
      +    dc.Delete("WHERE test = 'test_update'");
      +
      +
    2. +
    3. In case of map-type data, the consumer sends requests for the add, set, get, and remove operations to the provider, and receives the result as a response from the provider: +
      +    dc.MapAdd("key", "oldvalue");
      +
      +    dc.MapSet("key", "oldvalue", "newvalue");
      +
      +    dc.MapGet("key");
      +
      +    dc.MapRemove("key", "newvalue");
      +
      +
    4. +
    5. In case of bulk data, the consumer sends a request to the provider by using the BulkInsert() method of the Tizen.Applications.DataControl.Consumer class for SQL-type data or the MapBulkAdd() method for map-type data: +
      +    BulkData data = new BulkData();
      +    var b = new Bundle();
      +    b.AddItem("test", "test1");
      +
      +    var b2 = new Bundle();
      +    b2.AddItem("test", "test2");
      +
      +    var b3 = new Bundle();
      +    b3.AddItem("test", "test3");
      +
      +    data.Add(b);
      +    data.Add(b2);
      +    data.Add(b3);
      +
      +    dc.BulkInsert(data);
      +
      +    dc.MapBulkAdd(data);
      +
      +
    6. +
    7. To receive data change notifications from the provider, the consumer uses the DataChangeListen() method of the Tizen.Applications.DataControl.Consumer class: +
      +    dc.DataChangeListen();
      +}
      +
      +
    8. +
    +
  4. +
+ +

Using a Matrix Cursor

+

If you use a consumer application for SQL-type data and you have a collection of data that is not in a database, you can use the Tizen.Applications.DataControl.MatrixCursor class to create a cursor for the data:

+ +

To create a matrix cursor, simply construct it with an array of column names:

+
  • Add one row at a time to the matrix by passing either an array of objects or an Iterable to the AddRow() method of the Tizen.Applications.DataControl.MatrixCursor class.
  • + +
  • Define column types for a matrix cursor by using the values of the Tizen.Applications.DataControl.ColumnType enumeration.
  • +
+ +

To use a matrix cursor:

+ +
    +
  1. Implement the provider application. +

    If a consumer sends a select request to the provider, the OnSelect() method of the Tizen.Applications.DataControl.Provider class is called, and the provider sends the results to the consumer as an instance of the Tizen.Applications.DataControl.SelectResult class:

    +
    +public class MyProvider : Provider
    +{
    +    protected override SelectResult OnSelect(string query, string where, string[] columList, int columnCount, string order, int pageNum, int countPerPage)
    +    {
    +        Log.Error(LogTag, "provider !!! @@@@! OnSelect ");
    +
    +        string[] name = new string[] {"str1", "str2", "str3", "str4"};
    +        ColumnType[] type = new ColumnType[]
    +        {
    +            ColumnType.ColumnTypeInt,
    +            ColumnType.ColumnTypeDouble,
    +            ColumnType.ColumnTypeString,
    +            ColumnType.ColumnTypeBlob
    +        };
    +        MatrixCursor mc = new MatrixCursor(name, type);
    +        object[] value = new object[4];
    +
    +        int a = 10;
    +        double b = 0.111;
    +
    +        byte[] _byte = new byte[] {50, 60, 70, 80, 90};
    +        for (int i = 0; i < 5; i++)
    +        {
    +            value[0] = a;
    +            value[1] = b;
    +            value[2] ="testvalue";
    +            value[3] = _byte;
    +            mc.AddRow(value);
    +            a++;
    +            b++;
    +        }
    +
    +        return new SelectResult(mc, true);
    +    }
    +}
    +
    +
  2. +
  3. Implement the consumer application. +

    The consumer sends a select request to the provider. When the provider responds by sending a Tizen.Applications.DataControl.SelectResult instance, the OnSelectResult() method of the Tizen.Applications.DataControl.Consumer class is called:

    +
    +public class MyConsumer : Consumer
    +{
    +    protected override void OnSelectResult(SelectResult result)
    +    {
    +        Log.Debug(LogTag, "OnSelectResult called");
    +
    +        var data = result.ResultCursor;
    +
    +        int int_val = data.GetIntValue(0)
    +        double double_val = data.GetDoubleValue(1);
    +        string str = data.GetStringValue(2);
    +    }
    +}
    +
    +public class App
    +{
    +    private const string _dataId = "ProviderTest";
    +    private const string _providerId = "http://Tizen.DataControl.Tests.dll.com/datacontrol/provider/Tizen.DataControl.Tests.dll";
    +
    +    MyConsumer dc;
    +
    +    public App()
    +    {
    +        dc = new MyConsumer(_providerId, _dataId);
    +
    +        string[] columnList = new string[] {"test"};
    +        dc.Select(columnList, null, null);
    +    }
    +}
    +
    +
  4. +
+ +

Data Control Export

+

You can export the provider functionalities of your Tizen .NET service application in the application project settings in Visual Studio. The provider ID, type, and accessibility must be specified for the available data control.

+

Figure: Exporting data control

+

Exporting data control

+

To help other applications to use the exported data controls, the data model must be open to the public. The data model consists of the following data:

+
    +
  • Provider ID +
      +
    • It is used for identifying the data control provider.
    • +
    • It must be unique and use a fully-qualified domain name.
    • +
    • It must consist of alphanumeric characters separated with the period (".") character, and it must start with a letter.
    • +
    • Platform-defined data control provider is defined in the http://tizen.org/datacontrol/provider/<application name> format.
    • +
    • User-defined data control provider is defined in the http://<vendor.com>/datacontrol/provider/<application name> format.
    • +
    +
  • +
  • Data ID +
      +
    • It is used for identifying data (usually a database table name or a registry section name) exported by the data control provider.
    • +
    • It must be unique in the data control provider and it is given as a string of 1 or more components, separated by a slash ("/") character.
    • +
    +
  • +
  • Type +
      +
    • You can use Tizen .NET applications that provide their own data structure table and implement the SQL-type data control provider using a database file.
    • +
    • You can use Tizen .NET applications that provide their own key-value pairs data structure map and implement the map-type data control provider using registry file or collection map classes.
    • +
    +
  • +
  • Data schema +
      +
    • SQL-type data control exports column names and types of the data structure table.
    • +
    • Map-type data control exports key names and types of the data structure map.
    • +
    +
  • +
  • Data accessibility +
      +
    • You can control read and write access from other applications by defining data control accessibility.
    • +
    +
  • +
  • Trusted +
      +
    • You can allow access from other applications signed with the same certificate by setting the trusted status for the data control.
    • +
    +
  • +
  • Privileges +
      +
    • Your provider application can restrict access to applications that have specific privileges defined.
    • +
    +
  • +
+ +

The following table contains an example data model of a data control provider.

+

Table: Data model example of a data control provider

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Data control typeData control provider IDData control data IDData schemaData accessibilityTrustedPrivileges
SQLhttp://<vendor.com>/datacontrol/provider/sampledata1column1 +

(Type: Integer)

column2 +

(Type: String)

Read-OnlyTruehttp://tizen.org/privilege/application.admin
Maphttp://<vendor.com>/datacontrol/provider/sample2data2key1 +

(Type: String)

key2 +

(Type: String)

Read-WriteFalsehttp://tizen.org/privilege/appmanager.launch
+ + + + + +
+ +Go to top + + + + + + + diff --git a/org.tizen.guides/html/images/exporting_datacontrol.png b/org.tizen.guides/html/images/exporting_datacontrol.png old mode 100644 new mode 100755 diff --git a/org.tizen.guides/html/images/exporting_datacontrol_cs.png b/org.tizen.guides/html/images/exporting_datacontrol_cs.png new file mode 100755 index 0000000..b2c29a3 Binary files /dev/null and b/org.tizen.guides/html/images/exporting_datacontrol_cs.png differ