<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Scripting Layer</title><link>https://sourceforge.net/p/ceres-os/wiki/Scripting%2520Layer/</link><description>Recent changes to Scripting Layer</description><atom:link href="https://sourceforge.net/p/ceres-os/wiki/Scripting%20Layer/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 13 Jul 2023 12:13:21 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/ceres-os/wiki/Scripting%20Layer/feed" rel="self" type="application/rss+xml"/><item><title>Scripting Layer modified by Sreekant Sreedharan</title><link>https://sourceforge.net/p/ceres-os/wiki/Scripting%2520Layer/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,16 +1,10 @@
 # Core Layer #

 ## Function ##
-The function of this layer is to provide an abstraction of the underlying operating system. Code in this layer may be platform specific. If it is, the code in the include and src (source) directory is further broken down into up-to three sub-directories: portable, unix and win32. 
-
-Generally, if you use a class declared in the portable directory, you are guaranteed that it will compile and have the same behavior regardless of the underlying operating system. The portable code is often an abstraction of corresponding concrete implementations in the unix or win32 directory.
-
-Note that by design, the layer does not mandate the use of portable classes. You can always access the native implementation if you need to, for performance, or to benefit from platform-specific features.
+As a hosted operating system, Ceres also runs on the cloud as a digital twin runtime in a private cloud. The libraries in this layer provides runtime support for scripting extensions on a twin environment.

 ## Design Principles ##
-* Facilitate writing code independent of platforms: operating system, databases, devices etc.
-* Provide the ability to access platform dependent implementation if necessary. 
-* Provide a set of utilities and data structures that may not already be provided by the C++ standard libraries.
+* General purpose runtime object accessible from any scripting language including - Python, Lua, TCL and JavaScript.

 ## Modules ##

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sreekant Sreedharan</dc:creator><pubDate>Thu, 13 Jul 2023 12:13:21 -0000</pubDate><guid>https://sourceforge.net132f253c1b6b4163738af906fc1296b516bb1a35</guid></item><item><title>Scripting Layer modified by Sreekant Sreedharan</title><link>https://sourceforge.net/p/ceres-os/wiki/Scripting%2520Layer/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -16,17 +16,11 @@

 Module | Layer | Description
 --------| ----- | -----------
