-rw-r--r-- | test/idiscover.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/idiscover.cc b/test/idiscover.cc index 2abedc9..05cbcae 100644 --- a/test/idiscover.cc +++ b/test/idiscover.cc | |||
@@ -1,49 +1,50 @@ | |||
1 | #include <iostream> | 1 | #include <iostream> |
2 | #include <stdexcept> | 2 | #include <stdexcept> |
3 | #include <iterator> | 3 | #include <iterator> |
4 | #include <algorithm> | 4 | #include <algorithm> |
5 | using namespace std; | 5 | using namespace std; |
6 | #include <opkele/exception.h> | 6 | #include <opkele/exception.h> |
7 | #include <opkele/discovery.h> | 7 | #include <opkele/discovery.h> |
8 | 8 | ||
9 | template<typename _PDT> | 9 | template<typename _PDT> |
10 | ostream& operator<<(ostream& o,const opkele::xrd::priority_map<_PDT>& pm) { | 10 | ostream& operator<<(ostream& o,const opkele::xrd::priority_map<_PDT>& pm) { |
11 | for(typename opkele::xrd::priority_map<_PDT>::const_iterator i=pm.begin(); | 11 | for(typename opkele::xrd::priority_map<_PDT>::const_iterator i=pm.begin(); |
12 | i!=pm.end();++i) | 12 | i!=pm.end();++i) |
13 | o << ' ' << i->second << '[' << i->first << ']'; | 13 | o << ' ' << i->second << '[' << i->first << ']'; |
14 | return o; | 14 | return o; |
15 | } | 15 | } |
16 | 16 | ||
17 | ostream& operator<<(ostream& o,const opkele::xrd::service_t s) { | 17 | ostream& operator<<(ostream& o,const opkele::xrd::service_t s) { |
18 | o << "{" << endl | 18 | o << "{" << endl |
19 | << " Type: "; | 19 | << " Type: "; |
20 | copy(s.types.begin(),s.types.end(), | 20 | copy(s.types.begin(),s.types.end(), |
21 | ostream_iterator<string>(o," ")); | 21 | ostream_iterator<string>(o," ")); |
22 | o << endl | 22 | o << endl |
23 | << " URI: " << s.uris << endl | 23 | << " URI: " << s.uris << endl |
24 | << " LocalID: " << s.local_ids << endl; | 24 | << " LocalID: " << s.local_ids << endl; |
25 | o << "}"; | 25 | o << "}"; |
26 | } | 26 | } |
27 | 27 | ||
28 | int main(int argc,char **argv) { | 28 | int main(int argc,char **argv) { |
29 | try { | 29 | try { |
30 | if(argc<2) | 30 | if(argc<2) |
31 | throw opkele::exception(OPKELE_CP_ "Please, give me something to resolve"); | 31 | throw opkele::exception(OPKELE_CP_ "Please, give me something to resolve"); |
32 | for(int a=1;a<argc;++a) { | 32 | for(int a=1;a<argc;++a) { |
33 | opkele::idiscovery_t discovery(argv[a]); | 33 | opkele::idiscovery_t discovery(argv[a]); |
34 | clog | 34 | clog |
35 | << "===============================================================" << endl | 35 | << "===============================================================" << endl |
36 | << "User-supplied ID: " << argv[a] << endl | 36 | << "User-supplied ID: " << argv[a] << endl |
37 | << "Normalized ID: " << discovery.normalized_id << endl | 37 | << "Normalized ID: " << discovery.normalized_id << endl |
38 | << "Canonicalized ID: " << discovery.canonicalized_id << endl | 38 | << "Canonicalized ID: " << discovery.canonicalized_id << endl |
39 | << "The identity is " << (discovery.xri_identity?"":"not ") << "an i-name" << endl | ||
39 | << endl | 40 | << endl |
40 | << "CanonicalID: " << discovery.xrd.canonical_ids << endl | 41 | << "CanonicalID: " << discovery.xrd.canonical_ids << endl |
41 | << "LocalID: " << discovery.xrd.local_ids << endl | 42 | << "LocalID: " << discovery.xrd.local_ids << endl |
42 | << "Services: " << discovery.xrd.services << endl; | 43 | << "Services: " << discovery.xrd.services << endl; |
43 | } | 44 | } |
44 | }catch(exception& e) { | 45 | }catch(exception& e) { |
45 | cerr << "oops: " << e.what() << endl; | 46 | cerr << "oops: " << e.what() << endl; |
46 | _exit(1); | 47 | _exit(1); |
47 | } | 48 | } |
48 | _exit(0); | 49 | _exit(0); |
49 | } | 50 | } |