]> rtime.felk.cvut.cz Git - orte.git/blob - orte/libjorte/JORTEDomainMgrCreate.c
New ORTE version 0.3.0 committed
[orte.git] / orte / libjorte / JORTEDomainMgrCreate.c
1 /* JORTEDomainMgrCreate.c  */
2
3 /**
4   * This code provides conversion between JAVA a C environments.
5   * The C functions are calling here and results are send to JAVA
6   * native functions. It uses the header pregenerated by JAVA
7   * (by command 'javah -jni class_with_native_function')
8   *
9   * @author Lukas Pokorny (lukas_pokorny@centrum.cz)
10   * @author CTU FEE Prague - Department of Control Engineering (dce.felk.cvut.cz)
11   * @author Project ORTE - OCERA Real Time Ethernet (www.ocera.org)
12   * @author dedication to Kj
13   * @version 0.1
14   *
15   *
16   * This program is free software; you can redistribute it and/or modify
17   * it under the terms of the GNU General Public License as published by
18   * the Free Software Foundation; either version 2 of the License, or
19   * (at your option) any later version.
20   *
21   * This program is distributed in the hope that it will be useful,
22   * but WITHOUT ANY WARRANTY; without even the implied warranty of
23   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24   * GNU General Public License for more details.
25   *
26   */
27
28
29 // origin orte headers
30 #include "orte.h"
31 // pregenerated header
32 #include "jorte/org_ocera_orte_Manager.h"
33
34
35
36 // create default manager domain
37 JNIEXPORT jint JNICALL
38 Java_org_ocera_orte_Manager_jORTEDomainDefaultMgrCreate
39 (JNIEnv *env, jclass cls, jint jdomain, jboolean susp)
40 {
41   jint                   d;
42
43   printf(":c: jsem pred ORTEDomainDefaultMgrCreate() \n");
44   /* call the liborte function */
45   d = (jint) ORTEDomainMgrCreate((int)jdomain,
46                                  NULL,
47                                  NULL,
48                                  (Boolean) susp);
49   if(!d) {
50     printf(":!c: ORTEDomainDefaultMgrCreate() FAILED.. \n");
51     return 0;
52   }
53   printf(":c: ORTEDomainDefautlMgrCreate() ok.. + %d \n", d);
54   return (d);
55 }
56
57
58 // create user manager domain
59 JNIEXPORT jint JNICALL
60 Java_org_ocera_orte_Manager_jORTEDomainMgrCreate
61 (JNIEnv *env, jclass cls, jint jdomain, jint propHandle,
62  jint eventsHandle, jboolean susp)
63 {
64   jint                    d;
65
66   printf(":c: jsem pred ORTEDomainMgrCreate() \n");
67   /* call the liborte function */
68   d = (jint) ORTEDomainMgrCreate((int)jdomain,
69                                  (ORTEDomainProp *) propHandle,
70                                  (ORTEDomainAppEvents *) eventsHandle,
71                                  (Boolean) susp);
72   if(!d) {
73     printf(":!c: ORTEDomainMgrCreate() FAILED.. \n");
74     return 0;
75   }
76   printf(":c: ORTEDomainMgrCreate() ok.. + %d \n", d);
77   return (d);
78 }