Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

[C++] Interfacewrapper.cpp compilation failure (string cache)

Đang mở
#148 0 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Đánh giá

Độ khó
4/5
Thời gian dự kiến
3-5 ngày
Mức phù hợp với người mới
35/100
Loại issue
Lỗi
Độ rõ ràng
Khá rõ ràng
Mức độ hoạt động
Đình trệ
Công nghệ
cpp
Lĩnh vực
tooling

Hướng nghiên cứu

Bắt đầu với ví dụ interfacewrapper.cpp được tạo và kiểm tra cách bộ nhớ đệm tham số xử lý các đối số kiểu class hoặc optionalclass. Truy vết các kiểu được sử dụng cho pBaseThisResult, ParameterCache_3 và lớp binding CMyComponentFoo, sau đó xác minh rằng wrapper được tạo biên dịch được và đường dẫn bộ nhớ đệm vẫn hoạt động chính xác.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Mô tả

Given a function with a class / optionalclass argument, the generated code ends up looking something like this:

interfacewrapper.cpp

std::string sName("");
IBase* pBaseThisResult(nullptr);
IFoo* pIFoo = dynamic_cast<IFoo*>(pIBaseClass);
if (!pIFoo)
	throw EMyComponentInterfaceException(MYCOMPONENT_ERROR_INVALIDCAST);
bool isCacheCall = (pNameBuffer == nullptr);
if (isCacheCall) {
	pBaseThisResult = pIFoo->GetProperties(sName, *pBar);
	pIFoo->_setCache (new ParameterCache_3<std::string, MyComponent_uint8, CMyComponentFoo *> (sName, *pBar, pBaseThisResult));
}
else {
	auto cache = dynamic_cast<ParameterCache_3<std::string, MyComponent_uint8, CMyComponentFoo *>*> (pIFoo->_getCache ());
	if (cache == nullptr)
		throw EMyComponentInterfaceException(MYCOMPONENT_ERROR_INVALIDCAST);
	cache->retrieveData (sName, *pBar, pBaseThisResult);
	pIFoo->_setCache (nullptr);
}

Since CMyComponentFoo is a binding class, this won't compile. Also, the pointer pBaseThisResult is actually of type IBase *.

I've hacked a fix to get it to work by generating IBase * instead, but as I don't know how this parameter caching is supposed to work I can't say if it's the right way to fix it.

Ngôn ngữ chính
Go
Star
54
Fork
26
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của Autodesk/AutomaticComponentToolkit

Tất cả issue của Autodesk/AutomaticComponentToolkit

Issue tương tự

Thêm issue về Go

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.