You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by nm...@apache.org on 2006/11/14 00:07:41 UTC

svn commit: r474557 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/util/Character.h

Author: nmittler
Date: Mon Nov 13 15:07:40 2006
New Revision: 474557

URL: http://svn.apache.org/viewvc?view=rev&rev=474557
Log:
Refactored the socket reading code to used blocking sockets

Added:
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/util/Character.h   (with props)

Added: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/util/Character.h
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/util/Character.h?view=auto&rev=474557
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/util/Character.h (added)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/util/Character.h Mon Nov 13 15:07:40 2006
@@ -0,0 +1,89 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef _ACTIVEMQ_UTIL_CHARACTER_H_
+#define _ACTIVEMQ_UTIL_CHARACTER_H_
+
+namespace activemq{
+namespace util{
+  
+    class Character{
+    
+    public:
+    
+        /**
+         * Indicates whether or not the given character is considered
+         * whitespace.
+         */
+        static bool isWhitespace( char c ){
+            switch ( c ) 
+            {
+                case '\n':
+                case '\t':
+                case '\r':
+                case '\f':
+                case ' ':                
+                    return true;
+            } 
+           
+            return false;
+        }
+        
+        /**
+         * Indicates whether or not the given character is
+         * a digit.
+         */
+        static bool isDigit( char c ){
+            return c >= '0' && c <= '9';
+        }
+        
+        /**
+         * Indicates whether or not the given character is
+         * a lower case character.
+         */
+        static bool isLowerCase( char c ){
+            return c >= 'a' && c <= 'z';
+        }
+        
+        /**
+         * Indicates whether or not the given character is
+         * a upper case character.
+         */
+        static bool isUpperCase( char c ){
+            return c >= 'A' && c <= 'Z';
+        }
+        
+        /**
+         * Indicates whether or not the given character is
+         * a letter.
+         */  
+        static bool isLetter( char c ){
+            return isUpperCase(c) || isLowerCase(c);
+        }
+        
+        /**
+         * Indicates whether or not the given character is
+         * either a letter or a digit.
+         */
+        static bool isLetterOrDigit( char c ){
+            return isLetter(c) || isDigit(c);
+        }
+    };
+    
+}}
+
+#endif /*_ACTIVEMQ_UTIL_CHARACTER_H_*/

Propchange: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/util/Character.h
------------------------------------------------------------------------------
    svn:eol-style = native