hello example
In the software development world, learning a new technology traditionally starts with using that technology to greet the world. We will keep that tradition with KasperskyOS, so we begin with an example that displays Hello world!
on the screen.
KasperskyOS lets you develop solutions in the C and C++ languages.
The hello.c
code looks familiar and simple to a developer that uses C, and is fully compatible with POSIX:
hello.c
int main(int argc, const char *argv[])
{
fprintf(stderr,"Hello world!\n");
return EXIT_SUCCESS;
}
To run the Hello
file in KasperskyOS, multiple additional actions are required.
Development of applications for KasperskyOS has the following specifics:
First of all, each entity (the term used to refer to applications and their associated processes in KasperskyOS) must be statically described. A description is contained in files with the EDL, CDL and IDL extensions, which are used for building a solution. The minimum possible description of an entity is an EDL file that indicates the name of the entity. All entities developed in the first part of the Guide have a minimum static description (only an EDL file with the entity name).
Secondly, all entities to be started must be contained in the KasperskyOS image being loaded. For this reason, each example in this Guide presents not just an individual entity but a ready-to-use KasperskyOS-based solution that includes an image of the kernel that initializes the entity and auxiliary entities, such as drivers.
EDL description of the Hello entity
A static description of the Hello
entity consists of a single file named Hello.edl
that must indicate the entity name:
Hello.edl
/* The entity name follows the reserved word "entity". */
entity Hello
The entity name must begin with an uppercase letter. The name of an EDL file must match the name of the entity that it describes.
The second part of the Guide shows examples of more complex EDL descriptions, and also presents CDL and IDL descriptions.
Creating the Einit initializing entity
When KasperskyOS is loaded, the kernel starts an entity named Einit. The Einit
entity starts all other entities included in the solution, which means that it serves as the initializing entity.
The KasperskyOS Community Edition toolkit includes the einit tool, which lets you generate the code of the initializing entity (einit.c
) based on the init description. In the example provided below, the file containing the init description is named init.yaml
, but it can have any name.
For more details, refer to Entity startup.
If you want the Hello
entity to start after the operating system is loaded, all you need to do is specify its name in the init.yaml
file and build an Einit
entity from it.
init.yaml
entities:
# Start the "Hello" entity.
- name: Hello
Build scheme for the hello example
The general build scheme for the hello example looks as follows:
Building and running the hello example
See the Building and running examples section.