-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ToolPath and ToolPathSegment class
- Loading branch information
1 parent
235ecf8
commit 8c99c88
Showing
5 changed files
with
821 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,241 @@ | ||
/** | ||
* @file tool_path.h | ||
* @brief Common Tesseract Tool Path | ||
* | ||
* @author Levi Armstrong | ||
* @date Nov 16, 2022 | ||
* @version TODO | ||
* @bug No known bugs | ||
* | ||
* @copyright Copyright (c) 2022, Levi Armstrong | ||
* | ||
* @par License | ||
* Software License Agreement (Apache License) | ||
* @par | ||
* Licensed 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 | ||
* @par | ||
* 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 TESSERACT_COMMON_TOOL_PATH_H | ||
#define TESSERACT_COMMON_TOOL_PATH_H | ||
|
||
#include <string> | ||
#include <tesseract_common/tool_path_segment.h> | ||
|
||
namespace tesseract_common | ||
{ | ||
class ToolPath | ||
{ | ||
public: | ||
EIGEN_MAKE_ALIGNED_OPERATOR_NEW | ||
|
||
ToolPath(std::string description = ""); | ||
virtual ~ToolPath() = default; | ||
|
||
/** @brief Get the uuid */ | ||
boost::uuids::uuid getUUID() const; | ||
|
||
/** @brief Regenerate uuid */ | ||
void regenerateUUID(); | ||
|
||
/** | ||
* @brief Get the parent uuid | ||
* @details This can be null | ||
*/ | ||
const boost::uuids::uuid& getParentUUID() const; | ||
|
||
/** | ||
* @brief Set the parent uuid | ||
* @details This can be used in cases were a segment is split during a filter process and want tracability. | ||
* @param uuid | ||
*/ | ||
void setParentUUID(const boost::uuids::uuid& uuid); | ||
|
||
/** @brief Set the tool path description */ | ||
void setDescription(const std::string& desc); | ||
|
||
/** @brief Get the tool path description */ | ||
const std::string& getDescription() const; | ||
|
||
/** | ||
* @brief Set a namespace for the tool path | ||
* @details This can be multiple namespace by separating by '::' for example 'main::left::place' | ||
* which will have it show up in the widget as a teared item in the tree view. | ||
* @param ns A namespace the tool path is associated with | ||
*/ | ||
void setNamespace(std::string ns); | ||
|
||
/** | ||
* @brief Get the namespace for the tool path | ||
* @return The namespace | ||
*/ | ||
const std::string& getNamespace() const; | ||
|
||
bool operator==(const ToolPath& rhs) const; | ||
bool operator!=(const ToolPath& rhs) const; | ||
|
||
/////////////////////////// | ||
// C++ container support // | ||
/////////////////////////// | ||
/** pointer */ | ||
using pointer = typename AlignedVector<ToolPathSegment>::pointer; | ||
/** const_pointer */ | ||
using const_pointer = typename AlignedVector<ToolPathSegment>::const_pointer; | ||
/** reference */ | ||
using reference = typename AlignedVector<ToolPathSegment>::reference; | ||
/** const_reference */ | ||
using const_reference = typename AlignedVector<ToolPathSegment>::const_reference; | ||
/** size_type */ | ||
using size_type = typename AlignedVector<ToolPathSegment>::size_type; | ||
/** difference_type */ | ||
using difference_type = typename AlignedVector<ToolPathSegment>::difference_type; | ||
/** iterator */ | ||
using iterator = typename AlignedVector<ToolPathSegment>::iterator; | ||
/** const_iterator */ | ||
using const_iterator = typename AlignedVector<ToolPathSegment>::const_iterator; | ||
/** reverse_iterator */ | ||
using reverse_iterator = typename AlignedVector<ToolPathSegment>::reverse_iterator; | ||
/** const_reverse_iterator */ | ||
using const_reverse_iterator = typename AlignedVector<ToolPathSegment>::const_reverse_iterator; | ||
|
||
/////////////// | ||
// Iterators // | ||
/////////////// | ||
/** @brief returns an iterator to the beginning */ | ||
iterator begin(); | ||
/** @brief returns an iterator to the beginning */ | ||
const_iterator begin() const; | ||
/** @brief returns an iterator to the end */ | ||
iterator end(); | ||
/** @brief returns an iterator to the end */ | ||
const_iterator end() const; | ||
/** @brief returns a reverse iterator to the beginning */ | ||
reverse_iterator rbegin(); | ||
/** @brief returns a reverse iterator to the beginning */ | ||
const_reverse_iterator rbegin() const; | ||
/** @brief returns a reverse iterator to the end */ | ||
reverse_iterator rend(); | ||
/** @brief returns a reverse iterator to the end */ | ||
const_reverse_iterator rend() const; | ||
/** @brief returns an iterator to the beginning */ | ||
const_iterator cbegin() const; | ||
/** @brief returns an iterator to the end */ | ||
const_iterator cend() const; | ||
/** @brief returns a reverse iterator to the beginning */ | ||
const_reverse_iterator crbegin() const; | ||
/** @brief returns a reverse iterator to the end */ | ||
const_reverse_iterator crend() const; | ||
|
||
////////////// | ||
// Capacity // | ||
////////////// | ||
/** @brief checks whether the container is empty */ | ||
bool empty() const; | ||
/** @brief returns the number of elements */ | ||
size_type size() const; | ||
/** @brief returns the maximum possible number of elements */ | ||
size_type max_size() const; | ||
/** @brief reserve number of elements */ | ||
void reserve(size_type n); | ||
/** @brief returns the number of elements that can be held in currently allocated storage */ | ||
size_type capacity() const; | ||
/** @brief reduces memory usage by freeing unused memory */ | ||
void shrink_to_fit(); | ||
|
||
//////////////////// | ||
// Element Access // | ||
//////////////////// | ||
/** @brief access the first element */ | ||
reference front(); | ||
/** @brief access the first element */ | ||
const_reference front() const; | ||
/** @brief access the last element */ | ||
reference back(); | ||
/** @brief access the last element */ | ||
const_reference back() const; | ||
/** @brief access specified element with bounds checking */ | ||
reference at(size_type n); | ||
/** @brief access specified element with bounds checking */ | ||
const_reference at(size_type n) const; | ||
/** @brief direct access to the underlying array */ | ||
pointer data(); | ||
/** @brief direct access to the underlying array */ | ||
const_pointer data() const; | ||
/** @brief access specified element */ | ||
reference operator[](size_type pos); | ||
/** @brief access specified element */ | ||
const_reference operator[](size_type pos) const; | ||
|
||
/////////////// | ||
// Modifiers // | ||
/////////////// | ||
/** @brief clears the contents */ | ||
void clear(); | ||
|
||
/** @brief inserts element */ | ||
iterator insert(const_iterator p, const ToolPathSegment& x); | ||
iterator insert(const_iterator p, ToolPathSegment&& x); | ||
iterator insert(const_iterator p, std::initializer_list<ToolPathSegment> l); | ||
template <class InputIt> | ||
void insert(const_iterator pos, InputIt first, InputIt last) | ||
{ | ||
container_.insert(pos, first, last); | ||
} | ||
|
||
/** @brief constructs element in-place */ | ||
template <class... Args> | ||
iterator emplace(const_iterator pos, Args&&... args); | ||
|
||
/** @brief erases element */ | ||
iterator erase(const_iterator p); | ||
iterator erase(const_iterator first, const_iterator last); | ||
|
||
/** Append element to container */ | ||
void push_back(const ToolPathSegment& x); | ||
void push_back(const ToolPathSegment&& x); | ||
|
||
/** @brief constructs an element in-place at the end */ | ||
template <typename... Args> | ||
#if __cplusplus > 201402L | ||
reference emplace_back(Args&&... args); | ||
#else | ||
void emplace_back(Args&&... args); | ||
#endif | ||
|
||
/** @brief removes the last element */ | ||
void pop_back(); | ||
|
||
/** @brief swaps the contents */ | ||
void swap(AlignedVector<ToolPathSegment>& other); | ||
|
||
protected: | ||
/** @brief The uuid */ | ||
boost::uuids::uuid uuid_; | ||
|
||
/** @brief The parent uuid */ | ||
boost::uuids::uuid parent_uuid_; | ||
|
||
/** @brief The description */ | ||
std::string description_; | ||
|
||
/** @brief The container */ | ||
AlignedVector<ToolPathSegment> container_; | ||
|
||
/** @brief The namespace associated with the tool path */ | ||
std::string ns_{ "general" }; | ||
|
||
friend class boost::serialization::access; | ||
template <class Archive> | ||
void serialize(Archive& ar, const unsigned int version); // NOLINT | ||
}; | ||
|
||
} // namespace tesseract_common | ||
|
||
#endif // TESSERACT_COMMON_TOOL_PATH_H |
Oops, something went wrong.