JPH05181657A - Method and mechanism for common interface between plural programs - Google Patents

Method and mechanism for common interface between plural programs

Info

Publication number
JPH05181657A
JPH05181657A JP36158991A JP36158991A JPH05181657A JP H05181657 A JPH05181657 A JP H05181657A JP 36158991 A JP36158991 A JP 36158991A JP 36158991 A JP36158991 A JP 36158991A JP H05181657 A JPH05181657 A JP H05181657A
Authority
JP
Japan
Prior art keywords
parameter
processing
program
pattern
value
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
JP36158991A
Other languages
Japanese (ja)
Inventor
Kazunori Sudo
和則 須藤
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
NEC Corp
Original Assignee
NEC Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by NEC Corp filed Critical NEC Corp
Priority to JP36158991A priority Critical patent/JPH05181657A/en
Publication of JPH05181657A publication Critical patent/JPH05181657A/en
Pending legal-status Critical Current

Links

Landscapes

  • Devices For Executing Special Programs (AREA)
  • Stored Programmes (AREA)

Abstract

PURPOSE:To curtail the coding quantity of a common interface, and to facilitate its debug and maintenance. CONSTITUTION:A parameter check processing part 1 of a common interface Y checks an allowable value of each separate parameter received from programs X1, X2 and detects an allowable value violation, and specifies a combination pattern of the parameter unless a violation is in existence. A program specific processing part 2 compares this specified pattern with a parameter pattern set in advance in accordance with each program Z1, Z2 of a processing request destination and determines the requested program and the parameter designated thereto, and requests actually the processing. When the specified pattern does not coincide any of the parameter patterns set in advance, an error processing is executed as a subordination violation between the parameters.

Description

【発明の詳細な説明】Detailed Description of the Invention

【0001】[0001]

【産業上の利用分野】本発明は、処理依頼元プログラム
から受け取った複数のパラメータの内容に基づいて該当
するプログラムに対して所望のパラメータを指定して処
理を依頼する複数プログラム間の共通インタフェースに
関する。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a common interface between a plurality of programs for requesting processing by designating desired parameters for a corresponding program based on the contents of a plurality of parameters received from a processing request source program. ..

【0002】[0002]

【従来の技術】従来、この種の共通インタフェースは、
構造化プログラミングの手法に則り、受け取った個々の
パラメータの内容チェックとパラメータ相互の関連チェ
ックとを入れ子構造のCASE型等により詳細に行って
パラメータ指定エラーの有無を調べ、且つエラーが無け
れば処理依頼すべきプログラムおよび指定すべきパラメ
ータを特定し、この特定したプログラムに対し実際に処
理を依頼している。
2. Description of the Related Art Conventionally, this type of common interface is
According to the method of structured programming, the contents check of each received parameter and the mutual relation check of the parameters are performed in detail by the nested CASE type etc. to check the presence or absence of the parameter designation error, and if there is no error, request the processing. The program to be specified and the parameter to be specified are specified, and the specified program is actually requested to perform processing.

【0003】図8はこのような従来の共通インタフェー
スの説明図である。なお、前提として、プログラムAが
プログラムC1,C2を呼び出す際には共通インタフェ
ースBに対し3個のパラメータa1,a2,a3を指定
するものとし、各パラメータ間には従属関係があるもの
とする。
FIG. 8 is an explanatory view of such a conventional common interface. As a premise, when the program A calls the programs C1 and C2, it is assumed that the three parameters a1, a2, and a3 are specified for the common interface B, and that there is a subordinate relationship between the parameters.

【0004】図8に示すように、プログラムAからパラ
メータa1,a2,a3を指定して共通インタフェース
Bの呼び出しがあると、共通インタフェースBは、パラ
メータa1に関するCASE型,パラメータa2に関す
るCASE型,パラメータa3に関するCASE型によ
り、以下のような処理を行う。
As shown in FIG. 8, when the program A specifies the parameters a1, a2, and a3 and calls the common interface B, the common interface B is the CASE type for the parameter a1, the CASE type for the parameter a2, and the parameter. The following processing is performed according to the CASE type relating to a3.

【0005】(1)パラメータa1に関するCASE型
により、パラメータa1の値が '1’か, '2’か、そ
れ以外かを判定する(800)。
(1) It is determined whether the value of the parameter a1 is "1", "2", or other than the CASE type for the parameter a1 (800).

【0006】(1−1)パラメータa1の値が '1’の
とき、パラメータa2に関するCASE型により、パラ
メータa2の値がAか,Bか、それ以外かを判定する
(801)。
(1-1) When the value of the parameter a1 is "1", it is determined whether the value of the parameter a2 is A, B, or other by the CASE type relating to the parameter a2 (801).

【0007】(1−1−1)パラメータa2の値がAの
とき、パラメータa3に関するCASE型により、パラ
メータa3の値が '1’か, '2’か、それ以外かを判
定する(802)。
(1-1-1) When the value of the parameter a2 is A, it is determined whether the value of the parameter a3 is "1", "2", or other by the CASE type relating to the parameter a3 (802). ..

【0008】(1−1−1−1)パラメータa3の値が
'1’のとき、b1をパラメータとしてプログラムC1
を呼び出す(803)。
(1-1-1-1) The value of the parameter a3 is
When it is "1", the program C1 uses b1 as a parameter
Is called (803).