-[algorithm](http://ceres-os.sourceforge.net/platform/docs/Module.algorithm.xml)    | kernel    | This library implements data management services.
-[ceres](http://ceres-os.sourceforge.net/platform/docs/Module.ceres.xml)    | kernel    | This library implements data management services.
-[cloudos](http://ceres-os.sourceforge.net/platform/docs/Module.cloudos.xml)    | kernel    | This library implements data management services.
-[database](http://ceres-os.sourceforge.net/platform/docs/Module.database.xml)  | kernel    | This library implements data management services.
-[file](http://ceres-os.sourceforge.net/platform/docs/Module.file.xml)  | kernel    | This library implements data management services.
+[database](http://ceres-os.sourceforge.net/platform/docs/Module.database.xml)  | kernel    | Ceres Scripting Runtime Objects : Database support.
 [math](http://ceres-os.sourceforge.net/platform/docs/Module.math.xml)  | kernel    | This library implements data management services.
 [os](http://ceres-os.sourceforge.net/platform/docs/Module.os.xml)  | kernel    | This library implements data management services.
-[security](http://ceres-os.sourceforge.net/platform/docs/Module.security.xml)  | kernel    | This library implements data management services.
 [system](http://ceres-os.sourceforge.net/platform/docs/Module.system.xml)  | kernel    | This library implements data management services.
 [vm](http://ceres-os.sourceforge.net/platform/docs/Module.vm.xml)  | kernel    | This library implements data management services.
-[web](http://ceres-os.sourceforge.net/platform/docs/Module.web.xml)    | kernel    | This library implements data management services.

 ## Class Catalog ##
 Documentation for individual classes are included in docs.tar.gz file in the root directory. You will need to extract it into the docs directory for your documentation to work. Please read /docs/index.htm for more instructions.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sreekant Sreedharan</dc:creator><pubDate>Thu, 13 Jul 2023 12:12:03 -0000</pubDate><guid>https://sourceforge.net8fe1bd73d0a3f8cedd721212f2a3b35cdaa1f9d5</guid></item><item><title>Scripting Layer modified by Sreekant Sreedharan</title><link>https://sourceforge.net/p/ceres-os/wiki/Scripting%2520Layer/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -16,11 +16,17 @@

 Module | Layer | Description
 --------| ----- | -----------
-[db](http://empact.sourceforge.net/docs/Module.db.xml) | core  | This library provides native support for the most common database technologies in the industry.
-[fileio](http://empact.sourceforge.net/docs/Module.fileio.xml) | core  | This library contains abstractions for libraries for interaction with files.
-[netio](http://empact.sourceforge.net/docs/Module.netio.xml)   | core  | This library contains abstractions for interaction with network libraries.
-[os](http://empact.sourceforge.net/docs/Module.os.xml) | core  | This library contains abstractions for OS specific components like Threads, synchronization objects etc..
-[utils](http://empact.sourceforge.net/docs/Module.utils.xml)   | core  | This library contains common utility components shared by all libraries.
+[algorithm](http://ceres-os.sourceforge.net/platform/docs/Module.algorithm.xml)    | kernel    | This library implements data management services.
+[ceres](http://ceres-os.sourceforge.net/platform/docs/Module.ceres.xml)    | kernel    | This library implements data management services.
+[cloudos](http://ceres-os.sourceforge.net/platform/docs/Module.cloudos.xml)    | kernel    | This library implements data management services.
+[database](http://ceres-os.sourceforge.net/platform/docs/Module.database.xml)  | kernel    | This library implements data management services.
+[file](http://ceres-os.sourceforge.net/platform/docs/Module.file.xml)  | kernel    | This library implements data management services.
+[math](http://ceres-os.sourceforge.net/platform/docs/Module.math.xml)  | kernel    | This library implements data management services.
+[os](http://ceres-os.sourceforge.net/platform/docs/Module.os.xml)  | kernel    | This library implements data management services.
+[security](http://ceres-os.sourceforge.net/platform/docs/Module.security.xml)  | kernel    | This library implements data management services.
+[system](http://ceres-os.sourceforge.net/platform/docs/Module.system.xml)  | kernel    | This library implements data management services.
+[vm](http://ceres-os.sourceforge.net/platform/docs/Module.vm.xml)  | kernel    | This library implements data management services.
+[web](http://ceres-os.sourceforge.net/platform/docs/Module.web.xml)    | kernel    | This library implements data management services.

 ## Class Catalog ##
 Documentation for individual classes are included in docs.tar.gz file in the root directory. You will need to extract it into the docs directory for your documentation to work. Please read /docs/index.htm for more instructions.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sreekant Sreedharan</dc:creator><pubDate>Thu, 13 Jul 2023 12:08:55 -0000</pubDate><guid>https://sourceforge.netf02b523b4d2ba0f7d7b492e7f73200ec275624de</guid></item><item><title>Scripting Layer modified by Sreekant Sreedharan</title><link>https://sourceforge.net/p/ceres-os/wiki/Scripting%2520Layer/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="core-layer"&gt;Core Layer&lt;/h1&gt;
&lt;h2 id="function"&gt;Function&lt;/h2&gt;
&lt;p&gt;The function of this layer is to provide an abstraction of the underlying operating system. Code in this layer may be platform specific. If it is, the code in the include and src (source) directory is further broken down into up-to three sub-directories: portable, unix and win32. &lt;/p&gt;
&lt;p&gt;Generally, if you use a class declared in the portable directory, you are guaranteed that it will compile and have the same behavior regardless of the underlying operating system. The portable code is often an abstraction of corresponding concrete implementations in the unix or win32 directory.&lt;/p&gt;
&lt;p&gt;Note that by design, the layer does not mandate the use of portable classes. You can always access the native implementation if you need to, for performance, or to benefit from platform-specific features.&lt;/p&gt;
&lt;h2 id="design-principles"&gt;Design Principles&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Facilitate writing code independent of platforms: operating system, databases, devices etc.&lt;/li&gt;
&lt;li&gt;Provide the ability to access platform dependent implementation if necessary. &lt;/li&gt;
&lt;li&gt;Provide a set of utilities and data structures that may not already be provided by the C++ standard libraries.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="modules"&gt;Modules&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Module&lt;/th&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a class="" href="http://empact.sourceforge.net/docs/Module.db.xml" rel="nofollow"&gt;db&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;core&lt;/td&gt;
&lt;td&gt;This library provides native support for the most common database technologies in the industry.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a class="" href="http://empact.sourceforge.net/docs/Module.fileio.xml" rel="nofollow"&gt;fileio&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;core&lt;/td&gt;
&lt;td&gt;This library contains abstractions for libraries for interaction with files.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a class="" href="http://empact.sourceforge.net/docs/Module.netio.xml" rel="nofollow"&gt;netio&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;core&lt;/td&gt;
&lt;td&gt;This library contains abstractions for interaction with network libraries.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a class="" href="http://empact.sourceforge.net/docs/Module.os.xml" rel="nofollow"&gt;os&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;core&lt;/td&gt;
&lt;td&gt;This library contains abstractions for OS specific components like Threads, synchronization objects etc..&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a class="" href="http://empact.sourceforge.net/docs/Module.utils.xml" rel="nofollow"&gt;utils&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;core&lt;/td&gt;
&lt;td&gt;This library contains common utility components shared by all libraries.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="class-catalog"&gt;Class Catalog&lt;/h2&gt;
&lt;p&gt;Documentation for individual classes are included in docs.tar.gz file in the root directory. You will need to extract it into the docs directory for your documentation to work. Please read /docs/index.htm for more instructions.&lt;/p&gt;
&lt;h2 id="samples"&gt;Samples&lt;/h2&gt;
&lt;p&gt;Samples for key components in this layer are organized in the samples/core directory of the source code.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sreekant Sreedharan</dc:creator><pubDate>Thu, 13 Jul 2023 11:44:49 -0000</pubDate><guid>https://sourceforge.netbbcea019c04f742978aa69c9401640806aec1df6</guid></item></channel></rss>