summaryrefslogtreecommitdiff
path: root/TAO/examples/Advanced/ch_3/client.cpp
blob: cfeffd0821537a04520e202c0ed9f374587f0311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// $Id$
// ============================================================================
//
// = LIBRARY
//    TAO/examples/Advanced/ch_3
//
// = FILENAME
//    client.cpp
//
// = AUTHORS
//   Source code used in TAO has been modified and adapted from the code
//   provided in the book, "Advanced CORBA Programming with C++" by Michi
//   Henning and Steve Vinoski. Copyright 1999. Addison-Wesley, Reading,
//   MA.
//
//   Modified for TAO by Mike Moran <mm4@cs.wustl.edu>
//
// ============================================================================


#include "timeC.h"
#include <iomanip.h>
//#include <iostream.h>

int
main(int argc, char * argv[])
{
    try {
        // Check arguments
        if (argc != 2) {
            cerr << "Usage: client IOR_string" << endl;
            throw 0;
        }

        // Initialize orb
        CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);

        // Destringify argv[1]
        CORBA::Object_var obj = orb->string_to_object(argv[1]);
        if (CORBA::is_nil(obj.in())) {
            cerr << "Nil Time reference" << endl;
            throw 0;
        }

        // Narrow
        Time_var tm = Time::_narrow(obj.in());
        if (CORBA::is_nil(tm.in())) {
            cerr << "Argument is not a Time reference" << endl;
            throw 0;
        }

        // Get time
        TimeOfDay tod = tm->get_gmt();
        cout << "Time in Greenwich is "
             << setw(2) << setfill('0') << tod.hour << ":"
             << setw(2) << setfill('0') << tod.minute << ":"
             << setw(2) << setfill('0') << tod.second << endl;
    }
    catch (const CORBA::Exception &) {
        cerr << "Uncaught CORBA exception" << endl;
        return 1;
    }
    catch (...) {
        return 1;
    }
    return 0;
}