【0009】(1−1−1−2)パラメータa3の値が
'2’のとき、b2をパラメータとしてプログラムC1
を呼び出す(804)。
(1-1-1-2) The value of the parameter a3 is
When "2", program C1 with b2 as a parameter
Is called (804).

【0010】(1−1−1−3)パラメータa3の値が
'1’, '2’以外のとき、パラメータエラーとする
(805)。
(1-1-1-3) The value of the parameter a3 is
If it is other than "1" or "2", it is regarded as a parameter error (805).

【0011】(1−1−2)パラメータa2の値がBの
とき、パラメータa3に関するCASE型により、パラ
メータa3の値が '1’か, '2’か、それ以外かを判
定する(806)。
(1-1-2) When the value of the parameter a2 is B, it is determined whether the value of the parameter a3 is "1", "2", or other by the CASE type relating to the parameter a3 (806). ..

【0012】(1−1−2−1)パラメータa3の値が
'1’のとき、b3をパラメータとしてプログラムC1
を呼び出す(807)。
(1-1-2-1) The value of the parameter a3 is
When it is '1', the program C1 uses b3 as a parameter
Is called (807).

【0013】(1−1−2−2)パラメータa3の値が
'2’のとき、b4をパラメータとしてプログラムC1
を呼び出す(808)。
(1-1-2-2) The value of the parameter a3 is
When "2", program C1 with b4 as a parameter
Is called (808).

【0014】(1−1−2−3)パラメータa3の値が
'1’, '2’以外のとき、パラメータエラーとする
(809)。
(1-1-2-3) The value of the parameter a3 is
If it is other than "1" or "2", it is regarded as a parameter error (809).

【0015】(1−1−3)パラメータa2の値がA,
B以外のとき、パラメータエラーとする(810)。
(1-1-3) The value of the parameter a2 is A,
When it is other than B, it is judged as a parameter error (810).

【0016】(1−2)パラメータa1の値が '2’の
とき、パラメータa2に関するCASE型により、パラ
メータa2の値がAか,Bか、それ以外かを判定する
(811)。
(1-2) When the value of the parameter a1 is '2', it is determined whether the value of the parameter a2 is A, B, or other by the CASE type relating to the parameter a2 (811).

【0017】(1−2−1)パラメータa2の値がAの
とき、パラメータa3に関するCASE型により、パラ
メータa3の値が '1’か, '2’か、それ以外かを判
定する(812)。
(1-2-1) When the value of the parameter a2 is A, it is determined whether the value of the parameter a3 is "1", "2", or any other value by the CASE type relating to the parameter a3 (812). ..

【0018】(1−2−1−1)パラメータa3の値が
'1’のとき、d1をパラメータとしてプログラムC2
を呼び出す(813)。
(1-2-1-1) The value of the parameter a3 is
When it is "1", the program C2 uses d1 as a parameter.
Is called (813).

【0019】(1−2−1−2)パラメータa3の値が
'2’のとき、d2をパラメータとしてプログラムC2
を呼び出す(814)。
(1-2-1-2) The value of the parameter a3 is
When it is '2', the program C2 uses d2 as a parameter.
Is called (814).

【0020】(1−2−1−3)パラメータa3の値が
'1’, '2’以外のとき、パラメータエラーとする
(815)。
(1-2-1-3) The value of the parameter a3 is
If it is other than "1" or "2", it is regarded as a parameter error (815).

【0021】(1−2−2)パラメータa2の値がBの
とき、パラメータa3に関するCASE型により、パラ
メータa3の値が '1’か, '2’か、それ以外かを判
定する(816)。
(1-2-2) When the value of the parameter a2 is B, it is determined whether the value of the parameter a3 is '1', '2', or any other value by the CASE type relating to the parameter a3 (816). ..

【0022】(1−2−2−1)パラメータa3の値が
'1’のとき、d3をパラメータとしてプログラムC2
を呼び出す(817)。
(1-2-2-1) The value of the parameter a3 is
When it is '1', the program C2 uses d3 as a parameter.
Is called (817).

【0023】(1−2−2−2)パラメータa3の値が
'2’のとき、b4をパラメータとしてプログラムC1
を呼び出す(818)。即ち、パラメータa1= '
1’,a2=B,a3= '2’のときと同じ呼び出しを
行う(808参照)。
(1-2-2-2) The value of the parameter a3 is
When "2", program C1 with b4 as a parameter
Is called (818). That is, the parameter a1 = '
The same call as when 1 ', a2 = B, a3 =' 2 'is performed (see 808).

【0024】(1−2−2−3)パラメータa3の値が
'1’, '2’以外のとき、パラメータエラーとする
(819)。
(1-2-2-3) The value of the parameter a3 is
If it is other than "1" or "2", it is regarded as a parameter error (819).

【0025】(1−2−3)パラメータa2の値がA,
B以外のとき、パラメータエラーとする(820)。
(1-2-3) The value of the parameter a2 is A,
If it is other than B, it is regarded as a parameter error (820).

【0026】(1−3)パラメータa1の値が '1’,
'2’以外のとき、パラメータエラーとする(82
1)。
(1-3) The value of the parameter a1 is "1",
If it is other than "2", it is regarded as a parameter error (82
1).

【0027】[0027]

【発明が解決しようとする課題】従来は、上述したよう
な共通インタフェースBを使用して、複数プログラム間
のインタフェースをとっていたため、以下のような問題
点がある。
Conventionally, since the common interface B as described above is used to interface between a plurality of programs, there are the following problems.

