/usr/include/polymake/perl/Object.h is in libpolymake-dev-common 3.2r2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 | /* Copyright (c) 1997-2018
Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Berlin, Germany)
http://www.polymake.org
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version: http://www.gnu.org/licenses/gpl.txt.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
--------------------------------------------------------------------------------
*/
#ifndef POLYMAKE_PERL_OBJECT_H
#define POLYMAKE_PERL_OBJECT_H
#include <sstream>
namespace pm { namespace perl {
enum property_type { _done, _normal, temporary, attachment };
// the PerlInterpreter might be unused depending on the perl configuration
// but we do not want to check all the perl stuff here
#if defined(__clang__) && !defined(__APPLE__) && __clang_major__ == 6
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-private-field"
#endif
class PropertyOut {
private:
Value val;
PerlInterpreter* pi;
property_type t;
void finish();
void cancel();
protected:
explicit PropertyOut(PerlInterpreter* pi_arg, property_type t_arg)
: val(t_arg==_normal ? value_read_only :
t_arg==temporary ? value_allow_non_persistent | value_read_only : value_mutable)
, pi(pi_arg)
, t(t_arg) {}
public:
template <typename Source>
void operator<< (Source&& x)
{
val << std::forward<Source>(x);
finish();
}
~PropertyOut()
{
if (__builtin_expect(t != _done, 0)) cancel();
}
friend class Object;
};
#if defined(__clang__) && !defined(__APPLE__) && __clang_major__ == 6
#pragma clang diagnostic pop
#endif
class ObjectType {
public:
explicit ObjectType(const AnyString& type_name);
ObjectType() : obj_ref(nullptr) {}
ObjectType(const ObjectType& o);
~ObjectType();
ObjectType(ObjectType&& o) noexcept
: obj_ref(o.obj_ref)
{
o.obj_ref=nullptr;
}
bool valid() const { return obj_ref; }
// construct a parameterized object type
template <typename TypeList>
static ObjectType construct(const AnyString& type_name)
{
Stack stack(true, 1+TypeListUtils<TypeList>::type_cnt);
if (!TypeListUtils<TypeList>::push_types(stack)) {
stack.cancel();
throw exception("one of the type arguments is not declared in the rules");
}
return ObjectType(construct_parameterized_type(type_name));
}
ObjectType& operator= (const ObjectType& o);
ObjectType& operator= (ObjectType&& o) noexcept
{
std::swap(obj_ref, o.obj_ref);
return *this;
}
std::string name() const;
bool isa(const ObjectType& o) const;
bool isa(const AnyString& type_name) const;
bool operator== (const ObjectType& o) const;
bool operator!= (const ObjectType& o) const { return !operator==(o); }
protected:
static SV* construct_parameterized_type(const AnyString& type_name);
explicit ObjectType(SV* r)
: obj_ref(r) {}
SV* obj_ref;
friend class Value;
friend class Object;
friend class pm::Array<Object>;
};
class Object {
friend class Value; friend class Main;
friend class pm::Array<Object>;
protected:
SV* obj_ref;
explicit Object(SV* ref_arg)
: obj_ref(ref_arg) {}
public:
bool valid() const { return obj_ref; }
// default constructor creates an invalid object
Object() : obj_ref(nullptr) {}
// construct an empty object of the given type and with an optional name
explicit Object(const ObjectType& type, const AnyString& name=AnyString());
// construct an empty object of the type given as a string and with an optional name
explicit Object(const AnyString& type_name, const AnyString& name=AnyString())
: Object(ObjectType(type_name)) {}
// construct a copy of another object with possible property conversion
Object(const ObjectType& type, const Object& src);
Object(const AnyString& type_name, const Object& src)
: Object(ObjectType(type_name), src) {}
// construct an exact copy (up to temporary properties and local extensions)
Object copy() const;
// doesn't copy the Object, but merely creates a second reference to it!
Object(const Object& o);
Object(Object&& o) noexcept
: obj_ref(o.obj_ref)
{
o.obj_ref=nullptr;
}
~Object();
Object& operator= (const Object& o);
Object& operator= (Object&& o) noexcept
{
std::swap(obj_ref, o.obj_ref);
return *this;
}
// change the object type, possibly converting or discarding properties
Object& cast(const ObjectType& type);
Object& cast(const AnyString& type_name)
{
return cast(ObjectType(type_name));
}
std::string name() const;
void set_name(const std::string& name);
std::string description() const;
void set_description(const std::string& value, bool append=false);
template <bool append>
class description_ostream {
friend class Object;
protected:
mutable Object* obj;
mutable std::ostringstream content;
mutable PlainPrinter<> os;
description_ostream(Object* obj_arg) : obj(obj_arg), os(content) {}
public:
description_ostream(const description_ostream& o) : obj(o.obj), os(content) { o.obj=NULL; }
template <typename Source>
PlainPrinter<>& operator<< (const Source& x) const
{
return os << x;
}
~description_ostream() { if (obj) obj->set_description(content.str(), append); }
};
description_ostream<false> set_description() { return this; }
description_ostream<true> append_description() { return this; }
protected:
SV* give_impl(const AnyString& name) const;
SV* give_with_property_name_impl(const AnyString& name, std::string& given) const;
SV* lookup_impl(const AnyString& name) const;
SV* lookup_with_property_name_impl(const AnyString& name, std::string& given) const;
PerlInterpreter* take_impl(const AnyString& name) const;
SV* add_impl(const AnyString& name, SV* sub_obj, property_type t) const;
public:
template <typename... TOptions>
PropertyValue give(const AnyString& name, const TOptions&... options) const
{
return PropertyValue(give_impl(name), options...);
}
template <typename... TOptions>
PropertyValue give_with_property_name(const AnyString& name, std::string& given, const TOptions&... options) const
{
return PropertyValue(give_with_property_name_impl(name, given), options...);
}
template <typename... TOptions>
PropertyValue lookup(const AnyString& name, const TOptions&... options) const
{
return PropertyValue(lookup_impl(name), value_allow_undef, options...);
}
template <typename... TOptions>
PropertyValue lookup_with_property_name(const AnyString& name, std::string& given, const TOptions&... options) const
{
return PropertyValue(lookup_with_property_name_impl(name, given), value_allow_undef, options...);
}
Object lookup_multi(const AnyString& name, const std::string& subobj_name) const;
Object give_multi(const AnyString& name, const OptionSet& props, property_type t=_normal) const;
Object lookup_multi(const AnyString& name, const OptionSet& props) const;
pm::Array<Object> lookup_multi(const AnyString& name, all_selector) const;
bool exists(const AnyString& name) const;
PropertyOut take(const AnyString& name, property_type t=_normal)
{
return PropertyOut(take_impl(name), t);
}
Object add(const AnyString& name, const Object& sub_obj, property_type t=_normal)
{
return Object(add_impl(name, sub_obj.obj_ref, t));
}
Object add(const AnyString& name, property_type t=_normal)
{
return Object(add_impl(name, nullptr, t));
}
void remove(const AnyString& name);
void remove(const Object& sub_obj);
PropertyValue get_attachment(const AnyString& name) const;
PropertyOut attach(const AnyString& name)
{
return PropertyOut(take_impl(name), attachment);
}
void remove_attachment(const AnyString& name);
ObjectType type() const;
bool isa(const ObjectType& type) const;
bool isa(const AnyString& type_name) const;
static Object load(const std::string& filename);
void save(const std::string& filename) const;
Object parent() const;
template <typename... Args>
FunCall call_method(const AnyString& name, Args&&... args) const
{
return FunCall::call_method(name, obj_ref, std::forward<Args>(args)...);
}
template <typename... Args>
[[deprecated("CallPolymakeMethod macros are deprecated, please use call_method() instead")]]
FunCall call_method_deprecated(const AnyString& name, Args&&... args) const
{
return FunCall::call_method(name, obj_ref, std::forward<Args>(args)...);
}
class Schedule {
public:
Schedule() : obj_ref(nullptr) {}
~Schedule();
Schedule(const Schedule&);
Schedule& operator= (const Schedule&);
// swallow the result of call_method
Schedule(FunCall&&);
Schedule& operator= (FunCall&&);
bool valid() const { return obj_ref; }
ListResult list_new_properties() const;
void apply(Object& o) const;
protected:
SV* obj_ref;
friend class Object;
};
template <bool is_readonly>
class Array_element;
template <bool is_readonly>
class Array_element_factory;
};
template <bool is_readonly>
class Object::Array_element
: public Object {
public:
Array_element(Array_element&&) = default;
Array_element& operator= (const Object& o);
Array_element& operator= (const Array_element& o)
{
return operator=(static_cast<const Object&>(o));
}
private:
Array_element(SV* ref_arg, const ObjectType& type);
Array_element(const Array_element&) = delete;
const ObjectType& allowed_type;
friend class Object;
};
template <bool is_readonly>
class Object::Array_element_factory {
public:
typedef int argument_type;
typedef Array_element<is_readonly> result_type;
explicit Array_element_factory(const ArrayHolder* array_arg=nullptr)
: array(array_arg) {}
result_type operator() (int i) const;
protected:
const ArrayHolder* array;
};
}
template <>
struct spec_object_traits<perl::Object>
: spec_object_traits<is_opaque>
{
// default constructor and destructor require a living perl interpreter
static const bool allow_static=false;
};
template <>
struct spec_object_traits<perl::ObjectType>
: spec_object_traits<perl::Object> {};
template <bool is_readonly>
struct operation_cross_const_helper<perl::Object::Array_element_factory<is_readonly>> {
typedef perl::Object::Array_element_factory<false> operation;
typedef perl::Object::Array_element_factory<true> const_operation;
};
template <>
class Array<perl::Object>
: public perl::ArrayOwner<perl::Object> {
typedef perl::ArrayOwner<perl::Object> base_t;
public:
/// Create an array of the given size and fill it with invalid objects.
explicit Array(int n=0)
: base_t(n) {}
/// Create an array with a prescribed type for elements.
/// It is populated with the given number of valid objects without properties.
explicit Array(const perl::ObjectType& type, int n=0);
/// Construct an array from a sequence of Objects passed as arguments.
/// The prescribed element type is unspecified; it can be deduced later on demand.
Array(std::initializer_list<perl::Object> objects);
/// Construct an array from a sequence of Objects passed as arguments.
/// The elements must be compatible with the prescribed element type.
Array(const perl::ObjectType& type, std::initializer_list<perl::Object> objects);
Array(const Array& other) = default;
Array(Array&& other) = default;
Array& operator= (const Array& other) = default;
Array& operator= (Array&& other) = default;
/// Create an elementwise copy.
Array copy() const;
/// Change the number of elements.
/// If the array grows and the prescribed element type has been specified,
/// new elements are created as valid objects without properties.
/// Otherwise the new elements are in invalid state.
void resize(int n);
/// Add an elemnet at the end of the array.
/// If must be compatible with the prescribed element type, unless the latter is unspecified.
void push_back(perl::Object&& o);
void push_back(const perl::Object& o)
{
push_back(perl::Object(o));
}
/// Tell the prescribed element type.
/// If it has been unspecified until now, it will be deduced as the common type of all contained objects.
/// It might turn out to be invalid if the objects are of incompatible types.
const perl::ObjectType& element_type() const;
// prohibit low-level operations inherited from ArrayHolder
void upgrade(int) = delete;
void set_contains_aliases() = delete;
int dim(bool&) = delete;
int cols() const = delete;
SV* shift() = delete;
SV* pop() = delete;
void unshift(SV*) = delete;
void push(SV*) = delete;
protected:
explicit Array(SV* sv_ref, perl::value_flags flags=perl::value_trusted)
: base_t(sv_ref, flags) {}
mutable perl::ObjectType el_type;
friend class perl::Object;
friend class perl::Value;
};
namespace perl {
inline
std::false_type* Value::retrieve(pm::Array<Object>& x) const
{
return retrieve(static_cast<Array&>(static_cast<ArrayHolder&>(x)));
}
template <bool is_readonly>
inline
Object::Array_element<is_readonly> Object::Array_element_factory<is_readonly>::operator() (int i) const
{
return { (*array)[i], static_cast<const pm::Array<Object>*>(array)->el_type };
}
} }
#endif // POLYMAKE_PERL_OBJECT_H
// Local Variables:
// mode:C++
// c-basic-offset:3
// indent-tabs-mode:nil
// End:
|