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 487 488 489 490 491 492 493 494
|
/*
FALCON - The Falcon Programming Language.
FILE: dir.cpp
Directory management api.
-------------------------------------------------------------------
Author: Giancarlo Niccolai
Begin: Wed, 28 Jan 2009 07:53:27 -0800
-------------------------------------------------------------------
(C) Copyright 2009: the FALCON developers (see list in AUTHORS file)
See LICENSE file for licensing details.
*/
/*#
@beginmodule core
*/
/** \file
Path - script interface API
*/
#include <falcon/setup.h>
#include <falcon/fassert.h>
#include <falcon/path.h>
#include <falcon/eng_messages.h>
#include <falcon/string.h>
#include <falcon/crobject.h>
#include <falcon/error.h>
#include <falcon/eng_messages.h>
#include "core_module.h"
namespace Falcon {
namespace core {
class PathObject: public CRObject
{
public:
PathObject( const CoreClass *genr, Path* path, bool bSerial ):
CRObject( genr, bSerial )
{
if ( path == 0 )
path = new Path;
setUserData( path );
}
PathObject( const PathObject &other );
virtual ~PathObject();
virtual PathObject *clone() const;
Path* getPath() const { return static_cast<Path*>( m_user_data ); }
};
CoreObject* PathObjectFactory( const CoreClass *me, void *path, bool dyn )
{
return new PathObject( me, static_cast<Path*>( path ), dyn );
}
PathObject::PathObject( const PathObject &other ):
CRObject( other )
{
setUserData( new Path( *getPath() ) );
}
PathObject::~PathObject()
{
delete getPath();
}
PathObject *PathObject::clone() const
{
return new PathObject( *this );
}
/*# @class Path
@brief Interface to local filesystem path definition.
@optparam path The path that will be used as initial path.
@raise ParamError in case the inital path is malformed.
This class offers an object oriented interface to access
path elements given a complete path, or to build a path from its elements.
Builds the path object, optionally using the given parameter
as a complete path constructor.
If the parameter is an array, it must have at least four
string elements, and it will be used to build the path from
its constituents. For example:
@code
unit = "C"
location = "/a/path/to"
file = "somefile"
ext = "anext"
p = Path( [ unit, location, file, ext ] )
@endcode
@b nil can be passed if some part of the specification is not used.
The path (or any part of it) may be specified both in RFC3986 format or in
MS-Windows path format.
@note Use the fileNameMerge() function to simply merge elements of a path
specification into a string.
@see fileNameMerge
*/
/*# @property unit Path
@brief Unit specificator.
@raise ParamError if assigned to a value that makes the path invalid.
This is the unit specificator (disk name) used in some filesystems.
It is separated by the rest of the path via a ":". According to
RFC 3986 it always starts with a "/", which is automatically added
if absent.
*/
/*# @property location Path
@brief Location specificator.
@raise ParamError if assigned to a value that makes the path invalid.
This is the "path to file". It can start with a "/" or not; if
it starts with a "/" it is considered absolute.
*/
/*# @property fulloc Path
@brief Unit specificator and location.
@raise ParamError if assigned to a value that makes the path invalid.
This property contains the location of this path, including the unit
specificator, if present.
So, in a path like "/C:/path/to/me.txt", the @b fulloc property
(notice the two 'l' characters in the name) will have the value of
"/C:/path/to", while in a relative path like "relative/file.txt"
it will take the same value of @a Path.location.
Assigning a value to this property means to change the value of
both the unit specificator and location at the same time.
*/
/*# @property file Path
@brief File part.
@raise ParamError if assigned to a value that makes the path invalid.
This element coresponds to the first part of the file element, if it is
divided into a filename and an extension by a "." dot.
@note
If an extension is given, then @b filename is the same as @b file + "." + @b extension
*/
/*# @property filename Path
@brief File name part.
@raise ParamError if assigned to a value that makes the path invalid.
This is the part of the path that identifies an element in a directory.
It includes everything after the last "/" path separator.
@note
If an extension is given, then @b filename is the same as @b file + "." + @b extension
*/
/*# @property extension Path
@brief File extension part.
@raise ParamError if assigned to a value that makes the path invalid.
This element coresponds to the first last of the file element, if it is
divided into a filename and an extension by a "." dot.
@note
If an extension is given, then @b filename is the same as @b file + "." + @b extension
*/
/*# @property path Path
@brief Complete path.
@raise ParamError if assigned to a value that makes the path invalid.
This is the complete path referred by this object.
*/
/*# @property winpath Path
@brief Complete path in MS-Windows format.
This is the complete path referred by this object, given in MS-Windows
format.
Use this if you need to produce scripts or feed it into external process
on windows platforms. Normally, all the I/O functions used by Falcon
on any platform understand the RFC3986 format.
@note The property is read-only; you can anyhow assign a path in MS-Windows
format to the @a Path.path property.
*/
/*# @property winloc Path
@brief Complete path in MS-Windows format.
This is the location element in the complete path, given in MS-Windows
format.
Use this if you need to produce scripts or feed it into external process
on windows platforms. Normally, all the I/O functions used by Falcon
on any platform understand the RFC3986 format.
@note The property is read-only; you can anyhow assign a location in MS-Windows
format to the @a Path.location property.
*/
/*# @property winfulloc Path
@brief Complete path in MS-Windows format.
This is the full location element in this path (unit specificator + location),
given in MS-Windows format.
Use this if you need to produce scripts or feed it into external process
on windows platforms. Normally, all the I/O functions used by Falcon
on any platform understand the RFC3986 format.
@note The property is read-only; you can anyhow assign a full location in MS-Windows
format to the @a Path.fulloc property.
*/
// Reflective URI method
void Path_path_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
// And now set the property
if ( property.isString() )
property.asString()->bufferize( path.get() );
else
property = new CoreString( path.get() );
}
void Path_path_rto(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
// We're setting the URI, that is, the property has been written.
FALCON_REFLECT_STRING_TO( (&path), set );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
}
// Reflective URI method
void Path_filename_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getFilename );
}
void Path_filename_rto(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
// We're setting the path, that is, the property has been written.
FALCON_REFLECT_STRING_TO( (&path), setFilename );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
}
// Reflective path method
void Path_file_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getFile );
}
void Path_file_rto(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
// We're setting the path, that is, the property has been written.
FALCON_REFLECT_STRING_TO( (&path), setFile );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
}
// Reflective path method
void Path_location_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getLocation );
}
void Path_location_rto(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
// We're setting the path, that is, the property has been written.
FALCON_REFLECT_STRING_TO( (&path), setLocation );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
}
// Reflective full location method
void Path_fullloc_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getFullLocation );
}
void Path_fullloc_rto(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
// We're setting the path, that is, the property has been written.
FALCON_REFLECT_STRING_TO( (&path), setFullLocation );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
}
// Reflective path method
void Path_unit_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getResource );
}
void Path_unit_rto(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
// We're setting the path, that is, the property has been written.
FALCON_REFLECT_STRING_TO( (&path), setResource );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
}
// Reflective path method
void Path_extension_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getExtension );
}
void Path_extension_rto(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
// We're setting the path, that is, the property has been written.
FALCON_REFLECT_STRING_TO( (&path), setExtension );
if ( ! path.isValid() )
{
VMachine* vm = VMachine::getCurrent();
throw new ParamError( ErrorParam( e_inv_params ).
origin( e_orig_runtime ).
extra( vm != 0 ? vm->moduleString( rtl_invalid_path ) : "" ) );
}
}
// Reflective windows method
void Path_winpath_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getWinFormat );
}
// Reflective windows method
void Path_winloc_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getWinLocation );
}
// Reflective windows method
void Path_winfulloc_rfrom(CoreObject *instance, void *user_data, Item &property, const PropEntry& )
{
Path &path = *static_cast<Path *>( user_data );
FALCON_REFLECT_STRING_FROM( (&path), getFullWinLocation );
}
FALCON_FUNC Path_init ( ::Falcon::VMachine *vm )
{
Item *p0 = vm->param(0);
// no parameter? -- ok, we have an empty path
if ( p0 == 0 )
return;
// extract the path instance created by the factory function
if ( ( ! p0->isString() && ! p0->isArray() ) )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).extra( "[S|A]" ) );
}
PathObject *self = dyncast<PathObject*>( vm->self().asObject() );
Path *path = self->getPath();
if ( p0->isString() )
{
path->set( *p0->asString() );
}
else {
const String *unitspec = 0;
const String *fname = 0;
const String *fpath = 0;
const String *fext = 0;
String sDummy;
const CoreArray &array = *p0->asArray();
if( array.length() >= 0 && array[0].isString() )
unitspec = array[0].asString();
else
unitspec = &sDummy;
if( array.length() >= 1 && array[1].isString() )
fpath = array[1].asString();
else
fpath = &sDummy;
if( array.length() >= 2 && array[2].isString() )
fname = array[2].asString();
else
fname = &sDummy;
if( array.length() >= 3 && array[3].isString() )
fext = array[3].asString();
else
fext = &sDummy;
path->join( *unitspec, *fpath, *fname, *fext );
}
if ( ! path->isValid() )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).
extra( vm->moduleString( rtl_invalid_path ) ) );
}
}
}
}
/* end of path_ext.cpp */
|