【0028】パラメータの指定エラーを検出するため
に、各パラメータの許容値チェック以外にパラメータの
値の組み合わせ全てをチェックするようにしているた
め、パラメータが複数あり且つパラメータの許容値も複
数存在し然もパラメータ間に従属関係が存在するプログ
ラム間のインタフェースの場合、各パラメータの許容値
チェックのCASE型配下に、他のパラメータのチェッ
クのCASE型を配置する入れ子構造になり、共通イン
タフェースBのコーディング規模が増大する。特に、図
8の808,818に示すように同じ呼び出しであって
も処理依頼ステートメントを別々に記述しなければなら
ないことが更にコーディング規模を増大させている。
In order to detect a parameter designation error, all combinations of parameter values are checked in addition to the allowable value check of each parameter. Therefore, there are a plurality of parameters and a plurality of parameter allowable values. Also, in the case of an interface between programs where there is a dependency between parameters, a nested structure in which the CASE type of the check of other parameters is placed under the CASE type of the allowable value check of each parameter, the coding scale of the common interface B Will increase. In particular, as shown by 808 and 818 in FIG. 8, the processing request statement must be described separately even for the same call, which further increases the coding scale.

【0029】コーディング量が多いうえ、各パラメータ
のチェックのCASE型のネストが深くなり、またチェ
ック用のステートメントと処理依頼用のステートメント
とが混在するため、デバッグおよび保守が容易でない。
Since the amount of coding is large, the CASE type nesting for checking each parameter is deep, and the statements for checking and the statements for processing are mixed, debugging and maintenance are not easy.

【0030】本発明の目的はこのような従来の問題点を
解決したもので、その目的は、コーディング量の削減,
デバッグや保守の容易化を図ることにある。
The object of the present invention is to solve the above-mentioned conventional problems, and its object is to reduce the amount of coding,
It is to facilitate debugging and maintenance.

【0031】[0031]

【課題を解決するための手段】本発明は上記の目的を達
成するために、処理依頼元プログラムから指定された複
数のパラメータの内容に基づき該当するプログラムに対
して所望のパラメータを指定して処理を依頼する複数プ
ログラム間の共通インタフェース方法において、指定さ
れた個々のパラメータの許容値をチェックし、許容値を
満たさないパラメータが指定されたときにはエラー処理
を行い、許容値を満たすときにはパラメータの組み合わ
せパターンを特定し、次に、この特定された組み合わせ
パターンを予め設定されたパラメータパターンと比較
し、一致するパラメータパターンが存在しないときはエ
ラー処理を行い、一致するパラメータパターンが存在す
るときはその一致したパラメータパターンに対応して予
め設定されたステートメントに基づき処理を依頼すべき
プログラムおよび指定するパラメータを特定し実際に処
理を依頼するようにしている。
In order to achieve the above object, the present invention designates a desired parameter for a corresponding program on the basis of the contents of a plurality of parameters designated by a processing request source program and processes the program. In the common interface method between multiple programs requesting a request, the allowable value of each specified parameter is checked, error processing is performed when a parameter that does not meet the allowable value is specified, and a parameter combination pattern when the allowable value is satisfied. Then, the specified combination pattern is compared with a preset parameter pattern, and when no matching parameter pattern exists, error processing is performed, and when a matching parameter pattern exists, the matching pattern is found. A preset stay corresponding to the parameter pattern So that a request for actual process to identify the parameters to be programmed and specifies should request processing based on placement.

【0032】また、このような方法を実施する複数プロ
グラム間の共通インタフェース機構は、受け取った個々
のパラメータの許容値をチェックし、満足しないときは
エラー処理を行い、満足するときはパラメータの組み合
わせパターンを特定するパラメータチェック処理部と、
このパラメータチェック処理部で特定された組み合わせ
パターンを予め設定されたパラメータパターンと比較
し、一致するパラメータパターンが存在しないときはエ
ラー処理を行い、一致するパラメータパターンが存在す
るときはその一致したパラメータパターンに対応して予
め設定されたステートメントに基づき処理を依頼すべき
プログラムおよび指定するパラメータを特定し実際に処
理を依頼するプログラム特定処理部とを備えている。
Further, the common interface mechanism between a plurality of programs for carrying out such a method checks the allowable value of each received parameter, performs error processing when not satisfied, and when it is satisfied, a combination pattern of parameters. A parameter check processing unit that specifies
The combination pattern specified by this parameter check processing unit is compared with a preset parameter pattern, and if no matching parameter pattern exists, error processing is performed, and if a matching parameter pattern exists, the matching parameter pattern And a program specifying processing unit that specifies a program to be requested for processing and a parameter to be specified based on a statement set in advance and actually requests the processing.

【0033】[0033]

【作用】本発明においては、或る処理依頼元プログラム
から複数のパラメータを指定して呼び出されると、パラ
メータチェック処理部が、受け取った個々のパラメータ
の許容値をチェックし、満足しないときはエラー処理を
行い、満足するときはパラメータの組み合わせパターン
を特定し、次にプログラム特定処理部が、この特定され
た組み合わせパターンを予め設定されたパラメータパタ
ーンと比較し、一致するパラメータパターンが存在しな
いときはエラー処理を行い、一致するパラメータパター
ンが存在するときはその一致したパラメータパターンに
対応して予め設定されたステートメントに基づき処理を
依頼すべきプログラムおよび指定するパラメータを特定
し実際に処理を依頼する。
In the present invention, when a certain processing request source program is called with a plurality of parameters specified, the parameter check processing section checks the allowable values of the individual parameters received, and if they are not satisfied, error processing is performed. If it is satisfied, the parameter combination pattern is specified, then the program specification processing unit compares the specified combination pattern with a preset parameter pattern, and if there is no matching parameter pattern, an error is detected. When a matching parameter pattern exists, a process is performed, and a program to be requested for processing and a parameter to be specified are specified based on a preset statement corresponding to the matching parameter pattern, and the processing is actually requested.

