Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cortex: support for newer boost #1460

Open
wants to merge 4 commits into
base: RB-10.5
Choose a base branch
from

Conversation

Martinfx
Copy link

@Martinfx Martinfx commented Mar 13, 2025

Generally describe what this PR will do, and why it is needed.

Changes old boost convenience to boost:::filesystem::path

Related Issues

  • List any Issues this PR addresses or solves

Dependencies

  • List any other unmerged PRs that this PR depends on

Breaking Changes

  • List any breaking API/ABI changes

Checklist

  • I have read the contribution guidelines.
  • I have updated the documentation, if applicable.
  • I have tested my change(s) in the test suite, and added new test cases where necessary.
  • My code follows the Cortex project's prevailing coding style and conventions.

Copy link
Member

@johnhaddon johnhaddon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks - this is a big improvement over the last PR. If I'm not mistaken, we can go even simpler though - see comments inline.

Comment on lines 99 to 115
tcp::resolver resolver(m_data->m_service);
tcp::resolver::query query(m_data->m_host, m_data->m_port);

boost::system::error_code error;
tcp::resolver::iterator iterator = resolver.resolve( query, error );
if( !error )
{
tcp::resolver resolver(m_data->m_service);
boost::system::error_code error;
auto endpoints = resolver.resolve(m_data->m_host, m_data->m_port, error);
if (!error)
{
error = boost::asio::error::host_not_found;
while( error && iterator != tcp::resolver::iterator() )
{
m_data->m_socket.close();
m_data->m_socket.connect( *iterator++, error );
}
}
if( error )
{
throw Exception( std::string( "Could not connect to remote display driver server : " ) + error.message() );
for (auto it = endpoints.begin(); it != endpoints.end() && error; ++it)
{
m_data->m_socket.close();
m_data->m_socket.connect(*it, error);
}

if (error)
{
throw Exception( std::string( "Could not connect to remote display driver server : " ) + error.message() );
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I assume the changes here are responsible for this test failure :

FAIL: testWrongHostException (ImageDisplayDriverTest.ClientServerDisplayDriverTest)
----------------------------------------------------------------------
RuntimeError: write: Bad file descriptor [system:9]

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/__w/cortex/cortex/test/IECoreImage/ImageDisplayDriverTest.py", line 234, in testWrongHostException
    with self.assertRaisesRegex( Exception, exceptionError ) :
AssertionError: "Could not connect to remote display driver server : Host not found" does not match "write: Bad file descriptor [system:9]"

I'm having difficulty understanding why there are changes here, especially because the diff is obfuscated by unnecessary formatting changes (if( !error ) vs if (!errror) for example). Is there an even more minimal set of changes that can be made?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That failure was from 80d3f40 (your earlier commit). I've just started CI for your latest to see if that helps. But I'd still like to see a more minimal diff without formatting changes.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The problem is on line 104: IECore.Exception: Could not resolve host: Host not found (authoritative)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@johnhaddon it is changes ok ?

The CI is still failing with the test failure I highlighted above, and we can't merge while it is failing. As mentioned above, I don't know why the code had to change so much in ClientDisplayDriver.cpp. I would like to see the absolute minimum code change necessary there, without the unnecessary formatting changes, and to understand why each change is required.

I'd be happy to merge the filesystem fixes in the meantime if that would help.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

@Martinfx
Copy link
Author

Martinfx commented Mar 26, 2025

@johnhaddon it is changes ok ?

@boberfly
Copy link
Contributor

Just to note Maya 2026:
https://help.autodesk.com/view/MAYAUL/2026/ENU/?guid=GUID-BAF59B47-E24F-4F87-9B77-ABE78D3F8268

Is using Boost 1.85 from what I saw in the devkit. Aligning with https://vfxplatform.com/ CY2025.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants