00001 #ifndef FQNAME_HXX 00002 #define FQNAME_HXX 00003 00004 /************************************************************************** 00005 * 00006 * Copyright (C) 2008, Johns Hopkins University. 00007 * All rights reserved. 00008 * 00009 * Redistribution and use in source and binary forms, with or 00010 * without modification, are permitted provided that the following 00011 * conditions are met: 00012 * 00013 * - Redistributions of source code must contain the above 00014 * copyright notice, this list of conditions, and the following 00015 * disclaimer. 00016 * 00017 * - Redistributions in binary form must reproduce the above 00018 * copyright notice, this list of conditions, and the following 00019 * disclaimer in the documentation and/or other materials 00020 * provided with the distribution. 00021 * 00022 * - Neither the names of the copyright holders nor the names of any 00023 * of any contributors may be used to endorse or promote products 00024 * derived from this software without specific prior written 00025 * permission. 00026 * 00027 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00028 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00029 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 00030 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 00031 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00032 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00033 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00034 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 00035 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00036 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 00037 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00038 * 00039 **************************************************************************/ 00040 00041 #include <stdlib.h> 00042 #include <dirent.h> 00043 #include <fstream> 00044 #include <iostream> 00045 #include <string> 00046 #include <set> 00047 00048 #define FQ_NOIF "" 00049 00050 struct FQName { 00051 std::string iface; 00052 std::string ident; 00053 00057 static const char sep; 00063 static const char LocalBindingSep; 00064 00065 bool operator <(const FQName&) const; 00066 bool operator >(const FQName&) const; 00067 bool operator ==(const FQName&) const; 00068 FQName& operator =(const FQName&); 00069 00070 bool operator !=(const FQName& _fqname) const 00071 { 00072 return !(*this == _fqname); 00073 } 00074 00075 bool isInitialized() 00076 { 00077 return (ident.size() != 0); 00078 } 00079 00080 FQName() 00081 { 00082 } 00083 00085 FQName(const FQName& that) 00086 { 00087 iface = that.iface; 00088 ident = that.ident; 00089 } 00090 00092 FQName(const std::string& _iface, const std::string& _ident) 00093 { 00094 iface = _iface; 00095 ident = _ident; 00096 } 00097 00100 FQName(const std::string& nm); 00101 00102 std::string asString() const; 00103 00104 int operator<(FQName& rhs) 00105 { 00106 return asString() < rhs.asString(); 00107 } 00108 }; 00109 00110 typedef std::set<FQName, std::less<FQName> > FQNameSet; 00111 00112 inline 00113 std::ostream& operator<<(std::ostream& strm, const FQName& fqn) 00114 { 00115 strm << fqn.asString(); 00116 return strm; 00117 } 00118 00119 #endif /* FQNAME_HXX */
1.4.7