【0034】[0034]

【実施例】次に本発明の実施例について図面を参照して
詳細に説明する。
Embodiments of the present invention will now be described in detail with reference to the drawings.

【0035】図1は本発明の一実施例の構成図であり、
処理の依頼元であるプログラムX1,X2と、処理の依
頼先となるプログラムZ1,Z2との間に、共通インタ
フェースYを備えた構成を有している。
FIG. 1 is a block diagram of an embodiment of the present invention.
It has a configuration in which a common interface Y is provided between the programs X1 and X2 that are the requesters of the processing and the programs Z1 and Z2 that are the requestees of the processing.

【0036】共通インタフェースYは、CALL文によ
りプログラムX1,X2から呼び出されると、プログラ
ムX1,X2から受け取った複数のパラメータの内容に
基づいてプログラムZ1,Z2のうちの該当するプログ
ラムに対して所望のパラメータを指定して処理を依頼す
るインタフェースプログラムであり、パラメータチェッ
ク処理部1とプログラム特定処理部2とを含んでいる。
When the common interface Y is called from the programs X1 and X2 by the CALL statement, the common interface Y is desired for the corresponding one of the programs Z1 and Z2 based on the contents of the plurality of parameters received from the programs X1 and X2. It is an interface program that specifies parameters and requests processing, and includes a parameter check processing unit 1 and a program specifying processing unit 2.

【0037】パラメータチェック処理部1は、プログラ
ムX1,X2から受け取った個々のパラメータの許容値
をチェックすると共に、パラメータの組み合わせパター
ンを特定する処理を行う部分である。
The parameter check processing section 1 is a section for checking the allowable values of the individual parameters received from the programs X1 and X2 and for performing the processing for specifying the combination pattern of the parameters.

【0038】これに対し、プログラム特定処理部2は、
パラメータチェック処理部1によって特定された組み合
わせパターンに基づき処理を依頼すべきプログラムおよ
び指定パラメータを特定し実際に処理を依頼する部分で
ある。
On the other hand, the program identification processing section 2
This is a part that specifies a program and a designated parameter to be requested for processing based on the combination pattern specified by the parameter check processing unit 1 and actually requests the processing.

【0039】次に、図2乃至図5を参照して、パラメー
タチェック処理部1におけるパラメータのチェックと組
み合わせパターンの特定方法について説明する。
Next, with reference to FIGS. 2 to 5, a method of checking parameters and specifying a combination pattern in the parameter check processing unit 1 will be described.

【0040】例としては、プログラムX1,X2からプ
ログラムZ1,Z2を呼び出す際に共通インタフェース
Yに対し4個のパラメータA1,A2,A3,A4を指
定するものとし、パラメータA1は '1’, '2’, '
3’の値を、パラメータA2は '1’, '2’の値を、
パラメータA3はNOT NULLの値を、パラメータ
A4はNULLとそれ以外の値を、それぞれ許容値とし
てとるものとする。
As an example, when calling the programs Z1 and Z2 from the programs X1 and X2, four parameters A1, A2, A3 and A4 are specified for the common interface Y, and the parameter A1 is "1" or "1". 2 ','
The value of 3 ', the parameter A2 is the value of' 1 ',' 2 ',
The parameter A3 takes a value of NOT NULL, and the parameter A4 takes a value of NULL and other values as allowable values.

【0041】また、パラメータA1とパラメータA2と
の間には、パラメータA2が '2’をとるためにはパラ
メータA1は '3’でなければならないという従属関係
(以下第1の従属関係という)が存在し、パラメータA
2とパラメータA3との間には、パラメータA3がNO
T NULLをとるためにはパラメータA2は '1’ま
たは '2’でなければならないという従属関係(以下第
2の従属関係という)が存在するものとする。そして、
本発明ではパラメータチェック処理部1においてこのよ
うな従属関係のチェックを全て省くことが可能である。
しかし、コーディング量があまり増大しない等の理由が
あれば一部の従属関係のチェックだけを行うようにして
も良く、この意味で本実施例では第2の従属関係だけを
チェックする構成が採用されている。
Further, between the parameters A1 and A2, there is a dependency relationship (hereinafter referred to as the first dependency relationship) that the parameter A1 must be "3" in order for the parameter A2 to take "2". Exists and parameter A
Parameter A3 is NO between 2 and parameter A3
It is assumed that there is a dependency relationship (hereinafter referred to as a second dependency relationship) that the parameter A2 must be "1" or "2" in order to take T NULL. And
In the present invention, it is possible to omit all such dependency checking in the parameter check processing unit 1.
However, if there is a reason that the amount of coding does not increase so much, it is possible to check only some of the subordination relationships. In this sense, in the present embodiment, a configuration in which only the second subordination relationship is checked is adopted. ing.

