Github user jpeach commented on a diff in the pull request:
https://github.com/apache/trafficserver/pull/736#discussion_r68464100
--- Diff: lib/ts/ink_uuid.h ---
@@ -0,0 +1,122 @@
+/** @file
+ *
+ * Basic implementation of RFC 4122, see
+ * https://www.ietf.org/rfc/rfc4122.txt
+ *
+ * @section license License
+ *
+ * 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.
+ */
+#include "ts/apidefs.h"
+#include "ts/ink_memory.h"
+
+// This is the C++ portions of things, which will need to get wrapped in
C-helper APIs.
+class ATSUuid
+{
+public:
+ // Constructors
+ ATSUuid() : _version(TS_UUID_UNDEFINED), _alive(true) {}
+ ~ATSUuid() { _alive = false; }
+ ATSUuid &operator=(const ATSUuid other);
+
+ // Initialize the UUID from a string
+ bool parseString(const char *str);
+ // Initialize a UUID using appropriate logic for the version specified.
This can be done multiple times.
+ void initialize(TSUuidVersion v);
+
+ // This returns the internal string representation of the UUID, do not
mess with this string. There is
+ // no transfer of ownership here. See toString() if you wish to make a
copy.
+ const char *
+ getString() const
--- End diff --
JFWIW, consider ``c_str()`` as a STL-type name for this :)
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---