saga-advert.hpp File Reference
#include <iostream>
Go to the source code of this file.
Define Documentation
#define SAGA_GUARDED_EXEC |
( |
BLOCK |
|
) |
|
Value:
try{ \
BLOCK \
} \
catch (saga::exception const& e) { \
std::cerr << e.what () << std::endl; \
} \
catch (std::exception const& e) { \
std::cerr << e.what() << std::endl; \
} \
catch (...) { \
std::cerr << std::endl; \
} \
Referenced by advert_add_attribute(), advert_add_entry(), advert_list_attributes(), advert_list_directory(), advert_remove_attribute(), advert_remove_directory(), advert_remove_entry(), advert_retrieve_string(), advert_store_string(), file_cat(), file_copy(), file_move(), file_remove(), job_resume(), job_state(), job_submit(), job_suspend(), list_dir(), list_services(), replica_add_lfn(), replica_add_pfn(), replica_list_attributes(), replica_list_directory(), replica_list_pfns(), replica_remove_attribute(), replica_remove_lfn(), replica_remove_pfn(), replica_set_attribute(), and run_test().
Function Documentation
void advert_list_directory |
( |
std::string |
advertURL, |
|
|
std::string |
pattern | |
|
) |
| | |
void advert_add_entry |
( |
std::string |
advertURL |
) |
|
void advert_remove_entry |
( |
std::string |
advertURL |
) |
|
void advert_remove_directory |
( |
std::string |
advertURL |
) |
|
void advert_list_attributes |
( |
std::string |
advertURL |
) |
|
void advert_add_attribute |
( |
std::string |
advertURL, |
|
|
std::string |
key, |
|
|
std::string |
val | |
|
) |
| | |
void advert_remove_attribute |
( |
std::string |
advertURL, |
|
|
std::string |
key | |
|
) |
| | |
void advert_store_string |
( |
std::string |
advertURL, |
|
|
std::string |
data | |
|
) |
| | |
void advert_retrieve_string |
( |
std::string |
advertURL |
) |
|