【0042】以上のような例の場合、本実施例では図5
に示すような第1要素P_FLG(1),第2要素P_
FLG(2),第3要素P_FLG(3)から構成され
る配列P_FLGをメモリ上に確保する。
In the case of the above example, FIG.
, The first element P_FLG (1) and the second element P_
An array P_FLG composed of FLG (2) and third element P_FLG (3) is secured in the memory.

【0043】そして、パラメータチェック処理部1にお
いては、受け取ったパラメータA1の値をチェックし、
図2に示すように、 '1’であれば '1’を、 '2’で
あれば '2’を、 '3’であれば '3’を、それぞれ配
列P_FLGの第1要素P_FLG(1)にセットし、
'1’, '2’, '3’以外の値であればパラメータエ
ラーとする。
Then, the parameter check processing unit 1 checks the value of the received parameter A1,
As shown in FIG. 2, '1' is '1', '2' is '2', '3' is '3', and the first element P_FLG (1) of the array P_FLG, respectively. ),
Parameter values other than "1", "2", and "3" are treated as parameter errors.

【0044】また、受け取ったパラメータA2,A3を
チェックし、図3に示すように、パラメータA2が '
1’でパラメータA3がNOT NULLであれば '
1’を、パラメータA2が '2’でパラメータA3がN
OT NULLであれば '2’を、それぞれ配列P_F
LGの第2要素P_FLG(2)にセットし、それ以外
の場合はパラメータエラーとする。
Also, the received parameters A2 and A3 are checked, and as shown in FIG.
If 1 and the parameter A3 is NOT NULL, then
1 ', parameter A2 is'2' and parameter A3 is N
If it is OT NULL, '2' is set in the array P_F.
It is set to the second element P_FLG (2) of LG, and otherwise, it is regarded as a parameter error.

【0045】更に、受け取ったパラメータA4をチェッ
クし、図4に示すように、パラメータA4がNULLで
あれば '1’を、それ以外であれば '2’を、それぞれ
配列P_FLGの第3要素P_FLG(3)にセットす
る。
Further, the received parameter A4 is checked, and as shown in FIG. 4, if the parameter A4 is NULL, '1' is set, otherwise, '2' is set, and the third element P_FLG of the array P_FLG is set. Set to (3).

【0046】以上のような処理を行うことにより、図5
に示すような配列P_FLGの全要素の並びとその内容
とによってパラメータの組み合わせパターンが決定され
る。
By performing the above processing, FIG.
The combination pattern of parameters is determined by the arrangement of all the elements of the array P_FLG as shown in FIG.

【0047】図6は共通インタフェースY中のパラメー
タチェック処理部1の具体的なステートメント構成の例
を示しており、図2乃至図5を参照して説明した上述の
例に対応している。なお、図8で説明した従来構成と異
なり、各CASE型中にはプログラムに処理を依頼する
ステートメントは入っていない。
FIG. 6 shows an example of a specific statement configuration of the parameter check processing unit 1 in the common interface Y, and corresponds to the above-mentioned example described with reference to FIGS. 2 to 5. Unlike the conventional configuration described with reference to FIG. 8, each CASE type does not include a statement for requesting processing to the program.

【0048】図6に示すように、例えばプログラムX1
からパラメータA1,A2,A3,A4を指定して呼び
出されると、共通インタフェースYのパラメータチェッ
ク処理部1は、先ず、パラメータA1に関するCASE
型によりパラメータA1の値が '1’, '2’, '
3’,それ以外の値の何れであるかを判定し(60
0)、'1’であれば '1’を、 '2’であれば '2’
を、 '3’であれば '3’を、それぞれ配列P_FLG
の第1要素P_FLG(1)にセットする(601,6
02,603)。また、それ以外の値であればパラメー
タエラーとする(604)。なお、パラメータエラーの
場合、エラー処理により処理依頼元へ制御が戻される。
As shown in FIG. 6, for example, the program X1
When the parameter check processing unit 1 of the common interface Y is called by specifying the parameters A1, A2, A3, A4 from the
Depending on the type, the value of parameter A1 is "1", "2", "
3'or other value is determined (60
0), '1' if '1', '2' if '2'
, And if it is '3', then '3' is assigned to the array P_FLG.
Set to the first element P_FLG (1) of (601, 6
02,603). If the value is any other value, a parameter error is determined (604). In the case of a parameter error, control is returned to the processing request source by error processing.

【0049】次に、パラメータA2に関するCASE型
によりパラメータA2の値が '1’, '2’,それ以外
の値の何れであるかを判定し(605)、 '1’であれ
ば更にパラメータA3の値がNULLか否かを判定し
(606)、NULLであればパラメータエラー(60
7)、NOT NULLであれば第2要素P_FLG
(2)に '1’をセットする(608)。また、パラメ
ータA2が '2’であれば更にパラメータA3の値がN
ULLか否かを判定し(609)、NULLであればパ
ラメータエラー(610)、NOT NULLであれば
第2要素P_FLG(2)に '2’をセットする(61
1)。更に、パラメータA2が '1’, '2’以外の値
であればパラメータエラーとする(612)。
Next, it is judged whether the value of the parameter A2 is "1", "2" or any other value based on the CASE type relating to the parameter A2 (605). If the value is "1", the parameter A3 is further added. Is judged to be NULL (606), and if it is NULL, a parameter error (60
7), if NOT NULL, the second element P_FLG
Set '1' to (2) (608). If the parameter A2 is '2', the value of the parameter A3 is N
It is determined whether or not it is ULL (609), if it is NULL, a parameter error (610), and if NOT NULL, the second element P_FLG (2) is set to '2' (61).
1). Furthermore, if the parameter A2 is a value other than "1" or "2", a parameter error is determined (612).

