/* * Phusion Passenger - https://www.phusionpassenger.com/ * Copyright (c) 2018 Phusion Holding B.V. * * "Passenger", "Phusion Passenger" and "Union Station" are registered * trademarks of Phusion Holding B.V. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include #include #include #include #include #include using namespace Passenger; using namespace Passenger::WrapperRegistry; using namespace Passenger::AppTypeDetector; size_t psg_app_type_detector_result_get_object_size() { return sizeof(Detector::Result); } PsgAppTypeDetectorResult * psg_app_type_detector_result_init(void *memory) { Detector::Result *cxxResult = new (memory) Detector::Result(); return static_cast(cxxResult); } void psg_app_type_detector_result_deinit(PsgAppTypeDetectorResult *result) { Detector::Result *cxxResult = static_cast(result); cxxResult->~Result(); } int psg_app_type_detector_result_is_null(const PsgAppTypeDetectorResult *result) { const Detector::Result *cxxResult = static_cast(result); return (int) cxxResult->isNull(); } const PsgWrapperRegistryEntry * psg_app_type_detector_result_get_wrapper_registry_entry(const PsgAppTypeDetectorResult *result) { const Detector::Result *cxxResult = static_cast(result); return static_cast(cxxResult->wrapperRegistryEntry); } void psg_app_type_detector_result_set_wrapper_registry_entry(PsgAppTypeDetectorResult *result, const PsgWrapperRegistryEntry *entry) { Detector::Result *cxxResult = static_cast(result); cxxResult->wrapperRegistryEntry = static_cast(entry); } const char * psg_app_type_detector_result_get_app_start_command(const PsgAppTypeDetectorResult *result, size_t *len) { const Detector::Result *cxxResult = static_cast(result); if (len != NULL) { *len = cxxResult->appStartCommand.size(); } return cxxResult->appStartCommand.data(); } PsgAppTypeDetector * psg_app_type_detector_new(const PsgWrapperRegistry *registry, unsigned int throttleRate) { const Registry *cxxRegistry = static_cast(registry); try { Detector *detector = new Detector(*cxxRegistry, NULL, NULL, throttleRate, NULL); return static_cast(detector); } catch (const std::bad_alloc &) { return NULL; } } void psg_app_type_detector_free(PsgAppTypeDetector *detector) { Detector *cxxDetector = static_cast(detector); delete cxxDetector; } void psg_app_type_detector_set_throttle_rate(PsgAppTypeDetector *detector, unsigned int throttleRate) { Detector *cxxDetector = static_cast(detector); cxxDetector->setThrottleRate(throttleRate); } void psg_app_type_detector_check_document_root( PsgAppTypeDetector *detector, PsgAppTypeDetectorResult *result, const char *documentRoot, unsigned int len, int resolveFirstSymlink, PP_Error *error) { Detector *cxxDetector = static_cast(detector); Detector::Result *cxxResult = static_cast(result); try { *cxxResult = cxxDetector->checkDocumentRoot( StaticString(documentRoot, len), resolveFirstSymlink); } catch (const std::exception &e) { pp_error_set(e, error); *cxxResult = Detector::Result(); } } void psg_app_type_detector_check_app_root( PsgAppTypeDetector *detector, PsgAppTypeDetectorResult *result, const char *appRoot, unsigned int len, PP_Error *error) { Detector *cxxDetector = static_cast(detector); Detector::Result *cxxResult = static_cast(result); try { *cxxResult = cxxDetector->checkAppRoot( StaticString(appRoot, len)); } catch (const std::exception &e) { pp_error_set(e, error); *cxxResult = Detector::Result(); } }