2

我现在正在研究分布式系统,所以...我必须学习 IDL 的东西。:D 我有这个要求:

在 IDL 中定义 - 一个结构体的帐户 - 一个帐户序列的帐户 - 具有一些帐户操作的客户接口: payIn (amount, accountId), - 如果成功则返回 true,否则返回 false getAccounts (name), - 返回一个序列帐户(属于该人) - 具有帐户操作的界面管理员: 创建一个新帐户删除一个帐户

这是我的 .idl 文件:

module AccountNaming
{
    struct Account
    {
        long id;
        double balance;
        string name;    
    };

    typedef sequence<Account> accounts;

    interface Customer
    {
        boolean payIn(in double amount, in long accountId);
        accounts getAccounts(in string name);
        string helloCust();
    };
    interface Administrator
    {
        void createAcc();
        void deleteAcc();
        string helloAdmin();
    };
};

我已经为 IDL 生成了所有的 POA、Helper、Holder 类。

在我的 Java 代码中,我有一个使用 IDL 代码的类:

import AccountNaming.*;
public class CustomerImpl extends CustomerPOA
{
   public String helloCust()
   {
      return "Hello, dear Customer! :) ";
   }

   @Override
   public boolean payIn(double amount, int accountId)
   {
      // how to get to the Customer's local variables ?
      super.Customer.setAmount... // or something like that, because this doesn't work... etc.
      return false;
   }

   @Override
   public Account[] getAccounts(String name)
   {
      // TODO Auto-generated method stub
      return null;
   }
}    

我知道 .idl 文件是正确的。“helloCust/admin”方法有效。我的问题是如何访问 Customer/Administrator 的变量,以便我可以将它们设置为payIn 、 getAccounts方法中的参数......

4

2 回答 2

3

你可以添加一个外观或工厂来允许你访问你的Customer/Administrator接口,所以在你的 IDL 中你还可以:

interface UserFactory 
{
   Customer getCustomer(String customerName);
   Administrator getAdministrator(String credentials); 
}

这个接口的实现会让你从数据库等中查找任何细节。

使用它,您可能不需要该name字段getAccounts()(除非它用于过滤),您可以执行以下操作:

Account[] accounts = getAccounts("not-needed-anymore");
for (Account account : accounts) {
   if (account.id == accountId) {
      account.balance += amount;
      break;
   }
}

这将更新您的Account数组信息,但您仍需要保留数据结构。

于 2012-11-04T15:30:30.033 回答
-1

感谢 Reimeus 的快速回答,但我想到了一个更简单的解决方案:

public boolean payIn(double amount, int accountNumber)
    {
        boolean success = false;
        for(int i = 0; i < accountList.length; i++)
        {
            if(accountList[i].accountNumber == accountNumber)
            {
                accountList[i].balance += amount;
                success = true;
            }
        }
        return success;
    }

    @Override
    public account[] getAccounts(String name)
    {
        account[] accounts;
        int numberOfAccounts = 0;
        int count = 0;
        for(int i = 0; i < accountList.length; i++)
        {
           if(accountList[i] != null)
            if(accountList[i].name.equalsIgnoreCase(name))
            {
                numberOfAccounts++;
            }
        }
        if(numberOfAccounts != 0)
        {
            accounts = new account[numberOfAccounts];
            for(int i = 0; i < accountList.length; i++)
            {
                if(accountList[i].name.equalsIgnoreCase(name))
                {
                    accounts[count] = accountList[i];
                    count++;
                }
            }
            return accounts;
        }
        else
        {
            return null;
        }

    }
于 2012-11-09T20:41:54.810 回答