【0050】ここで、パラメータA2に関するCASE
型の中にパラメータA3のCASE型を入れたのは、パ
ラメータA2とパラメータA3の間に存在する上述した
第1の従属関係をチェックするためである。
Here, CASE regarding the parameter A2
The CASE type of the parameter A3 is included in the type in order to check the above-described first dependency existing between the parameters A2 and A3.

【0051】次に、パラメータA4に関するCASE型
によりパラメータA4の値がNULLか否かをチェック
し(613)、NULLであれば '1’を、それ以外で
あれば '2’を、それぞれ第3要素P_FLG(3)に
セットする(614,615)。
Next, it is checked whether or not the value of the parameter A4 is NULL by the CASE type relating to the parameter A4 (613). If NULL, '1' is set, otherwise '2' is set. It is set in the element P_FLG (3) (614, 615).

【0052】以上のようにして、パラメータチェック処
理部1でパラメータの組み合わせパターンが決定される
と、次にプログラム特定処理部2による処理が行われ
る。
When the parameter check processing unit 1 determines the parameter combination pattern as described above, the program specifying processing unit 2 then performs the processing.

【0053】プログラム特定処理部2は、パラメータチ
ェック処理部1で特定されたパラメータの組み合わせパ
ターンを、処理依頼先の各プログラム,各指定パラメー
タに対応して予め設定されたパラメータパターンと比較
し、パターンの一致するプログラムに対しパラメータを
指定して処理を実際に依頼する。また、パラメータチェ
ック処理部1で特定された組み合わせパターンが予め設
定されたパラメータパターンの何れとも一致しない場合
はエラー処理を行い、制御を処理依頼元へ返す。
The program specifying processing unit 2 compares the combination pattern of parameters specified by the parameter check processing unit 1 with a parameter pattern preset corresponding to each program of the processing request destination and each designated parameter, and the pattern Actually request the process by specifying the parameters for the matching program. If the combination pattern specified by the parameter check processing unit 1 does not match any of the preset parameter patterns, error processing is performed and control is returned to the processing request source.

【0054】図7はプログラム特定処理部2の具体的な
ステートメント構成の例を示しており、図2乃至図5を
参照して説明した上述の例に対応している。
FIG. 7 shows an example of a concrete statement structure of the program identification processing section 2, and corresponds to the above-mentioned example described with reference to FIGS. 2 to 5.

【0055】図7に示すように、例えばプログラムX1
からパラメータA1,A2,A3,A4を指定して共通
インタフェースYが呼び出され、パラメータチェック処
理部1で上述した処理が行われ、配列P_FLGの各要
素の値が決定されると、プログラム特定処理部2は、配
列P_FLGの値と処理依頼先のプログラムに対応する
パラメータパターン( '111’, '112’,…, '
322’)とをCASE型で比較し(700)、その結
果に応じて以下の処理を行う。
As shown in FIG. 7, for example, the program X1
When the common interface Y is called by specifying the parameters A1, A2, A3, A4, the above-described processing is performed by the parameter check processing unit 1, and the value of each element of the array P_FLG is determined, the program specifying processing unit 2 is a parameter pattern ('111', '112', ..., ') corresponding to the value of the array P_FLG and the program of the processing request destination.
322 ') is compared with the CASE type (700), and the following processing is performed according to the result.

【0056】配列P_FLG= '111’のとき、パラ
メータB1を指定してプログラムZ1に処理を依頼する
(701)。
When the array P_FLG = '111', the parameter B1 is specified and the processing is requested to the program Z1 (701).

【0057】配列P_FLG= '112’のとき、パラ
メータB2を指定してプログラムZ1に処理を依頼する
(702)
When the array P_FLG = '112', the parameter B2 is designated and the processing is requested to the program Z1 (702).

【0058】配列P_FLG= '211’のとき、パラ
メータB3を指定してプログラムZ1に処理を依頼する
(703)。
When the array P_FLG = '211', the parameter B3 is specified and the processing is requested to the program Z1 (703).

【0059】配列P_FLG= '212’のとき、パラ
メータB4を指定してプログラムZ1に処理を依頼する
(704)。
When the array P_FLG = '212', the parameter B4 is specified and the processing is requested to the program Z1 (704).

【0060】配列P_FLG= '311’或いは '31
2’のとき、パラメータB5を指定してプログラムZ1
に処理を依頼する(705)。このように同じプログラ
ムを同じパラメータで呼び出すときに、処理依頼ステー
トメントを1つにすれば、コーディング量を更に削減す
ることができる。
Array P_FLG = '311' or '31
When it is 2 ', program Z1 is specified by specifying parameter B5.
Request processing (705). In this way, when calling the same program with the same parameters, if the number of processing request statements is one, the coding amount can be further reduced.

【0061】配列P_FLG= '321’のとき、パラ
メータD1を指定してプログラムZ2に処理を依頼する
(706)。
When the array P_FLG = `321`, the parameter D1 is designated and the processing is requested to the program Z2 (706).

【0062】配列P_FLG= '322’のとき、パラ
メータD2を指定してプログラムZ2に処理を依頼する
(707)。
When the array P_FLG = '322', the parameter D2 is specified and the processing is requested to the program Z2 (707).

【0063】配列P_FLGが上記以外の値のときパラ
メータエラーとする(708)。この結果、パラメータ
チェック処理部1で特定された '121’, '12
2’, '221’, '222’という組み合わせパター
ンについては、パラメータエラーとして処理されること
になる。これは、これらの組み合わせパターンは上述し
た第2の従属関係を満足しておらず、従ってそのような
パターンと一致するパラメータパターンが予め設定され
ていないことによる。
When the array P_FLG has a value other than the above, a parameter error is determined (708). As a result, '121' and '12 specified by the parameter check processing unit 1
The combination patterns of 2 ',' 221 ', and' 222 'are processed as parameter errors. This is because these combination patterns do not satisfy the above-described second subordination relationship, and therefore, the parameter patterns that match such patterns are not preset.

【0064】[0064]

【発明の効果】以上説明したように、本発明は、個々の
パラメータに許容値があり且つ或るパラメータが或る値
になるときは別の或るパラメータは或る値でなければな
らないといったパラメータ間の従属関係が存在する場
合、従来のように構造化プログラミングの手法に則り、
許されるパラメータの全組み合わせをチェックするので
はなく、許容値だけをチェックして先ず許容値違反を検
出し、従属関係違反は特定されたパラメータの組み合わ
せパターンを予め設定されているパラメータパターン
(これは従属関係をも考慮して事前に設定されている)
と比較する段階で検出するようにしたので、複数プログ
ラム間の共通インタフェースのコーディング量を従来に
比べ大幅に削減することができる効果がある。
As described above, according to the present invention, each parameter has an allowable value, and when a certain parameter has a certain value, another certain parameter must have a certain value. When there is a subordination relationship between them, according to the conventional method of structured programming,
Rather than checking all allowed parameter combinations, only allowed values are checked to detect allowed value violations first, and dependency violations are identified by a preset parameter pattern (which is (It is preset in consideration of subordination)
Since the detection is performed at the stage of comparison with the above, there is an effect that the coding amount of the common interface between a plurality of programs can be significantly reduced as compared with the conventional method.

【0065】また、許容値チェックに関するステートメ
ントとプログラムへの処理依頼ステートメントとが共通
インタフェース機構内で混在することがなくなり、特に
プログラムへの処理依頼がプログラム特定処理部におい
て一括して行われること、および、同種の処理依頼ステ
ートメントの重複を避けることができることから、コー
ディング量の削減と相俟って共通インタフェースのデバ
ッグおよび保守が容易になる効果がある。
Further, the statement regarding the allowable value check and the processing request statement to the program are not mixed in the common interface mechanism, and in particular, the processing request to the program is collectively made in the program specific processing section, and Since it is possible to avoid duplication of processing request statements of the same type, there is an effect that debugging and maintenance of the common interface are facilitated in combination with reduction of coding amount.

【図面の簡単な説明】[Brief description of drawings]

【図1】本発明の一実施例の構成図である。FIG. 1 is a configuration diagram of an embodiment of the present invention.

【図2】パラメータA1の許容値と組み合わせパターン
を保持する配列P_FLGの第1要素P_FLG(1)
への設定値の説明図である。
FIG. 2 is a first element P_FLG (1) of an array P_FLG holding an allowable value of a parameter A1 and a combination pattern.
FIG. 6 is an explanatory diagram of setting values for the.

【図3】パラメータA2,A3の許容値と組み合わせパ
ターンを保持する配列P_FLGの第2要素P_FLG
(2)への設定値の説明図である。
FIG. 3 is a second element P_FLG of an array P_FLG that holds allowable values of parameters A2 and A3 and a combination pattern.
It is explanatory drawing of the setting value to (2).

【図4】パラメータA4の許容値と組み合わせパターン
を保持する配列P_FLGの第3要素P_FLG(3)
への設定値の説明図である。
FIG. 4 is a third element P_FLG (3) of an array P_FLG holding an allowable value of a parameter A4 and a combination pattern.
FIG. 6 is an explanatory diagram of setting values for the.

【図5】パラメータの組み合わせパターンを保持する配
列P_FLGの説明図である。
FIG. 5 is an explanatory diagram of an array P_FLG that holds a combination pattern of parameters.

【図6】共通インタフェースY中のパラメータチェック
処理部1の具体的なステートメント構成の例を示す図で
ある。
6 is a diagram showing an example of a specific statement configuration of a parameter check processing unit 1 in a common interface Y. FIG.

【図7】プログラム特定処理部2の具体的なステートメ
ント構成の例を示す図である。
FIG. 7 is a diagram showing an example of a specific statement configuration of the program identification processing unit 2.

【図8】従来の共通インタフェースのステートメント構
成を示す図である。
FIG. 8 is a diagram showing a statement structure of a conventional common interface.

【符号の説明】[Explanation of symbols]

X1,X2…処理依頼元のプログラム Y…共通インタフェース Z1,Z2…処理依頼先のプログラム 1…パラメータチェック処理部 2…プログラム特定処理部 X1, X2 ... Processing request source program Y ... Common interface Z1, Z2 ... Processing request destination program 1 ... Parameter check processing unit 2 ... Program specifying processing unit

Claims (2)

【特許請求の範囲】[Claims] 【請求項1】 処理依頼元プログラムから指定された複
数のパラメータの内容に基づき該当するプログラムに対
して所望のパラメータを指定して処理を依頼する複数プ
ログラム間の共通インタフェース方法において、 指定された個々のパラメータの許容値をチェックし、許
容値を満たさないパラメータが指定されたときにはエラ
ー処理を行い、許容値を満たすときにはパラメータの組
み合わせパターンを特定し、 次に、この特定された組み合わせパターンを予め設定さ
れたパラメータパターンと比較し、一致するパラメータ
パターンが存在しないときはエラー処理を行い、一致す
るパラメータパターンが存在するときはその一致したパ
ラメータパターンに対応して予め設定されたステートメ
ントに基づき処理を依頼すべきプログラムおよび指定す
るパラメータを特定し実際に処理を依頼することを特徴
とする複数プログラム間の共通インタフェース方法。
1. A common interface method between a plurality of programs for requesting processing by designating desired parameters to a corresponding program based on the contents of a plurality of parameters designated by a processing request source program, Check the allowable value of the parameter, perform error processing when the parameter that does not meet the allowable value is specified, specify the combination pattern of the parameter when the allowable value is satisfied, and then set the specified combination pattern in advance. If the matching parameter pattern does not exist, the error processing is performed.If the matching parameter pattern exists, the processing is requested based on the statement set in advance corresponding to the matching parameter pattern. Programs and fingers to do Common interface method between the plurality program characterized by requesting a specific actual processing of the parameters.
【請求項2】 処理依頼元プログラムから受け取った複
数のパラメータの内容に基づいて該当するプログラムに
対して所望のパラメータを指定して処理を依頼する複数
プログラム間の共通インタフェース機構において、 受け取った個々のパラメータの許容値をチェックし、満
足しないときはエラー処理を行い、満足するときはパラ
メータの組み合わせパターンを特定するパラメータチェ
ック処理部と、 該パラメータチェック処理部で特定された組み合わせパ
ターンを予め設定されたパラメータパターンと比較し、
一致するパラメータパターンが存在しないときはエラー
処理を行い、一致するパラメータパターンが存在すると
きはその一致したパラメータパターンに対応して予め設
定されたステートメントに基づき処理を依頼すべきプロ
グラムおよび指定するパラメータを特定し実際に処理を
依頼するプログラム特定処理部とを備えることを特徴と
する複数プログラム間の共通インタフェース機構。
2. A common interface mechanism between a plurality of programs for requesting processing by designating desired parameters to a corresponding program based on the contents of a plurality of parameters received from a processing request source program, A parameter check processing unit that checks the parameter allowable value and performs error processing when not satisfied, and specifies a parameter combination pattern when satisfied, and a combination pattern specified by the parameter check processing unit are preset. Compare with the parameter pattern,
If a matching parameter pattern does not exist, error processing is performed.If a matching parameter pattern exists, a program to be requested for processing and a specified parameter are specified based on the preset statement corresponding to the matching parameter pattern. A common interface mechanism between a plurality of programs, characterized by comprising a program specification processing unit for specifying and actually requesting processing.
JP36158991A 1991-12-26 1991-12-26 Method and mechanism for common interface between plural programs Pending JPH05181657A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP36158991A JPH05181657A (en) 1991-12-26 1991-12-26 Method and mechanism for common interface between plural programs

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP36158991A JPH05181657A (en) 1991-12-26 1991-12-26 Method and mechanism for common interface between plural programs

Publications (1)

Publication Number Publication Date
JPH05181657A true JPH05181657A (en) 1993-07-23

Family

ID=18474194

Family Applications (1)

Application Number Title Priority Date Filing Date
JP36158991A Pending JPH05181657A (en) 1991-12-26 1991-12-26 Method and mechanism for common interface between plural programs

Country Status (1)

Country Link
JP (1) JPH05181657A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP2420936A1 (en) 2010-08-20 2012-02-22 Hitachi, Ltd. Protocol conversion Communication Device

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP2420936A1 (en) 2010-08-20 2012-02-22 Hitachi, Ltd. Protocol conversion Communication Device
US8693481B2 (en) 2010-08-20 2014-04-08 Hitachi, Ltd. Communication device

Similar Documents

Publication Publication Date Title
US6675191B1 (en) Method of starting execution of threads simultaneously at a plurality of processors and device therefor
US5893157A (en) Blocking symbol control in a computer system to serialize accessing a data resource by simultaneous processor requests
JPH0290330A (en) Program constitution system
US7689749B2 (en) Interrupt control function adapted to control the execution of interrupt requests of differing criticality
DE69114321T2 (en) Interrupt control device suitable for performing the interrupt interleaving function.
JPH05181657A (en) Method and mechanism for common interface between plural programs
JPH08297581A (en) Interruption management system of real-time operating system
DE102012204644B4 (en) CONTROL DEVICE
CN111581041A (en) Method and equipment for testing performance of magnetic disk
JPS62251926A (en) Control system for whether program is executable or not
JPH05113887A (en) Computer system
US5889531A (en) Graphic processing apparatus
JPH04211839A (en) Interruption controller
JPH03240831A (en) Interruption processing system
JPH04270441A (en) Data processor
JPH0440532A (en) Real time processor
JPS5998256A (en) Interruption controller
KR100234982B1 (en) Automatic execution-order decision method for function blocks in a logic diagram
JPS62233844A (en) Interruption control system
JPH0194444A (en) Detector for execution level exception
JPH0520269A (en) Exclusive control system
JPH086805A (en) Multiprocessor system
JPH06332720A (en) Signal control method
JP3956767B2 (en) Information processing apparatus and interrupt control method
JPS63239537A (en) Task control method